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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Vít Pelčák <vit@pelcak.org>, 2011, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: kcachegrind\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2012-01-29 03:15+0100\n"
"PO-Revision-Date: 2012-05-04 16:32+0200\n"
"Last-Translator: Vit Pelcak <vit@pelcak.org>\n"
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Lokalize 1.4\n"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Klára Cihlářová"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "koty@seznam.cz"

#. i18n: file: kcachegrind/dumpselectionbase.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, DumpSelectionBase)
#: rc.cpp:5 kcachegrind/toplevel.cpp:300 kcachegrind/toplevel.cpp:523
msgid "Profile Dumps"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:24
#. i18n: ectx: property (text), widget (Q3ListView, listView1)
#: rc.cpp:8
msgid "Target"
msgstr "Cíl"

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

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:70
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:17
msgid "Options"
msgstr "Možnosti"

#. i18n: file: kcachegrind/dumpselectionbase.ui:87
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:20
msgid "Target command:"
msgstr "Cílový příkaz:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:100
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:23
msgid "Profiler options:"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:111
#. i18n: ectx: property (text), widget (Q3ListView, listView3)
#: rc.cpp:26
msgid "Option"
msgstr "Volba"

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:133
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:32
msgid "Trace"
msgstr "Trasování"

#. i18n: file: kcachegrind/dumpselectionbase.ui:146
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#. i18n: file: kcachegrind/dumpselectionbase.ui:730
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:35 rc.cpp:158
msgid "Jumps"
msgstr "Skoky"

#. i18n: file: kcachegrind/dumpselectionbase.ui:160
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:38
msgid "Instructions"
msgstr "Instrukce"

#. i18n: file: kcachegrind/dumpselectionbase.ui:175
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#. i18n: file: kcachegrind/dumpselectionbase.ui:745
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:41 rc.cpp:161
msgid "Events"
msgstr "Události"

#. i18n: file: kcachegrind/dumpselectionbase.ui:188
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:44
msgid "Full Cache"
msgstr ""

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:217
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:50
msgid "Collect"
msgstr "Sesbírat"

#. i18n: file: kcachegrind/dumpselectionbase.ui:230
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:53
msgid "At Startup"
msgstr "Při spuštění"

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:259
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:59
msgid "Skip"
msgstr "Přeskočit"

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:286
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#. i18n: file: kcachegrind/dumpselectionbase.ui:898
#. i18n: ectx: property (text), widget (Q3ListView, listView7)
#: rc.cpp:65 rc.cpp:194
msgid "Function"
msgstr "Funkce"

#. i18n: file: kcachegrind/dumpselectionbase.ui:301
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:68
msgid "Dump Profile"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:314
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:71
msgid "Every BBs"
msgstr ""

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

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:357
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:80
msgid "Zero Events"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:385
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:86
msgid "Separate"
msgstr "Oddělit"

#. i18n: file: kcachegrind/dumpselectionbase.ui:398
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:89
msgid "Threads"
msgstr "Vlákna"

#. i18n: file: kcachegrind/dumpselectionbase.ui:412
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:92
msgid "Recursions"
msgstr "Rekurze"

#. i18n: file: kcachegrind/dumpselectionbase.ui:426
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:95
msgid "Call Chain"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:452
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#: rc.cpp:98
msgid "Custom profiler options:"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:486
#. i18n: ectx: property (text), widget (QPushButton, pushButton2)
#: rc.cpp:101
msgid "Run New Profile"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:496
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:104
msgid "Info"
msgstr "Info"

#. i18n: file: kcachegrind/dumpselectionbase.ui:505
#. i18n: ectx: property (text), widget (QLabel, textLabel8)
#: rc.cpp:107
msgid "Dump reason:"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:518
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
#: rc.cpp:110
msgid "Event summary:"
msgstr "Souhrn událostí:"

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

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:554
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: rc.cpp:119
msgid "Miscellaneous:"
msgstr "Různé:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:588
#. i18n: ectx: property (text), widget (QPushButton, pushButton6)
#: rc.cpp:122
msgid "Show"
msgstr "Zobrazit"

#. i18n: file: kcachegrind/dumpselectionbase.ui:595
#. i18n: ectx: property (text), widget (QPushButton, pushButton5)
#: rc.cpp:125
msgid "Compare"
msgstr "Porovnat"

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

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

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:639
#. i18n: ectx: property (text), widget (Q3ListView, listView4_3)
#: rc.cpp:137
msgid "Counter"
msgstr "Počitadlo"

#. i18n: file: kcachegrind/dumpselectionbase.ui:661
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:143
msgid "Dumps Done"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:675
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:146
msgid "Is Collecting"
msgstr ""

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

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:716
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:155
msgid "Calls"
msgstr "Volání"

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:773
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:167
msgid "Distinct"
msgstr "Rozdílné"

#. i18n: file: kcachegrind/dumpselectionbase.ui:786
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:170
msgid "ELF Objects"
msgstr "ELF objekty"

#. i18n: file: kcachegrind/dumpselectionbase.ui:800
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:173
msgid "Functions"
msgstr "Funkce"

#. i18n: file: kcachegrind/dumpselectionbase.ui:814
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:176
msgid "Contexts"
msgstr "Kontexty"

#. i18n: file: kcachegrind/dumpselectionbase.ui:845
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: rc.cpp:179
msgid "Stack trace:"
msgstr ""

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

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

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

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:909
#. i18n: ectx: property (text), widget (Q3ListView, listView7)
#: rc.cpp:197
msgid "Location"
msgstr "Umístění"

#. i18n: file: kcachegrind/dumpselectionbase.ui:928
#. i18n: ectx: property (text), widget (QPushButton, pushButton7)
#: rc.cpp:200
msgid "Start"
msgstr "Spustit"

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

#. i18n: file: kcachegrind/dumpselectionbase.ui:958
#. i18n: ectx: property (text), widget (QPushButton, pushButton4)
#: rc.cpp:206
msgid "Dump"
msgstr "Vypsat"

#. i18n: file: kcachegrind/dumpselectionbase.ui:968
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:209
msgid "Messages"
msgstr "Zprávy"

#. i18n: file: kcachegrind/dumpselectionbase.ui:985
#. i18n: ectx: property (text), widget (QPushButton, pushButton9)
#: rc.cpp:212
msgid "Kill Run"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:1008
#. i18n: ectx: property (text), widget (QPushButton, pushButton8)
#: rc.cpp:215
msgid "Clear"
msgstr "Vyprázdnit"

#. i18n: file: kcachegrind/kcachegrindui.rc:4
#. i18n: ectx: Menu (file)
#: rc.cpp:218
msgid "&File"
msgstr "&Soubor"

#. i18n: file: kcachegrind/kcachegrindui.rc:10
#. i18n: ectx: Menu (view)
#: rc.cpp:221
msgid "&View"
msgstr "Po&hled"

#. i18n: file: kcachegrind/kcachegrindui.rc:15
#. i18n: ectx: Menu (layouts)
#: rc.cpp:224
msgid "&Layout"
msgstr "&Uspořádání"

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

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

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

#. i18n: file: kcachegrind/configdlgbase.ui:14
#. i18n: ectx: property (windowTitle), widget (QDialog, ConfigDlgBase)
#: rc.cpp:236
msgid "Configuration"
msgstr "Nastavení"

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

#. i18n: file: kcachegrind/configdlgbase.ui:34
#. i18n: ectx: property (text), widget (QLabel, TextLabel5)
#: rc.cpp:242
msgid "Maximum number of items in lists:"
msgstr "Maximální množství položek v seznamech:"

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

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

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

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

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

#. i18n: file: kcachegrind/configdlgbase.ui:158
#. i18n: ectx: property (text), widget (QLabel, TextLabel1)
#: rc.cpp:260
msgid "Cost Item Colors"
msgstr ""

#. i18n: file: kcachegrind/configdlgbase.ui:176
#. i18n: ectx: property (text), widget (QCheckBox, fileCheck)
#. i18n: file: kcachegrind/configdlgbase.ui:210
#. i18n: ectx: property (text), widget (QCheckBox, classCheck)
#. i18n: file: kcachegrind/configdlgbase.ui:224
#. i18n: ectx: property (text), widget (QCheckBox, objectCheck)
#: rc.cpp:263 rc.cpp:272 rc.cpp:275
msgid "Automatic"
msgstr "Automatické"

#. i18n: file: kcachegrind/configdlgbase.ui:183
#. i18n: ectx: property (text), widget (QLabel, TextLabel4)
#: rc.cpp:266
msgid "Object:"
msgstr "Objekt:"

#. i18n: file: kcachegrind/configdlgbase.ui:193
#. i18n: ectx: property (text), widget (QLabel, TextLabel4_2_2)
#: rc.cpp:269
msgid "Class:"
msgstr "Třída:"

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

#. i18n: file: kcachegrind/configdlgbase.ui:312
#. i18n: ectx: attribute (title), widget (QWidget, tab2)
#: rc.cpp:281
msgid "Annotations"
msgstr "Anotace"

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

#. i18n: file: kcachegrind/configdlgbase.ui:341
#. i18n: ectx: property (text), widget (QLabel, TextLabel1_2)
#: rc.cpp:287
msgid "Source Folders"
msgstr "Zdrojové adresáře"

#. i18n: file: kcachegrind/configdlgbase.ui:355
#. i18n: ectx: property (text), widget (KPushButton, addDirButton)
#: rc.cpp:290
msgid "Add"
msgstr "Přidat"

#. i18n: file: kcachegrind/configdlgbase.ui:362
#. i18n: ectx: property (text), widget (KPushButton, deleteDirButton)
#: rc.cpp:293
msgid "Delete"
msgstr "Smazat"

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

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

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

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

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

#: kcachegrind/main.cpp:47
msgid "Author/Maintainer"
msgstr "Autor/správce"

#: kcachegrind/main.cpp:54
msgid "Show information of this trace"
msgstr ""

#: kcachegrind/toplevel.cpp:269 kcachegrind/toplevel.cpp:497
msgid "Parts Overview"
msgstr ""

#: kcachegrind/toplevel.cpp:278
msgid "Top Cost Call Stack"
msgstr ""

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

#: kcachegrind/toplevel.cpp:294
msgid "Flat Profile"
msgstr ""

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

#: kcachegrind/toplevel.cpp:378
msgid "&Duplicate"
msgstr "&Duplikovat"

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

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

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

#: kcachegrind/toplevel.cpp:393
msgid "&Go to Next"
msgstr "&Přejít na další"

#: kcachegrind/toplevel.cpp:396
msgid "Go to Next Layout"
msgstr ""

#: kcachegrind/toplevel.cpp:400
msgid "&Go to Previous"
msgstr ""

#: kcachegrind/toplevel.cpp:403
msgid "Go to Previous Layout"
msgstr ""

#: kcachegrind/toplevel.cpp:407
msgid "&Restore to Default"
msgstr "&Obnovit výchozí"

#: kcachegrind/toplevel.cpp:409
msgid "Restore Layouts to Default"
msgstr ""

#: kcachegrind/toplevel.cpp:413
msgid "&Save as Default"
msgstr "Uložit &jako výchozí"

#: kcachegrind/toplevel.cpp:415
msgid "Save Layouts as Default"
msgstr ""

#: kcachegrind/toplevel.cpp:426
msgid "<b>New</b><p>Open new empty KCachegrind window.</p>"
msgstr "<b>Nový</b><p>Otvírá nové prázdné okno KCachegrind.</p>"

#: kcachegrind/toplevel.cpp:430
msgid "&Add..."
msgstr "Přid&at..."

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

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

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

#: kcachegrind/toplevel.cpp:446
msgid "&Export Graph"
msgstr "&Exportovat graf"

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

#: kcachegrind/toplevel.cpp:457
msgid "&Force Dump"
msgstr ""

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

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

#: kcachegrind/toplevel.cpp:500
msgid "Show/Hide the Parts Overview Dockable"
msgstr ""

#: kcachegrind/toplevel.cpp:505
msgid "Call Stack"
msgstr "Zásobník volání"

#: kcachegrind/toplevel.cpp:508
msgid "Show/Hide the Call Stack Dockable"
msgstr ""

#: kcachegrind/toplevel.cpp:513
msgid "Function Profile"
msgstr ""

#: kcachegrind/toplevel.cpp:516
msgid "Show/Hide the Function Profile Dockable"
msgstr ""

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

#: kcachegrind/toplevel.cpp:531
msgid "Relative"
msgstr "Relativní"

#: kcachegrind/toplevel.cpp:533
msgid "Show relative instead of absolute costs"
msgstr ""

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

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

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

#: kcachegrind/toplevel.cpp:563
msgid "Cycle Detection"
msgstr "Detekce cyklu"

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

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

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

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

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

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

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

#: kcachegrind/toplevel.cpp:620
msgid "&Up"
msgstr "Nahor&u"

#: kcachegrind/toplevel.cpp:661 kcachegrind/toplevel.cpp:1516
msgid "Primary Event Type"
msgstr ""

#: kcachegrind/toplevel.cpp:662
msgid "Select primary event type of costs"
msgstr ""

#: kcachegrind/toplevel.cpp:684 kcachegrind/toplevel.cpp:1521
msgid "Secondary Event Type"
msgstr ""

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

#: kcachegrind/toplevel.cpp:695
msgid "Grouping"
msgstr "Seskupování"

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

#: kcachegrind/toplevel.cpp:703
msgid "(No Grouping)"
msgstr ""

#: kcachegrind/toplevel.cpp:715
msgid "Split"
msgstr "Rozdělit"

#: kcachegrind/toplevel.cpp:718
msgid "Show two information panels"
msgstr "Zobrazit dva informační panely"

#: kcachegrind/toplevel.cpp:724
msgid "Split Horizontal"
msgstr "Rozdělit vodorovně"

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

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

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

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

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

#: kcachegrind/toplevel.cpp:1140 kcachegrind/toplevel.cpp:1469
msgid "(Hidden)"
msgstr "(Skrytý)"

#: kcachegrind/toplevel.cpp:1526
msgid "Hide"
msgstr "Skrýt"

#: kcachegrind/toplevel.cpp:1568
msgid "Show Absolute Cost"
msgstr ""

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

#: kcachegrind/toplevel.cpp:1603
msgid "Go Back"
msgstr "Jít zpět"

#: kcachegrind/toplevel.cpp:1604
msgid "Go Forward"
msgstr "Jít vpřed"

#: kcachegrind/toplevel.cpp:1605
msgid "Go Up"
msgstr "Přejít nahoru"

#: kcachegrind/toplevel.cpp:1817
#, kde-format
msgid "Layout Count: %1"
msgstr ""

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

#: kcachegrind/toplevel.cpp:1833
#, kde-format
msgid "Total %1 Cost: %2"
msgstr ""

#: kcachegrind/toplevel.cpp:1845
msgid "No event type selected"
msgstr ""

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

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

#: kcachegrind/toplevel.cpp:2116 kcachegrind/toplevel.cpp:2153
#: kcachegrind/toplevel.cpp:2190
msgid "(No Stack)"
msgstr ""

#: kcachegrind/toplevel.cpp:2122
msgid "(No next function)"
msgstr "(Žádná další funkce)"

#: kcachegrind/toplevel.cpp:2159
msgid "(No previous function)"
msgstr "(Žádná předchozí funkce)"

#: kcachegrind/toplevel.cpp:2195
msgid "(No Function Up)"
msgstr ""

#: kcachegrind/toplevel.cpp:2327 kcachegrind/toplevel.cpp:2341
#, kde-format
msgid "Loading %1"
msgstr "Načítání %1"

#: kcachegrind/toplevel.cpp:2335
#, kde-format
msgid "Error loading %1: %2"
msgstr ""

#: kcachegrind/configdlg.cpp:145 kcachegrind/configdlg.cpp:333
#: kcachegrind/configdlg.cpp:352
msgid "(always)"
msgstr "(vždy)"

#: kcachegrind/configdlg.cpp:360
msgid "Choose Source Folder"
msgstr "Vyberte zdrojovou složku"

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

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

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

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

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

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

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

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

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

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

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

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

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

#~ msgid "&OK"
#~ msgstr "&OK"

#~ msgid "&Cancel"
#~ msgstr "Z&rušit"

#~ msgid "Source Files"
#~ msgstr "Zdrojové soubory"

#~ msgid "C++ Classes"
#~ msgstr "C++ třídy"

#~ msgid "KCachegrind Configuration"
#~ msgstr "Konfigurace KCachegrind"