summaryrefslogtreecommitdiff
path: root/devel/kdevplatform/PLIST
blob: aedafa025eeb65e8f59aad1ad1a12d07a8dbeb7e (plain)
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
@comment $NetBSD: PLIST,v 1.9 2014/11/14 22:43:59 markd Exp $
bin/kdev_dbus_socket_transformer
bin/kdev_format_source
bin/kdevplatform_shell_environment.sh
include/kdevplatform/config-kdevplatform.h
include/kdevplatform/debugger/breakpoint/breakpoint.h
include/kdevplatform/debugger/breakpoint/breakpointdetails.h
include/kdevplatform/debugger/breakpoint/breakpointmodel.h
include/kdevplatform/debugger/breakpoint/breakpointwidget.h
include/kdevplatform/debugger/debuggerexport.h
include/kdevplatform/debugger/framestack/framestackmodel.h
include/kdevplatform/debugger/interfaces/ibreakpointcontroller.h
include/kdevplatform/debugger/interfaces/idebugsession.h
include/kdevplatform/debugger/interfaces/iframestackmodel.h
include/kdevplatform/debugger/interfaces/ivariablecontroller.h
include/kdevplatform/debugger/util/pathmappings.h
include/kdevplatform/debugger/util/treeitem.h
include/kdevplatform/debugger/util/treemodel.h
include/kdevplatform/debugger/util/treeview.h
include/kdevplatform/debugger/variable/variablecollection.h
include/kdevplatform/documentation/documentationexport.h
include/kdevplatform/documentation/documentationfindwidget.h
include/kdevplatform/documentation/standarddocumentationview.h
include/kdevplatform/execute/iexecuteplugin.h
include/kdevplatform/executescript/iexecutescriptplugin.h
include/kdevplatform/interfaces/context.h
include/kdevplatform/interfaces/contextmenuextension.h
include/kdevplatform/interfaces/foregroundlock.h
include/kdevplatform/interfaces/iassistant.h
include/kdevplatform/interfaces/ibuddydocumentfinder.h
include/kdevplatform/interfaces/icompletionsettings.h
include/kdevplatform/interfaces/icore.h
include/kdevplatform/interfaces/idebugcontroller.h
include/kdevplatform/interfaces/idocument.h
include/kdevplatform/interfaces/idocumentation.h
include/kdevplatform/interfaces/idocumentationcontroller.h
include/kdevplatform/interfaces/idocumentationprovider.h
include/kdevplatform/interfaces/idocumentationproviderprovider.h
include/kdevplatform/interfaces/idocumentcontroller.h
include/kdevplatform/interfaces/ilanguage.h
include/kdevplatform/interfaces/ilanguagecheck.h
include/kdevplatform/interfaces/ilanguagecheckprovider.h
include/kdevplatform/interfaces/ilanguagecontroller.h
include/kdevplatform/interfaces/ilaunchconfiguration.h
include/kdevplatform/interfaces/ilauncher.h
include/kdevplatform/interfaces/ilaunchmode.h
include/kdevplatform/interfaces/interfacesexport.h
include/kdevplatform/interfaces/ipartcontroller.h
include/kdevplatform/interfaces/ipatchdocument.h
include/kdevplatform/interfaces/ipatchexporter.h
include/kdevplatform/interfaces/ipatchsource.h
include/kdevplatform/interfaces/iplugin.h
include/kdevplatform/interfaces/iplugincontroller.h
include/kdevplatform/interfaces/ipluginversion.h
include/kdevplatform/interfaces/iproject.h
include/kdevplatform/interfaces/iprojectcontroller.h
include/kdevplatform/interfaces/iprojectprovider.h
include/kdevplatform/interfaces/iruncontroller.h
include/kdevplatform/interfaces/iselectioncontroller.h
include/kdevplatform/interfaces/isession.h
include/kdevplatform/interfaces/isessionlock.h
include/kdevplatform/interfaces/isourceformatter.h
include/kdevplatform/interfaces/isourceformattercontroller.h
include/kdevplatform/interfaces/istatus.h
include/kdevplatform/interfaces/itemplateprovider.h
include/kdevplatform/interfaces/itestcontroller.h
include/kdevplatform/interfaces/itestsuite.h
include/kdevplatform/interfaces/iuicontroller.h
include/kdevplatform/interfaces/launchconfigurationpage.h
include/kdevplatform/interfaces/launchconfigurationtype.h
include/kdevplatform/kdevplatformversion.h
include/kdevplatform/language/assistant/renameaction.h
include/kdevplatform/language/assistant/renameassistant.h
include/kdevplatform/language/assistant/staticassistant.h
include/kdevplatform/language/assistant/staticassistantsmanager.h
include/kdevplatform/language/backgroundparser/backgroundparser.h
include/kdevplatform/language/backgroundparser/documentchangetracker.h
include/kdevplatform/language/backgroundparser/parsejob.h
include/kdevplatform/language/backgroundparser/parseprojectjob.h
include/kdevplatform/language/backgroundparser/urlparselock.h
include/kdevplatform/language/checks/controlflowgraph.h
include/kdevplatform/language/checks/controlflownode.h
include/kdevplatform/language/checks/dataaccess.h
include/kdevplatform/language/checks/dataaccessrepository.h
include/kdevplatform/language/codecompletion/abstractincludefilecompletionitem.h
include/kdevplatform/language/codecompletion/codecompletion.h
include/kdevplatform/language/codecompletion/codecompletioncontext.h
include/kdevplatform/language/codecompletion/codecompletionhelper.h
include/kdevplatform/language/codecompletion/codecompletionitem.h
include/kdevplatform/language/codecompletion/codecompletionitemgrouper.h
include/kdevplatform/language/codecompletion/codecompletionmodel.h
include/kdevplatform/language/codecompletion/codecompletiontesthelper.h
include/kdevplatform/language/codecompletion/codecompletionworker.h
include/kdevplatform/language/codecompletion/normaldeclarationcompletionitem.h
include/kdevplatform/language/codegen/applychangeswidget.h
include/kdevplatform/language/codegen/astchangeset.h
include/kdevplatform/language/codegen/basicrefactoring.h
include/kdevplatform/language/codegen/codedescription.h
include/kdevplatform/language/codegen/coderepresentation.h
include/kdevplatform/language/codegen/documentchangeset.h
include/kdevplatform/language/codegen/duchainchangeset.h
include/kdevplatform/language/codegen/sourcefiletemplate.h
include/kdevplatform/language/codegen/templateclassgenerator.h
include/kdevplatform/language/codegen/templateengine.h
include/kdevplatform/language/codegen/templaterenderer.h
include/kdevplatform/language/codegen/templatesmodel.h
include/kdevplatform/language/codegen/utilities.h
include/kdevplatform/language/duchain/abstractfunctiondeclaration.h
include/kdevplatform/language/duchain/aliasdeclaration.h
include/kdevplatform/language/duchain/appendedlist.h
include/kdevplatform/language/duchain/builders/abstractcontextbuilder.h
include/kdevplatform/language/duchain/builders/abstractdeclarationbuilder.h
include/kdevplatform/language/duchain/builders/abstracttypebuilder.h
include/kdevplatform/language/duchain/builders/abstractusebuilder.h
include/kdevplatform/language/duchain/builders/dynamiclanguageexpressionvisitor.h
include/kdevplatform/language/duchain/classdeclaration.h
include/kdevplatform/language/duchain/classfunctiondeclaration.h
include/kdevplatform/language/duchain/classmemberdeclaration.h
include/kdevplatform/language/duchain/classmemberdeclarationdata.h
include/kdevplatform/language/duchain/codemodel.h
include/kdevplatform/language/duchain/declaration.h
include/kdevplatform/language/duchain/declarationdata.h
include/kdevplatform/language/duchain/declarationid.h
include/kdevplatform/language/duchain/definitions.h
include/kdevplatform/language/duchain/duchain.h
include/kdevplatform/language/duchain/duchainbase.h
include/kdevplatform/language/duchain/duchainlock.h
include/kdevplatform/language/duchain/duchainpointer.h
include/kdevplatform/language/duchain/duchainregister.h
include/kdevplatform/language/duchain/duchainutils.h
include/kdevplatform/language/duchain/ducontext.h
include/kdevplatform/language/duchain/ducontextdata.h
include/kdevplatform/language/duchain/dumpchain.h
include/kdevplatform/language/duchain/dumpdotgraph.h
include/kdevplatform/language/duchain/forwarddeclaration.h
include/kdevplatform/language/duchain/functiondeclaration.h
include/kdevplatform/language/duchain/functiondefinition.h
include/kdevplatform/language/duchain/identifier.h
include/kdevplatform/language/duchain/indexeddeclaration.h
include/kdevplatform/language/duchain/indexedducontext.h
include/kdevplatform/language/duchain/indexedstring.h
include/kdevplatform/language/duchain/indexedtopducontext.h
include/kdevplatform/language/duchain/instantiationinformation.h
include/kdevplatform/language/duchain/localindexeddeclaration.h
include/kdevplatform/language/duchain/localindexedducontext.h
include/kdevplatform/language/duchain/namespacealiasdeclaration.h
include/kdevplatform/language/duchain/navigation/abstractdeclarationnavigationcontext.h
include/kdevplatform/language/duchain/navigation/abstractincludenavigationcontext.h
include/kdevplatform/language/duchain/navigation/abstractnavigationcontext.h
include/kdevplatform/language/duchain/navigation/abstractnavigationwidget.h
include/kdevplatform/language/duchain/navigation/navigationaction.h
include/kdevplatform/language/duchain/navigation/usescollector.h
include/kdevplatform/language/duchain/navigation/usesnavigationcontext.h
include/kdevplatform/language/duchain/navigation/useswidget.h
include/kdevplatform/language/duchain/parsingenvironment.h
include/kdevplatform/language/duchain/persistentsetmap.h
include/kdevplatform/language/duchain/persistentsymboltable.h
include/kdevplatform/language/duchain/problem.h
include/kdevplatform/language/duchain/referencecounting.h
include/kdevplatform/language/duchain/repositories/abstractitemrepository.h
include/kdevplatform/language/duchain/repositories/itemrepository.h
include/kdevplatform/language/duchain/repositories/itemrepositoryexampleitem.h
include/kdevplatform/language/duchain/repositories/itemrepositoryregistry.h
include/kdevplatform/language/duchain/repositories/repositorymanager.h
include/kdevplatform/language/duchain/repositories/typerepository.h
include/kdevplatform/language/duchain/safetycounter.h
include/kdevplatform/language/duchain/specializationstore.h
include/kdevplatform/language/duchain/stringhelpers.h
include/kdevplatform/language/duchain/topducontext.h
include/kdevplatform/language/duchain/topducontextdata.h
include/kdevplatform/language/duchain/topducontextutils.h
include/kdevplatform/language/duchain/types/abstracttype.h
include/kdevplatform/language/duchain/types/alltypes.h
include/kdevplatform/language/duchain/types/arraytype.h
include/kdevplatform/language/duchain/types/constantintegraltype.h
include/kdevplatform/language/duchain/types/containertypes.h
include/kdevplatform/language/duchain/types/delayedtype.h
include/kdevplatform/language/duchain/types/enumerationtype.h
include/kdevplatform/language/duchain/types/enumeratortype.h
include/kdevplatform/language/duchain/types/functiontype.h
include/kdevplatform/language/duchain/types/identifiedtype.h
include/kdevplatform/language/duchain/types/indexedtype.h
include/kdevplatform/language/duchain/types/integraltype.h
include/kdevplatform/language/duchain/types/pointertype.h
include/kdevplatform/language/duchain/types/referencetype.h
include/kdevplatform/language/duchain/types/structuretype.h
include/kdevplatform/language/duchain/types/typealiastype.h
include/kdevplatform/language/duchain/types/typepointer.h
include/kdevplatform/language/duchain/types/typeregister.h
include/kdevplatform/language/duchain/types/typesystem.h
include/kdevplatform/language/duchain/types/typesystemdata.h
include/kdevplatform/language/duchain/types/typeutils.h
include/kdevplatform/language/duchain/types/unsuretype.h
include/kdevplatform/language/duchain/use.h
include/kdevplatform/language/editor/cursorinrevision.h
include/kdevplatform/language/editor/documentcursor.h
include/kdevplatform/language/editor/documentrange.h
include/kdevplatform/language/editor/modificationrevision.h
include/kdevplatform/language/editor/modificationrevisionset.h
include/kdevplatform/language/editor/persistentmovingrange.h
include/kdevplatform/language/editor/rangeinrevision.h
include/kdevplatform/language/editor/simplecursor.h
include/kdevplatform/language/editor/simplerange.h
include/kdevplatform/language/highlighting/codehighlighting.h
include/kdevplatform/language/highlighting/colorcache.h
include/kdevplatform/language/highlighting/configurablecolors.h
include/kdevplatform/language/interfaces/abbreviations.h
include/kdevplatform/language/interfaces/codecontext.h
include/kdevplatform/language/interfaces/editorcontext.h
include/kdevplatform/language/interfaces/iastcontainer.h
include/kdevplatform/language/interfaces/icodehighlighting.h
include/kdevplatform/language/interfaces/icontextbrowser.h
include/kdevplatform/language/interfaces/icreateclasshelper.h
include/kdevplatform/language/interfaces/idefinesandincludesmanager.h
include/kdevplatform/language/interfaces/ilanguagesupport.h
include/kdevplatform/language/interfaces/iquickopen.h
include/kdevplatform/language/interfaces/quickopendataprovider.h
include/kdevplatform/language/interfaces/quickopenfilter.h
include/kdevplatform/language/languageexport.h
include/kdevplatform/language/util/basicsetrepository.h
include/kdevplatform/language/util/debuglanguageparserhelper.h
include/kdevplatform/language/util/includeitem.h
include/kdevplatform/language/util/kdevhash.h
include/kdevplatform/language/util/navigationtooltip.h
include/kdevplatform/language/util/setrepository.h
include/kdevplatform/openwith/iopenwith.h
include/kdevplatform/outputview/filtereditem.h
include/kdevplatform/outputview/ifilterstrategy.h
include/kdevplatform/outputview/ioutputview.h
include/kdevplatform/outputview/ioutputviewmodel.h
include/kdevplatform/outputview/outputdelegate.h
include/kdevplatform/outputview/outputexecutejob.h
include/kdevplatform/outputview/outputjob.h
include/kdevplatform/outputview/outputmodel.h
include/kdevplatform/outputview/outputviewexport.h
include/kdevplatform/project/abstractfilemanagerplugin.h
include/kdevplatform/project/builderjob.h
include/kdevplatform/project/helper.h
include/kdevplatform/project/importprojectjob.h
include/kdevplatform/project/interfaces/ibuildsystemmanager.h
include/kdevplatform/project/interfaces/iprojectbuilder.h
include/kdevplatform/project/interfaces/iprojectfilemanager.h
include/kdevplatform/project/interfaces/iprojectfilter.h
include/kdevplatform/project/interfaces/iprojectfilterprovider.h
include/kdevplatform/project/projectbuildsetmodel.h
include/kdevplatform/project/projectconfigskeleton.h
include/kdevplatform/project/projectexport.h
include/kdevplatform/project/projectfiltermanager.h
include/kdevplatform/project/projectitemlineedit.h
include/kdevplatform/project/projectkcmodule.h
include/kdevplatform/project/projectmodel.h
include/kdevplatform/project/projectutils.h
include/kdevplatform/shell/core.h
include/kdevplatform/shell/documentcontroller.h
include/kdevplatform/shell/language.h
include/kdevplatform/shell/languagecontroller.h
include/kdevplatform/shell/launchconfiguration.h
include/kdevplatform/shell/mainwindow.h
include/kdevplatform/shell/partcontroller.h
include/kdevplatform/shell/partdocument.h
include/kdevplatform/shell/plugincontroller.h
include/kdevplatform/shell/project.h
include/kdevplatform/shell/projectcontroller.h
include/kdevplatform/shell/runcontroller.h
include/kdevplatform/shell/selectioncontroller.h
include/kdevplatform/shell/session.h
include/kdevplatform/shell/sessioncontroller.h
include/kdevplatform/shell/sessionlock.h
include/kdevplatform/shell/shellexport.h
include/kdevplatform/shell/shellextension.h
include/kdevplatform/shell/sourceformattercontroller.h
include/kdevplatform/shell/textdocument.h
include/kdevplatform/shell/uicontroller.h
include/kdevplatform/sublime/area.h
include/kdevplatform/sublime/areaindex.h
include/kdevplatform/sublime/areawalkers.h
include/kdevplatform/sublime/container.h
include/kdevplatform/sublime/controller.h
include/kdevplatform/sublime/document.h
include/kdevplatform/sublime/mainwindow.h
include/kdevplatform/sublime/mainwindowoperator.h
include/kdevplatform/sublime/sublimedefs.h
include/kdevplatform/sublime/sublimeexport.h
include/kdevplatform/sublime/tooldocument.h
include/kdevplatform/sublime/urldocument.h
include/kdevplatform/sublime/view.h
include/kdevplatform/tests/autotestshell.h
include/kdevplatform/tests/json/declarationvalidator.h
include/kdevplatform/tests/json/delayedoutput.h
include/kdevplatform/tests/json/jsondeclarationtests.h
include/kdevplatform/tests/json/jsonducontexttests.h
include/kdevplatform/tests/json/jsontesthelpers.h
include/kdevplatform/tests/json/jsontypetests.h
include/kdevplatform/tests/json/kdevplatformjsontestsexport.h
include/kdevplatform/tests/json/testsuite.cpp
include/kdevplatform/tests/json/testsuite.h
include/kdevplatform/tests/kdevplatformtestsexport.h
include/kdevplatform/tests/kdevsignalspy.h
include/kdevplatform/tests/testcore.h
include/kdevplatform/tests/testfile.h
include/kdevplatform/tests/testhelpers.h
include/kdevplatform/tests/testlanguagecontroller.h
include/kdevplatform/tests/testplugincontroller.h
include/kdevplatform/tests/testproject.h
include/kdevplatform/util/activetooltip.h
include/kdevplatform/util/autoorientedsplitter.h
include/kdevplatform/util/commandexecutor.h
include/kdevplatform/util/convenientfreelist.h
include/kdevplatform/util/embeddedfreetree.h
include/kdevplatform/util/environmentconfigurebutton.h
include/kdevplatform/util/environmentgrouplist.h
include/kdevplatform/util/environmentselectionwidget.h
include/kdevplatform/util/executecompositejob.h
include/kdevplatform/util/fileutils.h
include/kdevplatform/util/focusedtreeview.h
include/kdevplatform/util/formattinghelpers.h
include/kdevplatform/util/kdevstringhandler.h
include/kdevplatform/util/kdevvarlengtharray.h
include/kdevplatform/util/ksharedobject.h
include/kdevplatform/util/multilevellistview.h
include/kdevplatform/util/path.h
include/kdevplatform/util/placeholderitemproxymodel.h
include/kdevplatform/util/processlinemaker.h
include/kdevplatform/util/projecttestjob.h
include/kdevplatform/util/pushvalue.h
include/kdevplatform/util/richtextpushbutton.h
include/kdevplatform/util/sequentiallyrunjobs.h
include/kdevplatform/util/spinlock.h
include/kdevplatform/util/utilexport.h
include/kdevplatform/vcs/dvcs/dvcsevent.h
include/kdevplatform/vcs/dvcs/dvcsjob.h
include/kdevplatform/vcs/dvcs/dvcsplugin.h
include/kdevplatform/vcs/dvcs/ui/dvcsimportmetadatawidget.h
include/kdevplatform/vcs/interfaces/ibasicversioncontrol.h
include/kdevplatform/vcs/interfaces/ibranchingversioncontrol.h
include/kdevplatform/vcs/interfaces/ibrowsableversioncontrol.h
include/kdevplatform/vcs/interfaces/icentralizedversioncontrol.h
include/kdevplatform/vcs/interfaces/idistributedversioncontrol.h
include/kdevplatform/vcs/interfaces/irepositoryversioncontrol.h
include/kdevplatform/vcs/models/projectchangesmodel.h
include/kdevplatform/vcs/models/vcsannotationmodel.h
include/kdevplatform/vcs/models/vcseventmodel.h
include/kdevplatform/vcs/models/vcsfilechangesmodel.h
include/kdevplatform/vcs/models/vcsitemeventmodel.h
include/kdevplatform/vcs/vcsannotation.h
include/kdevplatform/vcs/vcsdiff.h
include/kdevplatform/vcs/vcsevent.h
include/kdevplatform/vcs/vcsexport.h
include/kdevplatform/vcs/vcsjob.h
include/kdevplatform/vcs/vcslocation.h
include/kdevplatform/vcs/vcspluginhelper.h
include/kdevplatform/vcs/vcsrevision.h
include/kdevplatform/vcs/vcsstatusinfo.h
include/kdevplatform/vcs/widgets/standardvcslocationwidget.h
include/kdevplatform/vcs/widgets/vcscommitdialog.h
include/kdevplatform/vcs/widgets/vcsdiffwidget.h
include/kdevplatform/vcs/widgets/vcseventwidget.h
include/kdevplatform/vcs/widgets/vcsimportmetadatawidget.h
include/kdevplatform/vcs/widgets/vcslocationwidget.h
lib/cmake/kdevplatform/KDevPlatformConfig.cmake
lib/cmake/kdevplatform/KDevPlatformConfigVersion.cmake
lib/cmake/kdevplatform/KDevPlatformMacros.cmake
lib/cmake/kdevplatform/KDevPlatformTargets-relwithdebinfo.cmake
lib/cmake/kdevplatform/KDevPlatformTargets.cmake
lib/kde4/imports/org/kde/kdevplatform/libkdevelopdashboarddeclarativeplugin.so
lib/kde4/imports/org/kde/kdevplatform/qmldir
lib/kde4/kcm_kdev_bgsettings.so
lib/kde4/kcm_kdev_ccsettings.so
lib/kde4/kcm_kdev_envsettings.so
lib/kde4/kcm_kdev_pluginsettings.so
lib/kde4/kcm_kdev_projectsettings.so
lib/kde4/kcm_kdev_uisettings.so
lib/kde4/kcm_kdevprojectfilter.so
lib/kde4/kcm_kdevsourceformattersettings.so
lib/kde4/kdevappwizard.so
lib/kde4/kdevbazaar.so
lib/kde4/kdevclassbrowser.so
lib/kde4/kdevcodeutils.so
lib/kde4/kdevcontextbrowser.so
lib/kde4/kdevcvs.so
lib/kde4/kdevdocumentswitcher.so
lib/kde4/kdevdocumentview.so
lib/kde4/kdevexecute.so
lib/kde4/kdevexecutescript.so
lib/kde4/kdevexternalscript.so
lib/kde4/kdevfilemanager.so
lib/kde4/kdevfiletemplates.so
lib/kde4/kdevgenericmanager.so
lib/kde4/kdevgit.so
lib/kde4/kdevgrepview.so
lib/kde4/kdevkonsoleview.so
lib/kde4/kdevopenwith.so
lib/kde4/kdevpastebin.so
lib/kde4/kdevpatchreview.so
lib/kde4/kdevproblemreporter.so
lib/kde4/kdevprojectdashboard.so
lib/kde4/kdevprojectfilter.so
lib/kde4/kdevprojectmanagerview.so
lib/kde4/kdevquickopen.so
lib/kde4/kdevreviewboard.so
lib/kde4/kdevsnippet.so
lib/kde4/kdevstandardoutputview.so
lib/kde4/kdevsubversion.so
lib/kde4/kdevswitchtobuddy.so
lib/kde4/kdevtemplatemanager_config.so
lib/kde4/kdevtestview.so
lib/kde4/kdevvcschangesviewplugin.so
lib/kde4/plasma_kdev_projectfileelement.so
lib/kde4/plugins/grantlee/0.5/kdev_filters.so
lib/libkdevplatformdebugger.so
lib/libkdevplatformdebugger.so.8
lib/libkdevplatformdebugger.so.8.0.0
lib/libkdevplatformdocumentation.so
lib/libkdevplatformdocumentation.so.8
lib/libkdevplatformdocumentation.so.8.0.0
lib/libkdevplatforminterfaces.so
lib/libkdevplatforminterfaces.so.8
lib/libkdevplatforminterfaces.so.8.0.0
lib/libkdevplatformjsontests.so
lib/libkdevplatformjsontests.so.8
lib/libkdevplatformjsontests.so.8.0.0
lib/libkdevplatformlanguage.so
lib/libkdevplatformlanguage.so.8
lib/libkdevplatformlanguage.so.8.0.0
lib/libkdevplatformoutputview.so
lib/libkdevplatformoutputview.so.8
lib/libkdevplatformoutputview.so.8.0.0
lib/libkdevplatformproject.so
lib/libkdevplatformproject.so.8
lib/libkdevplatformproject.so.8.0.0
lib/libkdevplatformshell.so
lib/libkdevplatformshell.so.8
lib/libkdevplatformshell.so.8.0.0
lib/libkdevplatformtests.so
lib/libkdevplatformtests.so.8
lib/libkdevplatformtests.so.8.0.0
lib/libkdevplatformutil.so
lib/libkdevplatformutil.so.8
lib/libkdevplatformutil.so.8.0.0
lib/libkdevplatformvcs.so
lib/libkdevplatformvcs.so.8
lib/libkdevplatformvcs.so.8.0.0
lib/libsublime.so
lib/libsublime.so.8
lib/libsublime.so.8.0.0
share/icons/hicolor/128x128/apps/bazaar.png
share/icons/hicolor/128x128/apps/reviewboard.png
share/icons/hicolor/16x16/apps/git.png
share/icons/hicolor/16x16/apps/reviewboard.png
share/icons/hicolor/16x16/apps/subversion.png
share/icons/hicolor/22x22/actions/run-clean.png
share/icons/hicolor/22x22/actions/run-install.png
share/icons/hicolor/32x32/apps/git.png
share/icons/hicolor/32x32/apps/subversion.png
share/icons/hicolor/64x64/apps/git.png
share/icons/hicolor/64x64/apps/subversion.png
share/kde/apps/kdevappwizard/kdevappwizard.rc
share/kde/apps/kdevclassbrowser/kdevclassbrowser.rc
share/kde/apps/kdevcodegen/licenses/Apache v2
share/kde/apps/kdevcodegen/licenses/BSD
share/kde/apps/kdevcodegen/licenses/Boost
share/kde/apps/kdevcodegen/licenses/GPL v2
share/kde/apps/kdevcodegen/licenses/GPL v2+ (KDE)
share/kde/apps/kdevcodegen/licenses/GPL v3
share/kde/apps/kdevcodegen/licenses/LGPL v2
share/kde/apps/kdevcodegen/licenses/LGPL v2+ (KDE)
share/kde/apps/kdevcodegen/licenses/LGPL v3
share/kde/apps/kdevcodegen/licenses/MIT X11
share/kde/apps/kdevcodegen/licenses/Mozilla v1.1
share/kde/apps/kdevcodegen/templates/arguments_names.txt
share/kde/apps/kdevcodegen/templates/arguments_types_names.txt
share/kde/apps/kdevcodegen/templates/include_guard_cpp.txt
share/kde/apps/kdevcodegen/templates/namespace_close_cpp.txt
share/kde/apps/kdevcodegen/templates/namespace_open_cpp.txt
share/kde/apps/kdevcodegen/templates/namespace_use_cpp.txt
share/kde/apps/kdevcodeutils/kdevcodeutils.rc
share/kde/apps/kdevcodeutils/templates/doxygen_cpp.txt
share/kde/apps/kdevcodeutils/templates/phpdoc_php.txt
share/kde/apps/kdevcodeutils/templates/rest_python.txt
share/kde/apps/kdevcontextbrowser/kdevcontextbrowser.rc
share/kde/apps/kdevcvs/kdevcvs.rc
share/kde/apps/kdevdebugger/kdevdebuggershellui.rc
share/kde/apps/kdevdocumentswitcher/kdevdocumentswitcher.rc
share/kde/apps/kdevdocumentview/kdevdocumentview.rc
share/kde/apps/kdevelop/AssistantButton.qml
share/kde/apps/kdevelop/assistantpopup.qml
share/kde/apps/kdevexternalscript/kdevexternalscript.rc
share/kde/apps/kdevfilemanager/kdevfilemanager.rc
share/kde/apps/kdevfiletemplates/kdevfiletemplates.rc
share/kde/apps/kdevgrepview/kdevgrepview.rc
share/kde/apps/kdevpatchreview/kdevpatchreview.rc
share/kde/apps/kdevproblemreporter/kdevproblemreporter.rc
share/kde/apps/kdevprojectmanagerview/kdevprojectmanagerview.rc
share/kde/apps/kdevquickopen/kdevquickopen.rc
share/kde/apps/kdevsession/kdevsessionui.rc
share/kde/apps/kdevsnippet/kdevsnippet.rc
share/kde/apps/kdevsourceformatter/kdevsourceformatter.rc
share/kde/apps/kdevstandardoutputview/kdevstandardoutputview.rc
share/kde/apps/kdevtestview/kdevtestview.rc
share/kde/apps/plasma/plasmoids/org.kdevelop.branches/contents/qml/main.qml
share/kde/apps/plasma/plasmoids/org.kdevelop.branches/metadata.desktop
share/kde/config/kdevappwizard.knsrc
share/kde/config/kdevfiletemplates.knsrc
share/kde4/services/kcm_kdev_bgsettings.desktop
share/kde4/services/kcm_kdev_ccsettings.desktop
share/kde4/services/kcm_kdev_envsettings.desktop
share/kde4/services/kcm_kdev_pluginsettings.desktop
share/kde4/services/kcm_kdev_projectsettings.desktop
share/kde4/services/kcm_kdev_uisettings.desktop
share/kde4/services/kcm_kdevprojectfilter.desktop
share/kde4/services/kcm_kdevsourceformattersettings.desktop
share/kde4/services/kdev-dash-projectfileelement.desktop
share/kde4/services/kdevappwizard.desktop
share/kde4/services/kdevbazaar.desktop
share/kde4/services/kdevclassbrowser.desktop
share/kde4/services/kdevcodeutils.desktop
share/kde4/services/kdevcontextbrowser.desktop
share/kde4/services/kdevcvs.desktop
share/kde4/services/kdevdocumentswitcher.desktop
share/kde4/services/kdevdocumentview.desktop
share/kde4/services/kdevelop-dashboard-branches.desktop
share/kde4/services/kdevexecute.desktop
share/kde4/services/kdevexecutescript.desktop
share/kde4/services/kdevexternalscript.desktop
share/kde4/services/kdevfilemanager.desktop
share/kde4/services/kdevfiletemplates.desktop
share/kde4/services/kdevgenericmanager.desktop
share/kde4/services/kdevgit.desktop
share/kde4/services/kdevgrepview.desktop
share/kde4/services/kdevkonsoleview.desktop
share/kde4/services/kdevopenwith.desktop
share/kde4/services/kdevpastebin.desktop
share/kde4/services/kdevpatchreview.desktop
share/kde4/services/kdevproblemreporter.desktop
share/kde4/services/kdevprojectdashboard.desktop
share/kde4/services/kdevprojectfilter.desktop
share/kde4/services/kdevprojectmanagerview.desktop
share/kde4/services/kdevquickopen.desktop
share/kde4/services/kdevreviewboard.desktop
share/kde4/services/kdevsnippet.desktop
share/kde4/services/kdevstandardoutputview.desktop
share/kde4/services/kdevsubversion.desktop
share/kde4/services/kdevswitchtobuddy.desktop
share/kde4/services/kdevtemplatemanager_config.desktop
share/kde4/services/kdevtestview.desktop
share/kde4/services/kdevvcschangesview.desktop
share/kde4/servicetypes/kdevelopplugin.desktop
share/locale/bs/LC_MESSAGES/kdevappwizard.mo
share/locale/bs/LC_MESSAGES/kdevclassbrowser.mo
share/locale/bs/LC_MESSAGES/kdevcodeutils.mo
share/locale/bs/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/bs/LC_MESSAGES/kdevcvs.mo
share/locale/bs/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/bs/LC_MESSAGES/kdevdocumentview.mo
share/locale/bs/LC_MESSAGES/kdevexecute.mo
share/locale/bs/LC_MESSAGES/kdevexecutescript.mo
share/locale/bs/LC_MESSAGES/kdevexternalscript.mo
share/locale/bs/LC_MESSAGES/kdevfilemanager.mo
share/locale/bs/LC_MESSAGES/kdevfiletemplates.mo
share/locale/bs/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/bs/LC_MESSAGES/kdevgit.mo
share/locale/bs/LC_MESSAGES/kdevgrepview.mo
share/locale/bs/LC_MESSAGES/kdevkonsole.mo
share/locale/bs/LC_MESSAGES/kdevopenwith.mo
share/locale/bs/LC_MESSAGES/kdevpastebin.mo
share/locale/bs/LC_MESSAGES/kdevpatchreview.mo
share/locale/bs/LC_MESSAGES/kdevplatform.mo
share/locale/bs/LC_MESSAGES/kdevproblemreporter.mo
share/locale/bs/LC_MESSAGES/kdevprojectfilter.mo
share/locale/bs/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/bs/LC_MESSAGES/kdevquickopen.mo
share/locale/bs/LC_MESSAGES/kdevreviewboard.mo
share/locale/bs/LC_MESSAGES/kdevsnippet.mo
share/locale/bs/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/bs/LC_MESSAGES/kdevsubversion.mo
share/locale/bs/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/bs/LC_MESSAGES/kdevtemplates_config.mo
share/locale/bs/LC_MESSAGES/kdevtestview.mo
share/locale/bs/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/ca/LC_MESSAGES/kdevappwizard.mo
share/locale/ca/LC_MESSAGES/kdevclassbrowser.mo
share/locale/ca/LC_MESSAGES/kdevcodeutils.mo
share/locale/ca/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/ca/LC_MESSAGES/kdevcvs.mo
share/locale/ca/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/ca/LC_MESSAGES/kdevdocumentview.mo
share/locale/ca/LC_MESSAGES/kdevexecute.mo
share/locale/ca/LC_MESSAGES/kdevexecutescript.mo
share/locale/ca/LC_MESSAGES/kdevexternalscript.mo
share/locale/ca/LC_MESSAGES/kdevfilemanager.mo
share/locale/ca/LC_MESSAGES/kdevfiletemplates.mo
share/locale/ca/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/ca/LC_MESSAGES/kdevgit.mo
share/locale/ca/LC_MESSAGES/kdevgrepview.mo
share/locale/ca/LC_MESSAGES/kdevkonsole.mo
share/locale/ca/LC_MESSAGES/kdevopenwith.mo
share/locale/ca/LC_MESSAGES/kdevpastebin.mo
share/locale/ca/LC_MESSAGES/kdevpatchreview.mo
share/locale/ca/LC_MESSAGES/kdevplatform.mo
share/locale/ca/LC_MESSAGES/kdevproblemreporter.mo
share/locale/ca/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/ca/LC_MESSAGES/kdevprojectfilter.mo
share/locale/ca/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/ca/LC_MESSAGES/kdevquickopen.mo
share/locale/ca/LC_MESSAGES/kdevreviewboard.mo
share/locale/ca/LC_MESSAGES/kdevsnippet.mo
share/locale/ca/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/ca/LC_MESSAGES/kdevsubversion.mo
share/locale/ca/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/ca/LC_MESSAGES/kdevtemplates_config.mo
share/locale/ca/LC_MESSAGES/kdevtestview.mo
share/locale/ca/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/ca@valencia/LC_MESSAGES/kdevappwizard.mo
share/locale/ca@valencia/LC_MESSAGES/kdevclassbrowser.mo
share/locale/ca@valencia/LC_MESSAGES/kdevcodeutils.mo
share/locale/ca@valencia/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/ca@valencia/LC_MESSAGES/kdevcvs.mo
share/locale/ca@valencia/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/ca@valencia/LC_MESSAGES/kdevdocumentview.mo
share/locale/ca@valencia/LC_MESSAGES/kdevexecute.mo
share/locale/ca@valencia/LC_MESSAGES/kdevexecutescript.mo
share/locale/ca@valencia/LC_MESSAGES/kdevexternalscript.mo
share/locale/ca@valencia/LC_MESSAGES/kdevfilemanager.mo
share/locale/ca@valencia/LC_MESSAGES/kdevfiletemplates.mo
share/locale/ca@valencia/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/ca@valencia/LC_MESSAGES/kdevgit.mo
share/locale/ca@valencia/LC_MESSAGES/kdevgrepview.mo
share/locale/ca@valencia/LC_MESSAGES/kdevkonsole.mo
share/locale/ca@valencia/LC_MESSAGES/kdevopenwith.mo
share/locale/ca@valencia/LC_MESSAGES/kdevpastebin.mo
share/locale/ca@valencia/LC_MESSAGES/kdevpatchreview.mo
share/locale/ca@valencia/LC_MESSAGES/kdevplatform.mo
share/locale/ca@valencia/LC_MESSAGES/kdevproblemreporter.mo
share/locale/ca@valencia/LC_MESSAGES/kdevprojectfilter.mo
share/locale/ca@valencia/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/ca@valencia/LC_MESSAGES/kdevquickopen.mo
share/locale/ca@valencia/LC_MESSAGES/kdevreviewboard.mo
share/locale/ca@valencia/LC_MESSAGES/kdevsnippet.mo
share/locale/ca@valencia/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/ca@valencia/LC_MESSAGES/kdevsubversion.mo
share/locale/ca@valencia/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/ca@valencia/LC_MESSAGES/kdevtemplates_config.mo
share/locale/ca@valencia/LC_MESSAGES/kdevtestview.mo
share/locale/ca@valencia/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/da/LC_MESSAGES/kdevappwizard.mo
share/locale/da/LC_MESSAGES/kdevclassbrowser.mo
share/locale/da/LC_MESSAGES/kdevcodeutils.mo
share/locale/da/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/da/LC_MESSAGES/kdevcvs.mo
share/locale/da/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/da/LC_MESSAGES/kdevdocumentview.mo
share/locale/da/LC_MESSAGES/kdevexecute.mo
share/locale/da/LC_MESSAGES/kdevexecutescript.mo
share/locale/da/LC_MESSAGES/kdevexternalscript.mo
share/locale/da/LC_MESSAGES/kdevfilemanager.mo
share/locale/da/LC_MESSAGES/kdevfiletemplates.mo
share/locale/da/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/da/LC_MESSAGES/kdevgit.mo
share/locale/da/LC_MESSAGES/kdevgrepview.mo
share/locale/da/LC_MESSAGES/kdevkonsole.mo
share/locale/da/LC_MESSAGES/kdevopenwith.mo
share/locale/da/LC_MESSAGES/kdevpastebin.mo
share/locale/da/LC_MESSAGES/kdevpatchreview.mo
share/locale/da/LC_MESSAGES/kdevplatform.mo
share/locale/da/LC_MESSAGES/kdevproblemreporter.mo
share/locale/da/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/da/LC_MESSAGES/kdevprojectfilter.mo
share/locale/da/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/da/LC_MESSAGES/kdevquickopen.mo
share/locale/da/LC_MESSAGES/kdevreviewboard.mo
share/locale/da/LC_MESSAGES/kdevsnippet.mo
share/locale/da/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/da/LC_MESSAGES/kdevsubversion.mo
share/locale/da/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/da/LC_MESSAGES/kdevtemplates_config.mo
share/locale/da/LC_MESSAGES/kdevtestview.mo
share/locale/da/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/de/LC_MESSAGES/kdevappwizard.mo
share/locale/de/LC_MESSAGES/kdevclassbrowser.mo
share/locale/de/LC_MESSAGES/kdevcodeutils.mo
share/locale/de/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/de/LC_MESSAGES/kdevcvs.mo
share/locale/de/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/de/LC_MESSAGES/kdevdocumentview.mo
share/locale/de/LC_MESSAGES/kdevexecute.mo
share/locale/de/LC_MESSAGES/kdevexecutescript.mo
share/locale/de/LC_MESSAGES/kdevexternalscript.mo
share/locale/de/LC_MESSAGES/kdevfilemanager.mo
share/locale/de/LC_MESSAGES/kdevfiletemplates.mo
share/locale/de/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/de/LC_MESSAGES/kdevgit.mo
share/locale/de/LC_MESSAGES/kdevgrepview.mo
share/locale/de/LC_MESSAGES/kdevkonsole.mo
share/locale/de/LC_MESSAGES/kdevopenwith.mo
share/locale/de/LC_MESSAGES/kdevpastebin.mo
share/locale/de/LC_MESSAGES/kdevpatchreview.mo
share/locale/de/LC_MESSAGES/kdevplatform.mo
share/locale/de/LC_MESSAGES/kdevproblemreporter.mo
share/locale/de/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/de/LC_MESSAGES/kdevprojectfilter.mo
share/locale/de/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/de/LC_MESSAGES/kdevquickopen.mo
share/locale/de/LC_MESSAGES/kdevreviewboard.mo
share/locale/de/LC_MESSAGES/kdevsnippet.mo
share/locale/de/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/de/LC_MESSAGES/kdevsubversion.mo
share/locale/de/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/de/LC_MESSAGES/kdevtemplates_config.mo
share/locale/de/LC_MESSAGES/kdevtestview.mo
share/locale/de/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/el/LC_MESSAGES/kdevappwizard.mo
share/locale/el/LC_MESSAGES/kdevclassbrowser.mo
share/locale/el/LC_MESSAGES/kdevcodeutils.mo
share/locale/el/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/el/LC_MESSAGES/kdevcvs.mo
share/locale/el/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/el/LC_MESSAGES/kdevdocumentview.mo
share/locale/el/LC_MESSAGES/kdevexecute.mo
share/locale/el/LC_MESSAGES/kdevexecutescript.mo
share/locale/el/LC_MESSAGES/kdevexternalscript.mo
share/locale/el/LC_MESSAGES/kdevfilemanager.mo
share/locale/el/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/el/LC_MESSAGES/kdevgit.mo
share/locale/el/LC_MESSAGES/kdevgrepview.mo
share/locale/el/LC_MESSAGES/kdevkonsole.mo
share/locale/el/LC_MESSAGES/kdevopenwith.mo
share/locale/el/LC_MESSAGES/kdevpastebin.mo
share/locale/el/LC_MESSAGES/kdevpatchreview.mo
share/locale/el/LC_MESSAGES/kdevplatform.mo
share/locale/el/LC_MESSAGES/kdevproblemreporter.mo
share/locale/el/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/el/LC_MESSAGES/kdevquickopen.mo
share/locale/el/LC_MESSAGES/kdevreviewboard.mo
share/locale/el/LC_MESSAGES/kdevsnippet.mo
share/locale/el/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/el/LC_MESSAGES/kdevsubversion.mo
share/locale/el/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/el/LC_MESSAGES/kdevtemplates_config.mo
share/locale/el/LC_MESSAGES/kdevtestview.mo
share/locale/el/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/en_GB/LC_MESSAGES/kdevappwizard.mo
share/locale/en_GB/LC_MESSAGES/kdevclassbrowser.mo
share/locale/en_GB/LC_MESSAGES/kdevcodeutils.mo
share/locale/en_GB/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/en_GB/LC_MESSAGES/kdevcvs.mo
share/locale/en_GB/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/en_GB/LC_MESSAGES/kdevdocumentview.mo
share/locale/en_GB/LC_MESSAGES/kdevexecute.mo
share/locale/en_GB/LC_MESSAGES/kdevexecutescript.mo
share/locale/en_GB/LC_MESSAGES/kdevexternalscript.mo
share/locale/en_GB/LC_MESSAGES/kdevfilemanager.mo
share/locale/en_GB/LC_MESSAGES/kdevfiletemplates.mo
share/locale/en_GB/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/en_GB/LC_MESSAGES/kdevgit.mo
share/locale/en_GB/LC_MESSAGES/kdevgrepview.mo
share/locale/en_GB/LC_MESSAGES/kdevkonsole.mo
share/locale/en_GB/LC_MESSAGES/kdevopenwith.mo
share/locale/en_GB/LC_MESSAGES/kdevpastebin.mo
share/locale/en_GB/LC_MESSAGES/kdevpatchreview.mo
share/locale/en_GB/LC_MESSAGES/kdevplatform.mo
share/locale/en_GB/LC_MESSAGES/kdevproblemreporter.mo
share/locale/en_GB/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/en_GB/LC_MESSAGES/kdevprojectfilter.mo
share/locale/en_GB/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/en_GB/LC_MESSAGES/kdevquickopen.mo
share/locale/en_GB/LC_MESSAGES/kdevreviewboard.mo
share/locale/en_GB/LC_MESSAGES/kdevsnippet.mo
share/locale/en_GB/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/en_GB/LC_MESSAGES/kdevsubversion.mo
share/locale/en_GB/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/en_GB/LC_MESSAGES/kdevtemplates_config.mo
share/locale/en_GB/LC_MESSAGES/kdevtestview.mo
share/locale/en_GB/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/es/LC_MESSAGES/kdevappwizard.mo
share/locale/es/LC_MESSAGES/kdevclassbrowser.mo
share/locale/es/LC_MESSAGES/kdevcodeutils.mo
share/locale/es/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/es/LC_MESSAGES/kdevcvs.mo
share/locale/es/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/es/LC_MESSAGES/kdevdocumentview.mo
share/locale/es/LC_MESSAGES/kdevexecute.mo
share/locale/es/LC_MESSAGES/kdevexecutescript.mo
share/locale/es/LC_MESSAGES/kdevexternalscript.mo
share/locale/es/LC_MESSAGES/kdevfilemanager.mo
share/locale/es/LC_MESSAGES/kdevfiletemplates.mo
share/locale/es/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/es/LC_MESSAGES/kdevgit.mo
share/locale/es/LC_MESSAGES/kdevgrepview.mo
share/locale/es/LC_MESSAGES/kdevkonsole.mo
share/locale/es/LC_MESSAGES/kdevopenwith.mo
share/locale/es/LC_MESSAGES/kdevpastebin.mo
share/locale/es/LC_MESSAGES/kdevpatchreview.mo
share/locale/es/LC_MESSAGES/kdevplatform.mo
share/locale/es/LC_MESSAGES/kdevproblemreporter.mo
share/locale/es/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/es/LC_MESSAGES/kdevprojectfilter.mo
share/locale/es/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/es/LC_MESSAGES/kdevquickopen.mo
share/locale/es/LC_MESSAGES/kdevreviewboard.mo
share/locale/es/LC_MESSAGES/kdevsnippet.mo
share/locale/es/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/es/LC_MESSAGES/kdevsubversion.mo
share/locale/es/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/es/LC_MESSAGES/kdevtemplates_config.mo
share/locale/es/LC_MESSAGES/kdevtestview.mo
share/locale/es/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/et/LC_MESSAGES/kdevappwizard.mo
share/locale/et/LC_MESSAGES/kdevclassbrowser.mo
share/locale/et/LC_MESSAGES/kdevcodeutils.mo
share/locale/et/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/et/LC_MESSAGES/kdevcvs.mo
share/locale/et/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/et/LC_MESSAGES/kdevdocumentview.mo
share/locale/et/LC_MESSAGES/kdevexecute.mo
share/locale/et/LC_MESSAGES/kdevexecutescript.mo
share/locale/et/LC_MESSAGES/kdevexternalscript.mo
share/locale/et/LC_MESSAGES/kdevfilemanager.mo
share/locale/et/LC_MESSAGES/kdevfiletemplates.mo
share/locale/et/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/et/LC_MESSAGES/kdevgit.mo
share/locale/et/LC_MESSAGES/kdevgrepview.mo
share/locale/et/LC_MESSAGES/kdevkonsole.mo
share/locale/et/LC_MESSAGES/kdevopenwith.mo
share/locale/et/LC_MESSAGES/kdevpastebin.mo
share/locale/et/LC_MESSAGES/kdevpatchreview.mo
share/locale/et/LC_MESSAGES/kdevplatform.mo
share/locale/et/LC_MESSAGES/kdevproblemreporter.mo
share/locale/et/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/et/LC_MESSAGES/kdevprojectfilter.mo
share/locale/et/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/et/LC_MESSAGES/kdevquickopen.mo
share/locale/et/LC_MESSAGES/kdevreviewboard.mo
share/locale/et/LC_MESSAGES/kdevsnippet.mo
share/locale/et/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/et/LC_MESSAGES/kdevsubversion.mo
share/locale/et/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/et/LC_MESSAGES/kdevtemplates_config.mo
share/locale/et/LC_MESSAGES/kdevtestview.mo
share/locale/et/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/fi/LC_MESSAGES/kdevappwizard.mo
share/locale/fi/LC_MESSAGES/kdevclassbrowser.mo
share/locale/fi/LC_MESSAGES/kdevcodeutils.mo
share/locale/fi/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/fi/LC_MESSAGES/kdevcvs.mo
share/locale/fi/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/fi/LC_MESSAGES/kdevdocumentview.mo
share/locale/fi/LC_MESSAGES/kdevexecute.mo
share/locale/fi/LC_MESSAGES/kdevexecutescript.mo
share/locale/fi/LC_MESSAGES/kdevexternalscript.mo
share/locale/fi/LC_MESSAGES/kdevfilemanager.mo
share/locale/fi/LC_MESSAGES/kdevfiletemplates.mo
share/locale/fi/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/fi/LC_MESSAGES/kdevgit.mo
share/locale/fi/LC_MESSAGES/kdevgrepview.mo
share/locale/fi/LC_MESSAGES/kdevkonsole.mo
share/locale/fi/LC_MESSAGES/kdevopenwith.mo
share/locale/fi/LC_MESSAGES/kdevpastebin.mo
share/locale/fi/LC_MESSAGES/kdevpatchreview.mo
share/locale/fi/LC_MESSAGES/kdevplatform.mo
share/locale/fi/LC_MESSAGES/kdevproblemreporter.mo
share/locale/fi/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/fi/LC_MESSAGES/kdevprojectfilter.mo
share/locale/fi/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/fi/LC_MESSAGES/kdevquickopen.mo
share/locale/fi/LC_MESSAGES/kdevreviewboard.mo
share/locale/fi/LC_MESSAGES/kdevsnippet.mo
share/locale/fi/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/fi/LC_MESSAGES/kdevsubversion.mo
share/locale/fi/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/fi/LC_MESSAGES/kdevtemplates_config.mo
share/locale/fi/LC_MESSAGES/kdevtestview.mo
share/locale/fi/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/fr/LC_MESSAGES/kdevappwizard.mo
share/locale/fr/LC_MESSAGES/kdevclassbrowser.mo
share/locale/fr/LC_MESSAGES/kdevcodeutils.mo
share/locale/fr/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/fr/LC_MESSAGES/kdevcvs.mo
share/locale/fr/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/fr/LC_MESSAGES/kdevdocumentview.mo
share/locale/fr/LC_MESSAGES/kdevexecute.mo
share/locale/fr/LC_MESSAGES/kdevexecutescript.mo
share/locale/fr/LC_MESSAGES/kdevexternalscript.mo
share/locale/fr/LC_MESSAGES/kdevfilemanager.mo
share/locale/fr/LC_MESSAGES/kdevfiletemplates.mo
share/locale/fr/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/fr/LC_MESSAGES/kdevgit.mo
share/locale/fr/LC_MESSAGES/kdevgrepview.mo
share/locale/fr/LC_MESSAGES/kdevkonsole.mo
share/locale/fr/LC_MESSAGES/kdevopenwith.mo
share/locale/fr/LC_MESSAGES/kdevpastebin.mo
share/locale/fr/LC_MESSAGES/kdevpatchreview.mo
share/locale/fr/LC_MESSAGES/kdevplatform.mo
share/locale/fr/LC_MESSAGES/kdevproblemreporter.mo
share/locale/fr/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/fr/LC_MESSAGES/kdevprojectfilter.mo
share/locale/fr/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/fr/LC_MESSAGES/kdevquickopen.mo
share/locale/fr/LC_MESSAGES/kdevreviewboard.mo
share/locale/fr/LC_MESSAGES/kdevsnippet.mo
share/locale/fr/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/fr/LC_MESSAGES/kdevsubversion.mo
share/locale/fr/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/fr/LC_MESSAGES/kdevtemplates_config.mo
share/locale/fr/LC_MESSAGES/kdevtestview.mo
share/locale/fr/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/gl/LC_MESSAGES/kdevappwizard.mo
share/locale/gl/LC_MESSAGES/kdevclassbrowser.mo
share/locale/gl/LC_MESSAGES/kdevcodeutils.mo
share/locale/gl/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/gl/LC_MESSAGES/kdevcvs.mo
share/locale/gl/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/gl/LC_MESSAGES/kdevdocumentview.mo
share/locale/gl/LC_MESSAGES/kdevexecute.mo
share/locale/gl/LC_MESSAGES/kdevexecutescript.mo
share/locale/gl/LC_MESSAGES/kdevexternalscript.mo
share/locale/gl/LC_MESSAGES/kdevfilemanager.mo
share/locale/gl/LC_MESSAGES/kdevfiletemplates.mo
share/locale/gl/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/gl/LC_MESSAGES/kdevgit.mo
share/locale/gl/LC_MESSAGES/kdevgrepview.mo
share/locale/gl/LC_MESSAGES/kdevkonsole.mo
share/locale/gl/LC_MESSAGES/kdevopenwith.mo
share/locale/gl/LC_MESSAGES/kdevpastebin.mo
share/locale/gl/LC_MESSAGES/kdevpatchreview.mo
share/locale/gl/LC_MESSAGES/kdevplatform.mo
share/locale/gl/LC_MESSAGES/kdevproblemreporter.mo
share/locale/gl/LC_MESSAGES/kdevprojectfilter.mo
share/locale/gl/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/gl/LC_MESSAGES/kdevquickopen.mo
share/locale/gl/LC_MESSAGES/kdevreviewboard.mo
share/locale/gl/LC_MESSAGES/kdevsnippet.mo
share/locale/gl/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/gl/LC_MESSAGES/kdevsubversion.mo
share/locale/gl/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/gl/LC_MESSAGES/kdevtemplates_config.mo
share/locale/gl/LC_MESSAGES/kdevtestview.mo
share/locale/gl/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/it/LC_MESSAGES/kdevappwizard.mo
share/locale/it/LC_MESSAGES/kdevclassbrowser.mo
share/locale/it/LC_MESSAGES/kdevcodeutils.mo
share/locale/it/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/it/LC_MESSAGES/kdevcvs.mo
share/locale/it/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/it/LC_MESSAGES/kdevdocumentview.mo
share/locale/it/LC_MESSAGES/kdevexecute.mo
share/locale/it/LC_MESSAGES/kdevexecutescript.mo
share/locale/it/LC_MESSAGES/kdevexternalscript.mo
share/locale/it/LC_MESSAGES/kdevfilemanager.mo
share/locale/it/LC_MESSAGES/kdevfiletemplates.mo
share/locale/it/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/it/LC_MESSAGES/kdevgit.mo
share/locale/it/LC_MESSAGES/kdevgrepview.mo
share/locale/it/LC_MESSAGES/kdevkonsole.mo
share/locale/it/LC_MESSAGES/kdevopenwith.mo
share/locale/it/LC_MESSAGES/kdevpastebin.mo
share/locale/it/LC_MESSAGES/kdevpatchreview.mo
share/locale/it/LC_MESSAGES/kdevplatform.mo
share/locale/it/LC_MESSAGES/kdevproblemreporter.mo
share/locale/it/LC_MESSAGES/kdevprojectfilter.mo
share/locale/it/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/it/LC_MESSAGES/kdevquickopen.mo
share/locale/it/LC_MESSAGES/kdevreviewboard.mo
share/locale/it/LC_MESSAGES/kdevsnippet.mo
share/locale/it/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/it/LC_MESSAGES/kdevsubversion.mo
share/locale/it/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/it/LC_MESSAGES/kdevtemplates_config.mo
share/locale/it/LC_MESSAGES/kdevtestview.mo
share/locale/it/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/kk/LC_MESSAGES/kdevappwizard.mo
share/locale/kk/LC_MESSAGES/kdevclassbrowser.mo
share/locale/kk/LC_MESSAGES/kdevcodeutils.mo
share/locale/kk/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/kk/LC_MESSAGES/kdevcvs.mo
share/locale/kk/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/kk/LC_MESSAGES/kdevdocumentview.mo
share/locale/kk/LC_MESSAGES/kdevexecute.mo
share/locale/kk/LC_MESSAGES/kdevexecutescript.mo
share/locale/kk/LC_MESSAGES/kdevexternalscript.mo
share/locale/kk/LC_MESSAGES/kdevfilemanager.mo
share/locale/kk/LC_MESSAGES/kdevfiletemplates.mo
share/locale/kk/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/kk/LC_MESSAGES/kdevgit.mo
share/locale/kk/LC_MESSAGES/kdevgrepview.mo
share/locale/kk/LC_MESSAGES/kdevkonsole.mo
share/locale/kk/LC_MESSAGES/kdevopenwith.mo
share/locale/kk/LC_MESSAGES/kdevpastebin.mo
share/locale/kk/LC_MESSAGES/kdevpatchreview.mo
share/locale/kk/LC_MESSAGES/kdevplatform.mo
share/locale/kk/LC_MESSAGES/kdevproblemreporter.mo
share/locale/kk/LC_MESSAGES/kdevprojectfilter.mo
share/locale/kk/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/kk/LC_MESSAGES/kdevquickopen.mo
share/locale/kk/LC_MESSAGES/kdevreviewboard.mo
share/locale/kk/LC_MESSAGES/kdevsnippet.mo
share/locale/kk/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/kk/LC_MESSAGES/kdevsubversion.mo
share/locale/kk/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/kk/LC_MESSAGES/kdevtemplates_config.mo
share/locale/kk/LC_MESSAGES/kdevtestview.mo
share/locale/kk/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/nb/LC_MESSAGES/kdevappwizard.mo
share/locale/nb/LC_MESSAGES/kdevclassbrowser.mo
share/locale/nb/LC_MESSAGES/kdevcodeutils.mo
share/locale/nb/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/nb/LC_MESSAGES/kdevcvs.mo
share/locale/nb/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/nb/LC_MESSAGES/kdevdocumentview.mo
share/locale/nb/LC_MESSAGES/kdevexecute.mo
share/locale/nb/LC_MESSAGES/kdevexecutescript.mo
share/locale/nb/LC_MESSAGES/kdevexternalscript.mo
share/locale/nb/LC_MESSAGES/kdevfilemanager.mo
share/locale/nb/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/nb/LC_MESSAGES/kdevgit.mo
share/locale/nb/LC_MESSAGES/kdevgrepview.mo
share/locale/nb/LC_MESSAGES/kdevkonsole.mo
share/locale/nb/LC_MESSAGES/kdevopenwith.mo
share/locale/nb/LC_MESSAGES/kdevpastebin.mo
share/locale/nb/LC_MESSAGES/kdevpatchreview.mo
share/locale/nb/LC_MESSAGES/kdevplatform.mo
share/locale/nb/LC_MESSAGES/kdevproblemreporter.mo
share/locale/nb/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/nb/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/nb/LC_MESSAGES/kdevquickopen.mo
share/locale/nb/LC_MESSAGES/kdevreviewboard.mo
share/locale/nb/LC_MESSAGES/kdevsnippet.mo
share/locale/nb/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/nb/LC_MESSAGES/kdevsubversion.mo
share/locale/nb/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/nl/LC_MESSAGES/kdevappwizard.mo
share/locale/nl/LC_MESSAGES/kdevclassbrowser.mo
share/locale/nl/LC_MESSAGES/kdevcodeutils.mo
share/locale/nl/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/nl/LC_MESSAGES/kdevcvs.mo
share/locale/nl/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/nl/LC_MESSAGES/kdevdocumentview.mo
share/locale/nl/LC_MESSAGES/kdevexecute.mo
share/locale/nl/LC_MESSAGES/kdevexecutescript.mo
share/locale/nl/LC_MESSAGES/kdevexternalscript.mo
share/locale/nl/LC_MESSAGES/kdevfilemanager.mo
share/locale/nl/LC_MESSAGES/kdevfiletemplates.mo
share/locale/nl/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/nl/LC_MESSAGES/kdevgit.mo
share/locale/nl/LC_MESSAGES/kdevgrepview.mo
share/locale/nl/LC_MESSAGES/kdevkonsole.mo
share/locale/nl/LC_MESSAGES/kdevopenwith.mo
share/locale/nl/LC_MESSAGES/kdevpastebin.mo
share/locale/nl/LC_MESSAGES/kdevpatchreview.mo
share/locale/nl/LC_MESSAGES/kdevplatform.mo
share/locale/nl/LC_MESSAGES/kdevproblemreporter.mo
share/locale/nl/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/nl/LC_MESSAGES/kdevprojectfilter.mo
share/locale/nl/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/nl/LC_MESSAGES/kdevquickopen.mo
share/locale/nl/LC_MESSAGES/kdevreviewboard.mo
share/locale/nl/LC_MESSAGES/kdevsnippet.mo
share/locale/nl/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/nl/LC_MESSAGES/kdevsubversion.mo
share/locale/nl/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/nl/LC_MESSAGES/kdevtemplates_config.mo
share/locale/nl/LC_MESSAGES/kdevtestview.mo
share/locale/nl/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/pl/LC_MESSAGES/kdevappwizard.mo
share/locale/pl/LC_MESSAGES/kdevclassbrowser.mo
share/locale/pl/LC_MESSAGES/kdevcodeutils.mo
share/locale/pl/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/pl/LC_MESSAGES/kdevcvs.mo
share/locale/pl/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/pl/LC_MESSAGES/kdevdocumentview.mo
share/locale/pl/LC_MESSAGES/kdevexecute.mo
share/locale/pl/LC_MESSAGES/kdevexecutescript.mo
share/locale/pl/LC_MESSAGES/kdevexternalscript.mo
share/locale/pl/LC_MESSAGES/kdevfilemanager.mo
share/locale/pl/LC_MESSAGES/kdevfiletemplates.mo
share/locale/pl/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/pl/LC_MESSAGES/kdevgit.mo
share/locale/pl/LC_MESSAGES/kdevgrepview.mo
share/locale/pl/LC_MESSAGES/kdevkonsole.mo
share/locale/pl/LC_MESSAGES/kdevopenwith.mo
share/locale/pl/LC_MESSAGES/kdevpastebin.mo
share/locale/pl/LC_MESSAGES/kdevpatchreview.mo
share/locale/pl/LC_MESSAGES/kdevplatform.mo
share/locale/pl/LC_MESSAGES/kdevproblemreporter.mo
share/locale/pl/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/pl/LC_MESSAGES/kdevprojectfilter.mo
share/locale/pl/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/pl/LC_MESSAGES/kdevquickopen.mo
share/locale/pl/LC_MESSAGES/kdevreviewboard.mo
share/locale/pl/LC_MESSAGES/kdevsnippet.mo
share/locale/pl/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/pl/LC_MESSAGES/kdevsubversion.mo
share/locale/pl/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/pl/LC_MESSAGES/kdevtemplates_config.mo
share/locale/pl/LC_MESSAGES/kdevtestview.mo
share/locale/pl/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/pt/LC_MESSAGES/kdevappwizard.mo
share/locale/pt/LC_MESSAGES/kdevclassbrowser.mo
share/locale/pt/LC_MESSAGES/kdevcodeutils.mo
share/locale/pt/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/pt/LC_MESSAGES/kdevcvs.mo
share/locale/pt/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/pt/LC_MESSAGES/kdevdocumentview.mo
share/locale/pt/LC_MESSAGES/kdevexecute.mo
share/locale/pt/LC_MESSAGES/kdevexecutescript.mo
share/locale/pt/LC_MESSAGES/kdevexternalscript.mo
share/locale/pt/LC_MESSAGES/kdevfilemanager.mo
share/locale/pt/LC_MESSAGES/kdevfiletemplates.mo
share/locale/pt/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/pt/LC_MESSAGES/kdevgit.mo
share/locale/pt/LC_MESSAGES/kdevgrepview.mo
share/locale/pt/LC_MESSAGES/kdevkonsole.mo
share/locale/pt/LC_MESSAGES/kdevopenwith.mo
share/locale/pt/LC_MESSAGES/kdevpastebin.mo
share/locale/pt/LC_MESSAGES/kdevpatchreview.mo
share/locale/pt/LC_MESSAGES/kdevplatform.mo
share/locale/pt/LC_MESSAGES/kdevproblemreporter.mo
share/locale/pt/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/pt/LC_MESSAGES/kdevprojectfilter.mo
share/locale/pt/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/pt/LC_MESSAGES/kdevquickopen.mo
share/locale/pt/LC_MESSAGES/kdevreviewboard.mo
share/locale/pt/LC_MESSAGES/kdevsnippet.mo
share/locale/pt/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/pt/LC_MESSAGES/kdevsubversion.mo
share/locale/pt/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/pt/LC_MESSAGES/kdevtemplates_config.mo
share/locale/pt/LC_MESSAGES/kdevtestview.mo
share/locale/pt/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/pt_BR/LC_MESSAGES/kdevappwizard.mo
share/locale/pt_BR/LC_MESSAGES/kdevclassbrowser.mo
share/locale/pt_BR/LC_MESSAGES/kdevcodeutils.mo
share/locale/pt_BR/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/pt_BR/LC_MESSAGES/kdevcvs.mo
share/locale/pt_BR/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/pt_BR/LC_MESSAGES/kdevdocumentview.mo
share/locale/pt_BR/LC_MESSAGES/kdevexecute.mo
share/locale/pt_BR/LC_MESSAGES/kdevexecutescript.mo
share/locale/pt_BR/LC_MESSAGES/kdevexternalscript.mo
share/locale/pt_BR/LC_MESSAGES/kdevfilemanager.mo
share/locale/pt_BR/LC_MESSAGES/kdevfiletemplates.mo
share/locale/pt_BR/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/pt_BR/LC_MESSAGES/kdevgit.mo
share/locale/pt_BR/LC_MESSAGES/kdevgrepview.mo
share/locale/pt_BR/LC_MESSAGES/kdevkonsole.mo
share/locale/pt_BR/LC_MESSAGES/kdevopenwith.mo
share/locale/pt_BR/LC_MESSAGES/kdevpastebin.mo
share/locale/pt_BR/LC_MESSAGES/kdevpatchreview.mo
share/locale/pt_BR/LC_MESSAGES/kdevplatform.mo
share/locale/pt_BR/LC_MESSAGES/kdevproblemreporter.mo
share/locale/pt_BR/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/pt_BR/LC_MESSAGES/kdevprojectfilter.mo
share/locale/pt_BR/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/pt_BR/LC_MESSAGES/kdevquickopen.mo
share/locale/pt_BR/LC_MESSAGES/kdevreviewboard.mo
share/locale/pt_BR/LC_MESSAGES/kdevsnippet.mo
share/locale/pt_BR/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/pt_BR/LC_MESSAGES/kdevsubversion.mo
share/locale/pt_BR/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/pt_BR/LC_MESSAGES/kdevtemplates_config.mo
share/locale/pt_BR/LC_MESSAGES/kdevtestview.mo
share/locale/pt_BR/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/ru/LC_MESSAGES/kdevappwizard.mo
share/locale/ru/LC_MESSAGES/kdevclassbrowser.mo
share/locale/ru/LC_MESSAGES/kdevcodeutils.mo
share/locale/ru/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/ru/LC_MESSAGES/kdevcvs.mo
share/locale/ru/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/ru/LC_MESSAGES/kdevdocumentview.mo
share/locale/ru/LC_MESSAGES/kdevexecute.mo
share/locale/ru/LC_MESSAGES/kdevexecutescript.mo
share/locale/ru/LC_MESSAGES/kdevexternalscript.mo
share/locale/ru/LC_MESSAGES/kdevfilemanager.mo
share/locale/ru/LC_MESSAGES/kdevfiletemplates.mo
share/locale/ru/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/ru/LC_MESSAGES/kdevgit.mo
share/locale/ru/LC_MESSAGES/kdevgrepview.mo
share/locale/ru/LC_MESSAGES/kdevkonsole.mo
share/locale/ru/LC_MESSAGES/kdevopenwith.mo
share/locale/ru/LC_MESSAGES/kdevpastebin.mo
share/locale/ru/LC_MESSAGES/kdevpatchreview.mo
share/locale/ru/LC_MESSAGES/kdevplatform.mo
share/locale/ru/LC_MESSAGES/kdevproblemreporter.mo
share/locale/ru/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/ru/LC_MESSAGES/kdevquickopen.mo
share/locale/ru/LC_MESSAGES/kdevreviewboard.mo
share/locale/ru/LC_MESSAGES/kdevsnippet.mo
share/locale/ru/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/ru/LC_MESSAGES/kdevsubversion.mo
share/locale/ru/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/ru/LC_MESSAGES/kdevtemplates_config.mo
share/locale/ru/LC_MESSAGES/kdevtestview.mo
share/locale/ru/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/sk/LC_MESSAGES/kdevappwizard.mo
share/locale/sk/LC_MESSAGES/kdevclassbrowser.mo
share/locale/sk/LC_MESSAGES/kdevcodeutils.mo
share/locale/sk/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/sk/LC_MESSAGES/kdevcvs.mo
share/locale/sk/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/sk/LC_MESSAGES/kdevdocumentview.mo
share/locale/sk/LC_MESSAGES/kdevexecute.mo
share/locale/sk/LC_MESSAGES/kdevexecutescript.mo
share/locale/sk/LC_MESSAGES/kdevexternalscript.mo
share/locale/sk/LC_MESSAGES/kdevfilemanager.mo
share/locale/sk/LC_MESSAGES/kdevfiletemplates.mo
share/locale/sk/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/sk/LC_MESSAGES/kdevgit.mo
share/locale/sk/LC_MESSAGES/kdevgrepview.mo
share/locale/sk/LC_MESSAGES/kdevkonsole.mo
share/locale/sk/LC_MESSAGES/kdevopenwith.mo
share/locale/sk/LC_MESSAGES/kdevpastebin.mo
share/locale/sk/LC_MESSAGES/kdevpatchreview.mo
share/locale/sk/LC_MESSAGES/kdevplatform.mo
share/locale/sk/LC_MESSAGES/kdevproblemreporter.mo
share/locale/sk/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/sk/LC_MESSAGES/kdevprojectfilter.mo
share/locale/sk/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/sk/LC_MESSAGES/kdevquickopen.mo
share/locale/sk/LC_MESSAGES/kdevreviewboard.mo
share/locale/sk/LC_MESSAGES/kdevsnippet.mo
share/locale/sk/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/sk/LC_MESSAGES/kdevsubversion.mo
share/locale/sk/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/sk/LC_MESSAGES/kdevtemplates_config.mo
share/locale/sk/LC_MESSAGES/kdevtestview.mo
share/locale/sk/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/sl/LC_MESSAGES/kdevappwizard.mo
share/locale/sl/LC_MESSAGES/kdevclassbrowser.mo
share/locale/sl/LC_MESSAGES/kdevcodeutils.mo
share/locale/sl/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/sl/LC_MESSAGES/kdevcvs.mo
share/locale/sl/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/sl/LC_MESSAGES/kdevdocumentview.mo
share/locale/sl/LC_MESSAGES/kdevexecute.mo
share/locale/sl/LC_MESSAGES/kdevexecutescript.mo
share/locale/sl/LC_MESSAGES/kdevexternalscript.mo
share/locale/sl/LC_MESSAGES/kdevfilemanager.mo
share/locale/sl/LC_MESSAGES/kdevfiletemplates.mo
share/locale/sl/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/sl/LC_MESSAGES/kdevgit.mo
share/locale/sl/LC_MESSAGES/kdevgrepview.mo
share/locale/sl/LC_MESSAGES/kdevkonsole.mo
share/locale/sl/LC_MESSAGES/kdevopenwith.mo
share/locale/sl/LC_MESSAGES/kdevpastebin.mo
share/locale/sl/LC_MESSAGES/kdevpatchreview.mo
share/locale/sl/LC_MESSAGES/kdevplatform.mo
share/locale/sl/LC_MESSAGES/kdevproblemreporter.mo
share/locale/sl/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/sl/LC_MESSAGES/kdevprojectfilter.mo
share/locale/sl/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/sl/LC_MESSAGES/kdevquickopen.mo
share/locale/sl/LC_MESSAGES/kdevreviewboard.mo
share/locale/sl/LC_MESSAGES/kdevsnippet.mo
share/locale/sl/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/sl/LC_MESSAGES/kdevsubversion.mo
share/locale/sl/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/sl/LC_MESSAGES/kdevtemplates_config.mo
share/locale/sl/LC_MESSAGES/kdevtestview.mo
share/locale/sl/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/sv/LC_MESSAGES/kdevappwizard.mo
share/locale/sv/LC_MESSAGES/kdevclassbrowser.mo
share/locale/sv/LC_MESSAGES/kdevcodeutils.mo
share/locale/sv/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/sv/LC_MESSAGES/kdevcvs.mo
share/locale/sv/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/sv/LC_MESSAGES/kdevdocumentview.mo
share/locale/sv/LC_MESSAGES/kdevexecute.mo
share/locale/sv/LC_MESSAGES/kdevexecutescript.mo
share/locale/sv/LC_MESSAGES/kdevexternalscript.mo
share/locale/sv/LC_MESSAGES/kdevfilemanager.mo
share/locale/sv/LC_MESSAGES/kdevfiletemplates.mo
share/locale/sv/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/sv/LC_MESSAGES/kdevgit.mo
share/locale/sv/LC_MESSAGES/kdevgrepview.mo
share/locale/sv/LC_MESSAGES/kdevkonsole.mo
share/locale/sv/LC_MESSAGES/kdevopenwith.mo
share/locale/sv/LC_MESSAGES/kdevpastebin.mo
share/locale/sv/LC_MESSAGES/kdevpatchreview.mo
share/locale/sv/LC_MESSAGES/kdevplatform.mo
share/locale/sv/LC_MESSAGES/kdevproblemreporter.mo
share/locale/sv/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/sv/LC_MESSAGES/kdevprojectfilter.mo
share/locale/sv/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/sv/LC_MESSAGES/kdevquickopen.mo
share/locale/sv/LC_MESSAGES/kdevreviewboard.mo
share/locale/sv/LC_MESSAGES/kdevsnippet.mo
share/locale/sv/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/sv/LC_MESSAGES/kdevsubversion.mo
share/locale/sv/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/sv/LC_MESSAGES/kdevtemplates_config.mo
share/locale/sv/LC_MESSAGES/kdevtestview.mo
share/locale/sv/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/th/LC_MESSAGES/kdevappwizard.mo
share/locale/th/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/th/LC_MESSAGES/kdevkonsole.mo
share/locale/th/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/uk/LC_MESSAGES/kdevappwizard.mo
share/locale/uk/LC_MESSAGES/kdevclassbrowser.mo
share/locale/uk/LC_MESSAGES/kdevcodeutils.mo
share/locale/uk/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/uk/LC_MESSAGES/kdevcvs.mo
share/locale/uk/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/uk/LC_MESSAGES/kdevdocumentview.mo
share/locale/uk/LC_MESSAGES/kdevexecute.mo
share/locale/uk/LC_MESSAGES/kdevexecutescript.mo
share/locale/uk/LC_MESSAGES/kdevexternalscript.mo
share/locale/uk/LC_MESSAGES/kdevfilemanager.mo
share/locale/uk/LC_MESSAGES/kdevfiletemplates.mo
share/locale/uk/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/uk/LC_MESSAGES/kdevgit.mo
share/locale/uk/LC_MESSAGES/kdevgrepview.mo
share/locale/uk/LC_MESSAGES/kdevkonsole.mo
share/locale/uk/LC_MESSAGES/kdevopenwith.mo
share/locale/uk/LC_MESSAGES/kdevpastebin.mo
share/locale/uk/LC_MESSAGES/kdevpatchreview.mo
share/locale/uk/LC_MESSAGES/kdevplatform.mo
share/locale/uk/LC_MESSAGES/kdevproblemreporter.mo
share/locale/uk/LC_MESSAGES/kdevprojectdashboard.mo
share/locale/uk/LC_MESSAGES/kdevprojectfilter.mo
share/locale/uk/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/uk/LC_MESSAGES/kdevquickopen.mo
share/locale/uk/LC_MESSAGES/kdevreviewboard.mo
share/locale/uk/LC_MESSAGES/kdevsnippet.mo
share/locale/uk/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/uk/LC_MESSAGES/kdevsubversion.mo
share/locale/uk/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/uk/LC_MESSAGES/kdevtemplates_config.mo
share/locale/uk/LC_MESSAGES/kdevtestview.mo
share/locale/uk/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/zh_CN/LC_MESSAGES/kdevappwizard.mo
share/locale/zh_CN/LC_MESSAGES/kdevclassbrowser.mo
share/locale/zh_CN/LC_MESSAGES/kdevcodeutils.mo
share/locale/zh_CN/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/zh_CN/LC_MESSAGES/kdevcvs.mo
share/locale/zh_CN/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/zh_CN/LC_MESSAGES/kdevdocumentview.mo
share/locale/zh_CN/LC_MESSAGES/kdevexecute.mo
share/locale/zh_CN/LC_MESSAGES/kdevexecutescript.mo
share/locale/zh_CN/LC_MESSAGES/kdevexternalscript.mo
share/locale/zh_CN/LC_MESSAGES/kdevfilemanager.mo
share/locale/zh_CN/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/zh_CN/LC_MESSAGES/kdevgit.mo
share/locale/zh_CN/LC_MESSAGES/kdevgrepview.mo
share/locale/zh_CN/LC_MESSAGES/kdevkonsole.mo
share/locale/zh_CN/LC_MESSAGES/kdevopenwith.mo
share/locale/zh_CN/LC_MESSAGES/kdevpastebin.mo
share/locale/zh_CN/LC_MESSAGES/kdevpatchreview.mo
share/locale/zh_CN/LC_MESSAGES/kdevplatform.mo
share/locale/zh_CN/LC_MESSAGES/kdevproblemreporter.mo
share/locale/zh_CN/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/zh_CN/LC_MESSAGES/kdevquickopen.mo
share/locale/zh_CN/LC_MESSAGES/kdevreviewboard.mo
share/locale/zh_CN/LC_MESSAGES/kdevsnippet.mo
share/locale/zh_CN/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/zh_CN/LC_MESSAGES/kdevsubversion.mo
share/locale/zh_CN/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/zh_CN/LC_MESSAGES/kdevvcsprojectintegration.mo
share/locale/zh_TW/LC_MESSAGES/kdevappwizard.mo
share/locale/zh_TW/LC_MESSAGES/kdevclassbrowser.mo
share/locale/zh_TW/LC_MESSAGES/kdevcodeutils.mo
share/locale/zh_TW/LC_MESSAGES/kdevcontextbrowser.mo
share/locale/zh_TW/LC_MESSAGES/kdevcvs.mo
share/locale/zh_TW/LC_MESSAGES/kdevdocumentswitcher.mo
share/locale/zh_TW/LC_MESSAGES/kdevdocumentview.mo
share/locale/zh_TW/LC_MESSAGES/kdevexecute.mo
share/locale/zh_TW/LC_MESSAGES/kdevexecutescript.mo
share/locale/zh_TW/LC_MESSAGES/kdevexternalscript.mo
share/locale/zh_TW/LC_MESSAGES/kdevfilemanager.mo
share/locale/zh_TW/LC_MESSAGES/kdevfiletemplates.mo
share/locale/zh_TW/LC_MESSAGES/kdevgenericprojectmanager.mo
share/locale/zh_TW/LC_MESSAGES/kdevgit.mo
share/locale/zh_TW/LC_MESSAGES/kdevgrepview.mo
share/locale/zh_TW/LC_MESSAGES/kdevkonsole.mo
share/locale/zh_TW/LC_MESSAGES/kdevopenwith.mo
share/locale/zh_TW/LC_MESSAGES/kdevpastebin.mo
share/locale/zh_TW/LC_MESSAGES/kdevpatchreview.mo
share/locale/zh_TW/LC_MESSAGES/kdevplatform.mo
share/locale/zh_TW/LC_MESSAGES/kdevproblemreporter.mo
share/locale/zh_TW/LC_MESSAGES/kdevprojectfilter.mo
share/locale/zh_TW/LC_MESSAGES/kdevprojectmanagerview.mo
share/locale/zh_TW/LC_MESSAGES/kdevquickopen.mo
share/locale/zh_TW/LC_MESSAGES/kdevreviewboard.mo
share/locale/zh_TW/LC_MESSAGES/kdevsnippet.mo
share/locale/zh_TW/LC_MESSAGES/kdevstandardoutputview.mo
share/locale/zh_TW/LC_MESSAGES/kdevsubversion.mo
share/locale/zh_TW/LC_MESSAGES/kdevswitchtobuddy.mo
share/locale/zh_TW/LC_MESSAGES/kdevtemplates_config.mo
share/locale/zh_TW/LC_MESSAGES/kdevtestview.mo
share/locale/zh_TW/LC_MESSAGES/kdevvcsprojectintegration.mo