~ubuntu-branches/ubuntu/vivid/kde-l10n-cs/vivid-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
# 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>, 2010, 2011, 2013, 2014.
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: libkleopatra\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2014-04-08 08:21+0000\n"
"PO-Revision-Date: 2014-01-15 16:11+0100\n"
"Last-Translator: Vít Pelčák <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.5\n"

#: backends/chiasmus/chiasmusbackend.cpp:286
msgid "General"
msgstr "Obecné"

#: backends/chiasmus/chiasmusbackend.cpp:341
#: backends/chiasmus/chiasmusbackend.cpp:440
msgid "Chiasmus"
msgstr "Chiasmus"

#: backends/chiasmus/chiasmusbackend.cpp:386
msgid "Chiasmus command line tool"
msgstr "Příkazový řádek Chiasmus"

#: backends/chiasmus/chiasmusbackend.cpp:460
#: backends/chiasmus/chiasmusbackend.cpp:466
#: backends/chiasmus/chiasmusbackend.cpp:495
#: backends/qgpgme/qgpgmebackend.cpp:380
#, kde-format
msgid "Unsupported protocol \"%1\""
msgstr "Nepodporovaný protokol \"%1\""

#: backends/chiasmus/chiasmusbackend.cpp:482
#, kde-format
msgid "File \"%1\" does not exist or is not executable."
msgstr "Soubor \"%1\" neexistuje nebo není spustitelný."

#: backends/chiasmus/chiasmusjob.cpp:166
msgid "Output from chiasmus"
msgstr "Výstup chiasmus"

#: backends/chiasmus/chiasmusjob.cpp:208 ui/messagebox.cpp:257
#, kde-format
msgid "Encryption failed: %1"
msgstr "Šifrování selhalo: %1"

#: backends/chiasmus/chiasmusjob.cpp:209
#, kde-format
msgid "Decryption failed: %1"
msgstr "Dešifrování selhalo: %1"

#: backends/chiasmus/chiasmusjob.cpp:211
#, kde-format
msgid ""
"The following was received on stderr:\n"
"%1"
msgstr ""
"Na stderr bylo odesláno:\n"
"%1"

#: backends/chiasmus/chiasmuslibrary.cpp:75
#: backends/chiasmus/chiasmuslibrary.cpp:86
#, kde-format
msgid "Failed to load %1: %2"
msgstr "Nelze načíst %1: %2"

#: backends/chiasmus/chiasmuslibrary.cpp:87
msgid "Library does not contain the symbol \"Chiasmus\"."
msgstr "Knihovna neobsahuje symbol \"Chiasmus\"."

#: backends/chiasmus/obtainkeysjob.cpp:95
#, kde-format
msgid "Scanning directory %1..."
msgstr "Prohledává se adresář %1..."

#: backends/qgpgme/qgpgmebackend.cpp:89 ui/keyselectiondialog.cpp:256
#: ui/keyselectiondialog.cpp:258 ui/keyselectiondialog.cpp:265
#: ui/keyselectiondialog.cpp:267 ui/keyselectiondialog.cpp:268
msgid "unknown"
msgstr "neznámý"

#: backends/qgpgme/qgpgmebackend.cpp:330
msgid "GpgME"
msgstr "GpgME"

#: backends/qgpgme/qgpgmebackend.cpp:354
#, kde-format
msgid "GPGME was compiled without support for %1."
msgstr "GPGME bylo zkompilováno bez podpory pro %1."

#: backends/qgpgme/qgpgmebackend.cpp:356
#, kde-format
msgid "Engine %1 is not installed properly."
msgstr "Nástroj %1 není správně nainstalován."

#: backends/qgpgme/qgpgmebackend.cpp:358
#, kde-format
msgid "Engine %1 version %2 installed, but at least version %3 is required."
msgstr "Nainstalován nástroj %1 verze %2, ale je vyžadována nejméně verze %3."

#: backends/qgpgme/qgpgmebackend.cpp:362
#, kde-format
msgid "Unknown problem with engine for protocol %1."
msgstr "Neznámý problém pro protokol %1."

#: backends/qgpgme/qgpgmecryptoconfig.cpp:112
msgid "program terminated unexpectedly"
msgstr "program neočekávaně skončil"

#: backends/qgpgme/qgpgmecryptoconfig.cpp:114
msgid "program not found or cannot be started"
msgstr "program nelze nalézt nebo spustit"

#: backends/qgpgme/qgpgmecryptoconfig.cpp:117
#: backends/qgpgme/qgpgmenewcryptoconfig.cpp:97
#, kde-format
msgid "<qt>Failed to execute gpgconf:<p>%1</p></qt>"
msgstr "<qt>Spuštění gpgconf se nezdařilo:<p>%1</p></qt>"

#: backends/qgpgme/qgpgmecryptoconfig.cpp:367
msgid ""
"Could not start gpgconf.\n"
"Check that gpgconf is in the PATH and that it can be started."
msgstr ""
"Nelze spustit gpgconf\n"
"Zkontrolujte, zda je gpgconf v cestě (PATH) a zda jej lze spustit"

#: backends/qgpgme/qgpgmecryptoconfig.cpp:373
#: backends/qgpgme/qgpgmenewcryptoconfig.cpp:208
#, kde-format
msgid "Error from gpgconf while saving configuration: %1"
msgstr "Chyba v gpgconf při ukládání nastavení: %1"

#: backends/qgpgme/qgpgmekeylistjob.cpp:152
#: backends/qgpgme/qgpgmelistallkeysjob.cpp:154 ui/keyrequester.cpp:231
#: ui/keyselectiondialog.cpp:603
#, kde-format
msgid ""
"<qt><p>An error occurred while fetching the keys from the backend:</p><p><b>"
"%1</b></p></qt>"
msgstr ""
"<qt> <p>Nastala chyba při získávání klíčů z modulu:</p><p><b>%1</b></p></qt>"

#: backends/qgpgme/qgpgmeprogresstokenmapper.cpp:50
msgid "Generating DSA key..."
msgstr "Generuji DSA klíč..."

#: backends/qgpgme/qgpgmeprogresstokenmapper.cpp:54
msgid "Generating ElGamal key..."
msgstr "Generuji ElGamal klíč..."

#: backends/qgpgme/qgpgmeprogresstokenmapper.cpp:59
msgid "Searching for a large prime number..."
msgstr "Hledám nějaké velké prvočíslo..."

#: backends/qgpgme/qgpgmeprogresstokenmapper.cpp:63
msgid ""
"Waiting for new entropy from random number generator (you might want to "
"exercise the harddisks or move the mouse)..."
msgstr ""
"Čeká se na entropii z generátoru náhodných čísel (zkuste zatížit disk nebo "
"pohybovat myší)..."

#: backends/qgpgme/qgpgmeprogresstokenmapper.cpp:67
msgid "Please wait..."
msgstr "Čekejte prosím..."

#: backends/qgpgme/qgpgmeprogresstokenmapper.cpp:71
msgid ""
"Starting gpg-agent (you should consider starting a global instance "
"instead)..."
msgstr ""
"Spouští se gpg-agent (měli byste zvážit raději spuštění globální instance)..."

#: kleo/checksumdefinition.cpp:105
#, kde-format
msgid "Error in checksum definition %1: %2"
msgstr ""

#: kleo/checksumdefinition.cpp:150
#, kde-format
msgid "Cannot use both %f and | in '%1'"
msgstr ""

#: kleo/checksumdefinition.cpp:158
#, kde-format
msgid "Quoting error in '%1' entry"
msgstr ""

#: kleo/checksumdefinition.cpp:160
#, kde-format
msgid "'%1' too complex (would need shell)"
msgstr "'%1' příliš komplexní (byl by potřeba shell)"

#: kleo/checksumdefinition.cpp:163
#, kde-format
msgid "'%1' entry is empty/missing"
msgstr "'%1' položka je prázdná/chybějící"

#: kleo/checksumdefinition.cpp:170
#, kde-format
msgid "'%1' empty or not found"
msgstr "'%1' prázdný nebo nenalezen"

#: kleo/checksumdefinition.cpp:206
msgid "'id' entry is empty/missing"
msgstr ""

#: kleo/checksumdefinition.cpp:208
msgid "'output-file' entry is empty/missing"
msgstr ""

#: kleo/checksumdefinition.cpp:210
msgid "'file-patterns' entry is empty/missing"
msgstr ""

#: kleo/checksumdefinition.cpp:356
#, kde-format
msgid "Caught unknown exception in group %1"
msgstr "Zachycena neznámá výjimka ve skupině %1"

#: kleo/cryptobackendfactory.cpp:172
#, kde-format
msgid "While scanning for %1 support in backend %2:"
msgstr "Zjišťování podpory %1 v podpůrné vrstvě %2:"

#: kleo/dn.cpp:458
msgid "Common name"
msgstr "Obecné jméno"

#: kleo/dn.cpp:459
msgid "Surname"
msgstr "Příjmení"

#: kleo/dn.cpp:460
msgid "Given name"
msgstr "Jméno"

#: kleo/dn.cpp:461
msgid "Location"
msgstr "Umístění"

#: kleo/dn.cpp:462
msgid "Title"
msgstr "Titul"

#: kleo/dn.cpp:463
msgid "Organizational unit"
msgstr "Organizační jednotka"

#: kleo/dn.cpp:464
msgid "Organization"
msgstr "Organizace"

#: kleo/dn.cpp:465
msgid "Postal code"
msgstr "Směrovací číslo"

#: kleo/dn.cpp:466
msgid "Country code"
msgstr "Kód země"

#: kleo/dn.cpp:467
msgid "State or province"
msgstr "Stát nebo provincie"

#: kleo/dn.cpp:468
msgid "Domain component"
msgstr "Komponenta domény"

#: kleo/dn.cpp:469
msgid "Business category"
msgstr "Obchodní kategorie"

#: kleo/dn.cpp:470
msgid "Email address"
msgstr "E-mailová adresa"

#: kleo/dn.cpp:471
msgid "Mail address"
msgstr "Poštovní adresa"

#: kleo/dn.cpp:472
msgid "Mobile phone number"
msgstr "Číslo na mobil"

#: kleo/dn.cpp:473
msgid "Telephone number"
msgstr "Telefonní číslo"

#: kleo/dn.cpp:474
msgid "Fax number"
msgstr "Faxové číslo"

#: kleo/dn.cpp:475
msgid "Street address"
msgstr "Adresa"

#: kleo/dn.cpp:476
msgid "Unique ID"
msgstr "Unikátní ID"

#: kleo/enum.cpp:46
msgid "Inline OpenPGP (deprecated)"
msgstr "Vložen OpenPGP (zastaralé)"

#: kleo/enum.cpp:49
msgid "OpenPGP/MIME"
msgstr "OpenPGP/MIME"

#: kleo/enum.cpp:52
msgid "S/MIME"
msgstr "S/MIME"

#: kleo/enum.cpp:55
msgid "S/MIME Opaque"
msgstr "S/MIME Opaque"

#: kleo/enum.cpp:80
msgid "Any"
msgstr "Cokoliv"

#: kleo/enum.cpp:142
msgid "Never Encrypt"
msgstr "Nikdy nešifrovat"

#: kleo/enum.cpp:144
msgid "Always Encrypt"
msgstr "Vždy šifrovat"

#: kleo/enum.cpp:146
msgid "Always Encrypt If Possible"
msgstr "Šifrovat, je-li to možné"

#: kleo/enum.cpp:148 kleo/enum.cpp:200
msgid "Ask"
msgstr "Dotázat se"

#: kleo/enum.cpp:150 kleo/enum.cpp:202
msgid "Ask Whenever Possible"
msgstr "Dotázat se, je-li to možné"

#: kleo/enum.cpp:152
msgctxt "no specific preference"
msgid "<placeholder>none</placeholder>"
msgstr "<placeholder>nic</placeholder>"

#: kleo/enum.cpp:194
msgid "Never Sign"
msgstr "Nikdy nepodepisovat"

#: kleo/enum.cpp:196
msgid "Always Sign"
msgstr "Vždy podepisovat"

#: kleo/enum.cpp:198
msgid "Always Sign If Possible"
msgstr "Vždy podepisovat, je-li to možné"

#: kleo/enum.cpp:204
msgctxt "no specific preference"
msgid "<none>"
msgstr "<nic>"

#: kleo/hierarchicalkeylistjob.cpp:130 kleo/multideletejob.cpp:91
#, kde-format
msgctxt "progress info: \"%1 of %2\""
msgid "%1/%2"
msgstr "%1/%2"

#: kleo/keyfiltermanager.cpp:81
msgid "All Certificates"
msgstr "Všechny certifikáty"

#: kleo/keyfiltermanager.cpp:95
msgid "My Certificates"
msgstr "Moje certifikáty"

#: kleo/keyfiltermanager.cpp:112
msgid "Trusted Certificates"
msgstr "Důvěryhodné certifikáty"

#: kleo/keyfiltermanager.cpp:128
msgid "Other Certificates"
msgstr "Jiné certifikáty"

#: ui/cryptoconfigdialog.cpp:40
msgid "Configure GnuPG Backend"
msgstr ""

#: ui/cryptoconfigdialog.cpp:44
msgid "&Reset"
msgstr "O&bnovit"

#: ui/cryptoconfigmodule.cpp:155
msgid "GpgConf Error"
msgstr "Chyba v Gpgconf"

#: ui/cryptoconfigmodule.cpp:208
#, kde-format
msgid ""
"The gpgconf tool used to provide the information for this dialog does not "
"seem to be installed properly. It did not return any components. Try running "
"\"%1\" on the command line for more information."
msgstr ""

#: ui/cryptoconfigmodule.cpp:470
msgctxt ""
"Translate this to 'yes' or 'no' (use the English words!) depending on "
"whether your language uses Sentence style capitalisation in GUI labels (yes) "
"or not (no). Context: We get some backend strings in that have the wrong "
"capitalizaion (in English, at least) so we need to force the first character "
"to upper-case. It is this behaviour you can control for your language with "
"this translation."
msgid "yes"
msgstr "yes"

#: ui/cryptoconfigmodule.cpp:519
msgid "0 - None (no debugging at all)"
msgstr ""

#: ui/cryptoconfigmodule.cpp:520
msgid "1 - Basic (some basic debug messages)"
msgstr ""

#: ui/cryptoconfigmodule.cpp:521
msgid "2 - Advanced (more verbose debug messages)"
msgstr ""

#: ui/cryptoconfigmodule.cpp:522
msgid "3 - Expert (even more detailed messages)"
msgstr ""

#: ui/cryptoconfigmodule.cpp:523
msgid "4 - Guru (all of the debug messages you can get)"
msgstr ""

#: ui/cryptoconfigmodule.cpp:532
msgid "Set the debugging level to"
msgstr ""

#: ui/cryptoconfigmodule.cpp:857
msgid "Show..."
msgstr "Zobrazit..."

#: ui/cryptoconfigmodule.cpp:857 ui/cryptoconfigmodule.cpp:926
msgid "Edit..."
msgstr "Upravit..."

#: ui/cryptoconfigmodule.cpp:889
msgid "Configure LDAP Servers"
msgstr "Nastavit LDAP servery"

#: ui/cryptoconfigmodule.cpp:911
msgid "No server configured yet"
msgstr "Zatím nenastaven žádný server"

#: ui/cryptoconfigmodule.cpp:913
#, kde-format
msgid "1 server configured"
msgid_plural "%1 servers configured"
msgstr[0] "1 server byl nastaven"
msgstr[1] "%1 servery byly nastaveny"
msgstr[2] "%1 serverů bylo nastaveno"

#: ui/cryptoconfigmodule.cpp:930
msgid "Use keyserver at"
msgstr ""

#: ui/cryptoconfigmodule.cpp:1006
msgid "Configure Keyservers"
msgstr "Nastavit servery klíčů"

#: ui/directoryserviceswidget.cpp:65
msgctxt "default server name, keep it a valid domain name, ie. no spaces"
msgid "server"
msgstr "server"

#: ui/directoryserviceswidget.cpp:86
msgid "hkp"
msgstr "hkp"

#: ui/directoryserviceswidget.cpp:87
msgid "http"
msgstr "http"

#: ui/directoryserviceswidget.cpp:88
msgid "https"
msgstr "https"

#: ui/directoryserviceswidget.cpp:89
msgid "ftp"
msgstr "ftp"

#: ui/directoryserviceswidget.cpp:90
msgid "ftps"
msgstr "ftps"

#: ui/directoryserviceswidget.cpp:91
msgid "ldap"
msgstr "ldap"

#: ui/directoryserviceswidget.cpp:92
msgid "ldaps"
msgstr "ldaps"

#: ui/directoryserviceswidget.cpp:508
msgctxt "New X.509 Directory Server"
msgid "X.509"
msgstr "X.509"

#: ui/directoryserviceswidget.cpp:509
msgctxt "New OpenPGP Directory Server"
msgid "OpenPGP"
msgstr "OpenPGP"

#: ui/directoryserviceswidget.cpp:628
msgid "Scheme"
msgstr "Schéma"

#: ui/directoryserviceswidget.cpp:629
msgid "Server Name"
msgstr "Název serveru"

#: ui/directoryserviceswidget.cpp:630
msgid "Server Port"
msgstr "Port serveru"

#: ui/directoryserviceswidget.cpp:631
msgid "Base DN"
msgstr "Base DN"

#: ui/directoryserviceswidget.cpp:632
msgid "User Name"
msgstr "Uživatelské jméno"

#: ui/directoryserviceswidget.cpp:633
msgid "Password"
msgstr "Heslo"

#: ui/directoryserviceswidget.cpp:634
msgid "X.509"
msgstr "X.509"

#: ui/directoryserviceswidget.cpp:635
msgid "OpenPGP"
msgstr "OpenPGP"

#: ui/directoryserviceswidget.cpp:654
msgid "(read-only)"
msgstr "(pouze pro čtení)"

#: ui/directoryserviceswidget.cpp:656
#, kde-format
msgctxt "amended tooltip; %1: original tooltip"
msgid "%1 (read-only)"
msgstr "%1 (pouze pro čtení)"

#: ui/directoryserviceswidget.cpp:838
msgid ""
"Select the access protocol (scheme) that the directory service is available "
"through."
msgstr ""

#: ui/directoryserviceswidget.cpp:840
msgid ""
"Enter the name or IP address of the server hosting the directory service."
msgstr ""

#: ui/directoryserviceswidget.cpp:842
msgid ""
"<b>(Optional, the default is fine in most cases)</b> Pick the port number "
"the directory service is listening on."
msgstr ""

#: ui/directoryserviceswidget.cpp:845
msgid ""
"<b>(Only for LDAP)</b> Enter the base DN for this LDAP server to limit "
"searches to only that subtree of the directory."
msgstr ""

#: ui/directoryserviceswidget.cpp:848
msgid "<b>(Optional)</b> Enter your user name here, if needed."
msgstr ""

#: ui/directoryserviceswidget.cpp:850
msgid ""
"<b>(Optional, not recommended)</b> Enter your password here, if needed. Note "
"that the password will be saved in the clear in a config file in your home "
"directory."
msgstr ""

#: ui/directoryserviceswidget.cpp:854
msgid ""
"Check this column if this directory service is providing S/MIME (X.509) "
"certificates."
msgstr ""

#: ui/directoryserviceswidget.cpp:856
msgid ""
"Check this column if this directory service is providing OpenPGP "
"certificates."
msgstr ""

#. i18n: ectx: property (windowTitle), widget (QWidget, DirectoryServicesWidget)
#: ui/directoryserviceswidget.ui:14
msgid "Directory Services Configuration"
msgstr "Nastavení adresářových služeb"

#. i18n: ectx: property (text), widget (QLabel, x500LA)
#: ui/directoryserviceswidget.ui:26
msgid "Directory services:"
msgstr "Adresářové služby:"

#. i18n: ectx: property (whatsThis), widget (QTreeView, treeView)
#: ui/directoryserviceswidget.ui:35
msgid ""
"This is a list of all directory services that are configured for use with "
"X.509 and OpenPGP."
msgstr ""

#. i18n: ectx: property (toolTip), widget (QToolButton, newTB)
#: ui/directoryserviceswidget.ui:62
msgid "Click to add a service"
msgstr "Klikněte k přidání služby"

#. i18n: ectx: property (whatsThis), widget (QToolButton, newTB)
#: ui/directoryserviceswidget.ui:65
msgid ""
"Click this button to create a new directory service entry as a clone of the "
"currently selected one (or with default values, if no other is selected). "
"You can then configure details in the table on the left hand."
msgstr ""

#. i18n: ectx: property (text), widget (QToolButton, newTB)
#: ui/directoryserviceswidget.ui:68
msgid "New"
msgstr "Nový"

#. i18n: ectx: property (toolTip), widget (QToolButton, deleteTB)
#: ui/directoryserviceswidget.ui:90
msgid "Click to remove the currently selected service"
msgstr "Klikněte k odstranění právě zvolené služby"

#. i18n: ectx: property (whatsThis), widget (QToolButton, deleteTB)
#: ui/directoryserviceswidget.ui:93
msgid ""
"Click this button to remove the currently selected directory service. The "
"change will only take effect once you acknowledge the main configuration "
"dialog."
msgstr ""

#. i18n: ectx: property (text), widget (QToolButton, deleteTB)
#: ui/directoryserviceswidget.ui:96
msgid "Delete"
msgstr "Smazat"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, showUserAndPasswordCB)
#: ui/directoryserviceswidget.ui:126
msgid ""
"Use this option to switch display of username and password information on or "
"off in the above table."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, showUserAndPasswordCB)
#: ui/directoryserviceswidget.ui:129
msgid "Show user and password information"
msgstr "Zobrazit informaci o uživateli a heslu"

#: ui/dnattributeorderconfigwidget.cpp:74
msgid "Description"
msgstr "Popis"

#: ui/dnattributeorderconfigwidget.cpp:93
msgid "Available attributes:"
msgstr "Dostupné atributy:"

#: ui/dnattributeorderconfigwidget.cpp:94
msgid "Current attribute order:"
msgstr "Současné pořadí atributů:"

#: ui/dnattributeorderconfigwidget.cpp:117
msgid "All others"
msgstr "Vše ostatní"

#: ui/dnattributeorderconfigwidget.cpp:134
msgid "Move to top"
msgstr "Přesunout navrch"

#: ui/dnattributeorderconfigwidget.cpp:135
msgid "Move one up"
msgstr "Přesunout nahoru"

#: ui/dnattributeorderconfigwidget.cpp:136
msgid "Remove from current attribute order"
msgstr "Odstranit ze současného pořadí atributů"

#: ui/dnattributeorderconfigwidget.cpp:137
msgid "Add to current attribute order"
msgstr "Přidat do současného pořadí atributů"

#: ui/dnattributeorderconfigwidget.cpp:138
msgid "Move one down"
msgstr "Přesunout dolů"

#: ui/dnattributeorderconfigwidget.cpp:139
msgid "Move to bottom"
msgstr "Přesunout dospodu"

#: ui/keyapprovaldialog.cpp:85
msgid "<placeholder>none</placeholder>"
msgstr "<placeholder>nic</placeholder>"

#: ui/keyapprovaldialog.cpp:86
msgid "Never Encrypt with This Key"
msgstr "Tímto klíčem nikdy nešifrovat"

#: ui/keyapprovaldialog.cpp:87
msgid "Always Encrypt with This Key"
msgstr "Vždy šifrovat tímto klíčem"

#: ui/keyapprovaldialog.cpp:88
msgid "Encrypt Whenever Encryption is Possible"
msgstr "Šifrovat kdykoli je to možné"

#: ui/keyapprovaldialog.cpp:89
msgid "Always Ask"
msgstr "Vždy se dotázat"

#: ui/keyapprovaldialog.cpp:90
msgid "Ask Whenever Encryption is Possible"
msgstr "Dotázat se, kdykoli je šifrování možné"

#: ui/keyapprovaldialog.cpp:111
msgid "Encryption Key Approval"
msgstr "Schválení šifrovacího klíče"

#: ui/keyapprovaldialog.cpp:123
msgid "The following keys will be used for encryption:"
msgstr "Následující klíče budou použity pro šifrování:"

#: ui/keyapprovaldialog.cpp:143
msgid "Your keys:"
msgstr "Vaše klíče:"

#: ui/keyapprovaldialog.cpp:155
msgid "Recipient:"
msgstr "Příjemce:"

#: ui/keyapprovaldialog.cpp:160
msgid "Encryption keys:"
msgstr "Šifrovací klíče:"

#: ui/keyapprovaldialog.cpp:167
msgid "Encryption preference:"
msgstr "Přednost v šifrování:"

#: ui/keyrequester.cpp:123
msgid "Clear"
msgstr "Vyprázdnit"

#: ui/keyrequester.cpp:126
msgid "Change..."
msgstr "Změnit..."

#: ui/keyrequester.cpp:219 ui/keyselectiondialog.cpp:228
msgid "<placeholder>unknown</placeholder>"
msgstr "<placeholder>neznámý</placeholder>"

#: ui/keyrequester.cpp:236 ui/keyrequester.cpp:265 ui/keyrequester.cpp:289
#: ui/keyselectiondialog.cpp:575 ui/keyselectiondialog.cpp:608
msgid "Key Listing Failed"
msgstr "Výpis klíče selhal"

#: ui/keyrequester.cpp:263
msgid ""
"The OpenPGP backend does not support listing keys. Check your installation."
msgstr ""
"Tento OpenPGP modul nepodporuje výpis klíčů. Zkontrolujte si svou instalaci."

#: ui/keyrequester.cpp:287
msgid ""
"The S/MIME backend does not support listing keys. Check your installation."
msgstr ""
"Tento S/MIME modul nepodporuje výpis klíčů. Zkontrolujte si svou instalaci."

#: ui/keyrequester.cpp:398
msgid "OpenPGP Key Selection"
msgstr "Výběr klíče OpenPGP"

#: ui/keyrequester.cpp:399
msgid "Please select an OpenPGP key to use."
msgstr "Prosím vyberte OpenPGP klíč k použití."

#: ui/keyrequester.cpp:401
msgid "S/MIME Key Selection"
msgstr "Výběr S/MIME klíče"

#: ui/keyrequester.cpp:402
msgid "Please select an S/MIME key to use."
msgstr "Prosím zvolte, který S/MIME klíč použít."

#: ui/keyrequester.cpp:404
msgid "Key Selection"
msgstr "Výběr klíče"

#: ui/keyrequester.cpp:405
msgid "Please select an (OpenPGP or S/MIME) key to use."
msgstr "Prosím zvolte, který klíč (OpenPGP nebo S/MIME) použít."

#: ui/keyselectiondialog.cpp:204
msgid "Key ID"
msgstr "ID klíče"

#: ui/keyselectiondialog.cpp:205
msgid "User ID"
msgstr "ID uživatele"

#: ui/keyselectiondialog.cpp:249
msgid "never"
msgstr "nikdy"

#: ui/keyselectiondialog.cpp:252
#, kde-format
msgid ""
"OpenPGP key for %1\n"
"Created: %2\n"
"Expiry: %3\n"
"Fingerprint: %4"
msgstr ""
"OpenPGP klíč pro %1\n"
"Vytvořen: %2\n"
"Vyprší: %3\n"
"Otisk: %4"

#: ui/keyselectiondialog.cpp:260
#, kde-format
msgid ""
"S/MIME key for %1\n"
"Created: %2\n"
"Expiry: %3\n"
"Fingerprint: %4\n"
"Issuer: %5"
msgstr ""
"OpenPGP klíč pro %1\n"
"Vytvořen: %2\n"
"Vyprší: %3\n"
"Otisk: %4\n"
"Vydavatel: %5"

#: ui/keyselectiondialog.cpp:407
msgid "Search for &External Certificates"
msgstr "Vyhledat &externí certifikáty"

#: ui/keyselectiondialog.cpp:423
msgid "&Search for:"
msgstr "&Hledat:"

#: ui/keyselectiondialog.cpp:447
msgid "&Remember choice"
msgstr "Zapamatovat si výbě&r"

#: ui/keyselectiondialog.cpp:450
msgid ""
"<qt><p>If you check this box your choice will be stored and you will not be "
"asked again.</p></qt>"
msgstr ""
"<qt> <p>Pokud zaškrtnete toto políčko, bude vaše volba uložena a již "
"nebudete dotazováni.</p></qt>"

#: ui/keyselectiondialog.cpp:467
msgid "&Reread Keys"
msgstr "Znovu načíst &klíče"

#: ui/keyselectiondialog.cpp:468
msgid "&Start Certificate Manager"
msgstr "&Spustit správce certifikátů"

#: ui/keyselectiondialog.cpp:573
msgid "No backends found for listing keys. Check your installation."
msgstr "Nenalezen žádný modul pro výpis klíčů. Zkontrolujte si svou instalaci."

#: ui/keyselectiondialog.cpp:592
msgid "Could not start certificate manager; please check your installation."
msgstr ""
"Nelze spustit správce certifikátů; prosím zkontrolujte svoji instalaci."

#: ui/keyselectiondialog.cpp:594
msgid "Certificate Manager Error"
msgstr "Chyba správce certifikátů"

#: ui/keyselectiondialog.cpp:644
msgid "Checking selected keys..."
msgstr "Kontroluji vybrané klíče..."

#: ui/keyselectiondialog.cpp:644
msgid "Fetching keys..."
msgstr "Stahuji klíče..."

#: ui/keyselectiondialog.cpp:669
#, kde-format
msgid ""
"<qt>One backend returned truncated output.<p>Not all available keys are "
"shown</p></qt>"
msgid_plural ""
"<qt>%1 backends returned truncated output.<p>Not all available keys are "
"shown</p></qt>"
msgstr[0] ""
"<qt>Jedna podpůrná vrstva vrátila zkrácený výstup.<p>Ne všechny dostupné "
"klíče jsou zobrazeny</p></qt>"
msgstr[1] ""
"<qt>%1 podpůrné vrstvy vrátily zkrácený výstup.<p>Ne všechny dostupné klíče "
"jsou razenq</p></qt>"
msgstr[2] ""
"<qt>%1 podpůrných vrstev vrátilo zkrácený výstup.<p>Ne všechny dostupné "
"klíče jsou zobrazeny</p></qt>"

#: ui/keyselectiondialog.cpp:674
msgid "Key List Result"
msgstr "Výsledek výpisu klíčů"

#: ui/keyselectiondialog.cpp:781
msgid "Recheck Key"
msgstr "Znovu zkontrolovat klíč"

#: ui/messagebox.cpp:67
msgid "&Save to Disk..."
msgstr "&Uložit na disk..."

#: ui/messagebox.cpp:73
msgid "&Copy to Clipboard"
msgstr "Z&kopírovat do schránky..."

#: ui/messagebox.cpp:73
msgid "Copy Audit Log to Clipboard"
msgstr ""

#: ui/messagebox.cpp:78
msgid "&Show Audit Log"
msgstr "Zobrazit záznam Auditu"

#: ui/messagebox.cpp:88
msgid "View GnuPG Audit Log"
msgstr ""

#: ui/messagebox.cpp:136 ui/messagebox.cpp:138
msgid "Choose File to Save GnuPG Audit Log to"
msgstr ""

#: ui/messagebox.cpp:161
#, kde-format
msgid "Could not save to file \"%1\": %2"
msgstr ""

#: ui/messagebox.cpp:163
msgid "File Save Error"
msgstr "Chyba ukládání souboru"

#: ui/messagebox.cpp:201
msgid "Your system does not have support for GnuPG Audit Logs"
msgstr ""

#: ui/messagebox.cpp:202
msgid "System Error"
msgstr "Systémová chyba"

#: ui/messagebox.cpp:209
#, kde-format
msgid ""
"An error occurred while trying to retrieve the GnuPG Audit Log:\n"
"%1"
msgstr ""

#: ui/messagebox.cpp:211
msgid "GnuPG Audit Log Error"
msgstr ""

#: ui/messagebox.cpp:218
msgid "No GnuPG Audit Log available for this operation."
msgstr ""

#: ui/messagebox.cpp:219
msgid "No GnuPG Audit Log"
msgstr ""

#: ui/messagebox.cpp:237 ui/messagebox.cpp:242
msgid "GnuPG Audit Log Viewer"
msgstr ""

#: ui/messagebox.cpp:247
#, kde-format
msgid "Signing failed: %1"
msgstr "Podepisování selhalo: %1"

#: ui/messagebox.cpp:248
msgid "Signing successful"
msgstr "Podepisování úspěšné"

#: ui/messagebox.cpp:258
msgid "Encryption successful"
msgstr "Šifrování úspěšné"

#: ui/messagebox.cpp:275
msgid "Signing Result"
msgstr "Výsledek podepisování"

#: ui/messagebox.cpp:285
msgid "Signing Error"
msgstr "Chyba v podepisování"

#: ui/messagebox.cpp:295 ui/messagebox.cpp:315
msgid "Encryption Result"
msgstr "Výsledek šifrování"

#: ui/messagebox.cpp:305 ui/messagebox.cpp:325
msgid "Encryption Error"
msgstr "Chyba v šifrování"

#: ui/progressdialog.cpp:89
#, kde-format
msgid "%1: %2"
msgstr "%1: %2"