forked from chris2511/xca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxca_es.ts
5812 lines (5812 loc) · 205 KB
/
xca_es.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="es_ES">
<context>
<name></name>
<message>
<source>Done</source>
<translation type="vanished">Hecho</translation>
<extra-po-references>About#1</extra-po-references>
</message>
<message>
<source>CA Properties</source>
<translation type="vanished">Propiedades de la CA</translation>
<extra-po-references>CaProperties#1</extra-po-references>
</message>
<message>
<source>Use random Serial numbers</source>
<translation type="vanished">Usar números de Serie aleatorios</translation>
<extra-po-references>CaProperties#2</extra-po-references>
</message>
<message>
<source>Default template</source>
<translation type="vanished">Plantilla predeterminada</translation>
<extra-po-references>CaProperties#4</extra-po-references>
</message>
<message>
<source>Details of the Certificate</source>
<translation type="vanished">Detalles del Certificado</translation>
<extra-po-references>CertDetail#1</extra-po-references>
</message>
<message>
<source>S&tatus</source>
<translation type="vanished">Estado</translation>
<extra-po-references>CertDetail#2</extra-po-references>
</message>
<message>
<source>Serial</source>
<comment>CertDetail#3</comment>
<translation type="vanished">Número de serie</translation>
<extra-po-references>CertDetail#3</extra-po-references>
</message>
<message>
<source>The serial number of the certificate</source>
<translation type="vanished">El número de serie del certificado</translation>
<extra-po-references>CertDetail#4</extra-po-references>
</message>
<message>
<source>The internal name of the certificate in the database</source>
<translation type="vanished">El nombre interno del certificado en la base de datos</translation>
<extra-po-references>CertDetail#5</extra-po-references>
</message>
<message>
<source>Internal name</source>
<comment>CertDetail#6</comment>
<translation type="vanished">Nombre interno</translation>
<extra-po-references>CertDetail#6</extra-po-references>
</message>
<message>
<source>Signature algorithm</source>
<comment>CertDetail#7</comment>
<translation type="vanished">Firma</translation>
<extra-po-references>CertDetail#7</extra-po-references>
</message>
<message>
<source>Signature</source>
<comment>CertDetail#8</comment>
<translation type="vanished">Firma</translation>
<extra-po-references>CertDetail#8</extra-po-references>
</message>
<message>
<source>Key</source>
<comment>CertDetail#9</comment>
<translation type="vanished">Clave</translation>
<extra-po-references>CertDetail#9</extra-po-references>
</message>
<message>
<source>Fingerprints</source>
<translation type="vanished">Huellas digitales</translation>
<extra-po-references>CertDetail#10</extra-po-references>
</message>
<message>
<source>SHA1</source>
<translation type="vanished">SHA1</translation>
<extra-po-references>CertDetail#11</extra-po-references>
</message>
<message>
<source>MD5</source>
<translation type="vanished">MD5</translation>
<extra-po-references>CertDetail#12</extra-po-references>
</message>
<message>
<source>Validity</source>
<comment>CertDetail#15</comment>
<translation type="vanished">Validez</translation>
<extra-po-references>CertDetail#15</extra-po-references>
</message>
<message>
<source>The time since the certificate is valid</source>
<translation type="vanished">El momento desde el que el certificado es válido</translation>
<extra-po-references>CertDetail#16</extra-po-references>
</message>
<message>
<source>The time until the certificate is valid</source>
<translation type="vanished">El momento hasta el que el certificado es válido</translation>
<extra-po-references>CertDetail#17</extra-po-references>
</message>
<message>
<source>&Subject</source>
<translation type="vanished">As&unto</translation>
<extra-po-references>CertDetail#18</extra-po-references>
</message>
<message>
<source>Attributes</source>
<translation type="vanished">Atributos</translation>
<extra-po-references>CertDetail#20</extra-po-references>
</message>
<message>
<source>&Extensions</source>
<comment>CertDetail#21</comment>
<translation type="vanished">&Extensiones</translation>
<extra-po-references>CertDetail#21</extra-po-references>
</message>
<message>
<source>Show config</source>
<translation type="vanished">Mostrar configuración</translation>
<extra-po-references>CertDetail#22</extra-po-references>
</message>
<message>
<source>Show extensions</source>
<translation type="vanished">Mostrar extensiones</translation>
<extra-po-references>CertDetail#23</extra-po-references>
</message>
<message>
<source>Not available</source>
<comment>CertDetail#24</comment>
<translation type="vanished">No disponible</translation>
<extra-po-references>CertDetail#24</extra-po-references>
</message>
<message>
<source>Details of the certificate</source>
<translation type="vanished">Detalles del certificado</translation>
<extra-po-references>CertDetail#25</extra-po-references>
</message>
<message>
<source>Not trusted</source>
<comment>CertDetail#28</comment>
<translation type="vanished">No fiable</translation>
<extra-po-references>CertDetail#28</extra-po-references>
</message>
<message>
<source>Trusted</source>
<translation type="vanished">Fiable</translation>
<extra-po-references>CertDetail#29</extra-po-references>
</message>
<message>
<source>Revoked: </source>
<translation type="vanished">Revocado: </translation>
<extra-po-references>CertDetail#30</extra-po-references>
</message>
<message>
<source>Not valid</source>
<translation type="vanished">No válido</translation>
<extra-po-references>CertDetail#31</extra-po-references>
</message>
<message>
<source>Valid</source>
<translation type="vanished">Válido</translation>
<extra-po-references>CertDetail#32</extra-po-references>
</message>
<message>
<source>Details of the certificate signing request</source>
<translation type="vanished">Detalles de la solicitud</translation>
<extra-po-references>CertDetail#33</extra-po-references>
</message>
<message>
<source>Certificate renewal</source>
<translation type="vanished">Renovación de certificado</translation>
<extra-po-references>CertExtend#1</extra-po-references>
</message>
<message>
<source>Validity</source>
<comment>CertExtend#3</comment>
<translation type="vanished">Validez</translation>
<extra-po-references>CertExtend#3</extra-po-references>
</message>
<message>
<source>Not before</source>
<comment>CertExtend#4</comment>
<translation type="vanished">No antes de</translation>
<extra-po-references>CertExtend#4</extra-po-references>
</message>
<message>
<source>Not after</source>
<comment>CertExtend#5</comment>
<translation type="vanished">No después de</translation>
<extra-po-references>CertExtend#5</extra-po-references>
</message>
<message>
<source>Time range</source>
<comment>CertExtend#6</comment>
<translation type="vanished">Rango de tiempo</translation>
<extra-po-references>CertExtend#6</extra-po-references>
</message>
<message>
<source>Apply</source>
<comment>CertExtend#8</comment>
<translation type="vanished">Aplicar</translation>
<extra-po-references>CertExtend#8</extra-po-references>
</message>
<message>
<source>Days</source>
<comment>CertExtend#9</comment>
<translation type="vanished">Días</translation>
<extra-po-references>CertExtend#9</extra-po-references>
</message>
<message>
<source>Months</source>
<comment>CertExtend#10</comment>
<translation type="vanished">Meses</translation>
<extra-po-references>CertExtend#10</extra-po-references>
</message>
<message>
<source>Years</source>
<comment>CertExtend#11</comment>
<translation type="vanished">Años</translation>
<extra-po-references>CertExtend#11</extra-po-references>
</message>
<message>
<source>Midnight</source>
<comment>CertExtend#12</comment>
<translation type="vanished">Medianoche</translation>
<extra-po-references>CertExtend#12</extra-po-references>
</message>
<message>
<source>Double click for details</source>
<translation type="vanished">Haga doble click para obtener detalles</translation>
<extra-po-references>ClickLabel#1</extra-po-references>
</message>
<message>
<source>Signature</source>
<comment>CrlDetail#4</comment>
<translation type="vanished">Firma</translation>
<extra-po-references>CrlDetail#4</extra-po-references>
</message>
<message>
<source>Name</source>
<comment>CrlDetail#6</comment>
<translation type="vanished">Nombre</translation>
<extra-po-references>CrlDetail#6</extra-po-references>
</message>
<message>
<source>...</source>
<translation type="vanished">...</translation>
<extra-po-references>ExportDialog#1</extra-po-references>
</message>
<message>
<source>DER is a binary format of the key without encryption
PEM is a base64 encoded key with optional encryption
PKCS#8 is an encrypted official Key-exchange format</source>
<translation type="vanished">DER es un formato binario sin cifrado
PEM es un formato texto bas64 con cifrado opcional
PKCS#8 es un formato estandar de intercambio de claves</translation>
<extra-po-references>ExportKey#7</extra-po-references>
</message>
<message>
<source>Please enter the filename for the key.</source>
<translation type="vanished">Introduzca nombre de fichero que contendrá la clave.</translation>
<extra-po-references>ExportKey#8</extra-po-references>
</message>
<message>
<source>Key export</source>
<translation type="vanished">Exportar clave</translation>
<extra-po-references>ExportKey#10</extra-po-references>
</message>
<message>
<source>Name</source>
<comment>KeyDetail#1</comment>
<translation type="vanished">Nombre</translation>
<extra-po-references>KeyDetail#1</extra-po-references>
</message>
<message>
<source>Public Exponent</source>
<translation type="vanished">Exponente público</translation>
<extra-po-references>KeyDetail#7</extra-po-references>
</message>
<message>
<source>Keysize</source>
<comment>KeyDetail#8</comment>
<translation type="vanished">Tamaño de clave</translation>
<extra-po-references>KeyDetail#8</extra-po-references>
</message>
<message>
<source>Private Exponent</source>
<translation type="vanished">Exponente secreto</translation>
<extra-po-references>KeyDetail#9</extra-po-references>
</message>
<message>
<source>Modulus</source>
<translation type="vanished">Módulo</translation>
<extra-po-references>KeyDetail#10</extra-po-references>
</message>
<message>
<source>Not available</source>
<comment>KeyDetail#12</comment>
<translation type="vanished">Disponible</translation>
<extra-po-references>KeyDetail#12</extra-po-references>
</message>
<message>
<source>Available</source>
<translation type="vanished">Disponible</translation>
<extra-po-references>KeyDetail#15</extra-po-references>
</message>
<message>
<source>Private key</source>
<comment>KeyDetail#18</comment>
<translation type="vanished">Exponente secreto</translation>
<extra-po-references>KeyDetail#18</extra-po-references>
</message>
<message>
<source>&Import</source>
<comment>MainWindow#4</comment>
<translation type="vanished">Importar</translation>
<extra-po-references>MainWindow#4</extra-po-references>
</message>
<message>
<source>Cancel</source>
<comment>MainWindow#58</comment>
<translation type="vanished">Cancelar</translation>
<extra-po-references>MainWindow#58</extra-po-references>
</message>
<message>
<source>Password verify error, please try again</source>
<translation type="vanished">Contraeña incorrecta, inténtelo de nuevo</translation>
<extra-po-references>MainWindow#68</extra-po-references>
</message>
<message>
<source>Password</source>
<comment>MainWindow#69</comment>
<translation type="vanished">Contraseña</translation>
<extra-po-references>MainWindow#69</extra-po-references>
</message>
<message>
<source>Name</source>
<comment>NewKey#4</comment>
<translation type="vanished">Nombre</translation>
<extra-po-references>NewKey#4</extra-po-references>
</message>
<message>
<source>New Key</source>
<comment>NewKey#6</comment>
<translation type="vanished">Nueva clave</translation>
<extra-po-references>NewKey#6</extra-po-references>
</message>
<message>
<source>Keysize</source>
<comment>NewKey#8</comment>
<translation type="vanished">Tamaño de clave</translation>
<extra-po-references>NewKey#8</extra-po-references>
</message>
<message>
<source>Signature algorithm</source>
<comment>NewX509#16</comment>
<translation type="vanished">Firma</translation>
<extra-po-references>NewX509#16</extra-po-references>
</message>
<message>
<source>Subject</source>
<comment>NewX509#23</comment>
<translation type="vanished">Sujeto</translation>
<extra-po-references>NewX509#23</extra-po-references>
</message>
<message>
<source>Private key</source>
<comment>NewX509#36</comment>
<translation type="vanished">Exponente secreto</translation>
<extra-po-references>NewX509#36</extra-po-references>
</message>
<message>
<source>Validity</source>
<comment>NewX509#56</comment>
<translation type="vanished">Validez</translation>
<extra-po-references>NewX509#56</extra-po-references>
</message>
<message>
<source>Import</source>
<comment>db_crl#11</comment>
<translation type="vanished">Importar</translation>
<extra-po-references>db_crl#11</extra-po-references>
</message>
<message>
<source>Password</source>
<comment>db_key#4</comment>
<translation type="vanished">Contraseña</translation>
<extra-po-references>db_key#4</extra-po-references>
</message>
<message>
<source>New Key</source>
<comment>db_key#10</comment>
<translation type="vanished">Nueva clave</translation>
<extra-po-references>db_key#10</extra-po-references>
</message>
<message>
<source>Import</source>
<comment>db_key#11</comment>
<translation type="vanished">Importar</translation>
<extra-po-references>db_key#11</extra-po-references>
</message>
<message>
<source>Export</source>
<comment>db_key#15</comment>
<translation type="vanished">Exportar</translation>
<extra-po-references>db_key#15</extra-po-references>
</message>
<message>
<source>Change password</source>
<translation type="vanished">Cambiar contraseña</translation>
<extra-po-references>db_key#16</extra-po-references>
</message>
<message>
<source>Reset password</source>
<translation type="vanished">Restablecer la contraseña</translation>
<extra-po-references>db_key#17</extra-po-references>
</message>
<message>
<source>Change PIN</source>
<translation type="vanished">Cambiar PIN</translation>
<extra-po-references>db_key#18</extra-po-references>
</message>
<message>
<source>Import</source>
<comment>db_temp#9</comment>
<translation type="vanished">Importar</translation>
<extra-po-references>db_temp#9</extra-po-references>
</message>
<message>
<source>Export</source>
<comment>db_temp#11</comment>
<translation type="vanished">Importar</translation>
<extra-po-references>db_temp#11</extra-po-references>
</message>
<message>
<source>Import</source>
<comment>db_x509#21</comment>
<translation type="vanished">Importar</translation>
<extra-po-references>db_x509#21</extra-po-references>
</message>
<message>
<source>Export</source>
<comment>db_x509#27</comment>
<translation type="vanished">Exportar</translation>
<extra-po-references>db_x509#27</extra-po-references>
</message>
<message>
<source>Clipboard</source>
<comment>db_x509#28</comment>
<translation type="vanished">Portapapeles</translation>
<extra-po-references>db_x509#28</extra-po-references>
</message>
<message>
<source>File</source>
<comment>db_x509#29</comment>
<translation type="vanished">Archivo</translation>
<extra-po-references>db_x509#29</extra-po-references>
</message>
<message>
<source>Request</source>
<translation type="vanished">Solicitud</translation>
<extra-po-references>db_x509#30</extra-po-references>
</message>
<message>
<source>Template</source>
<comment>db_x509#33</comment>
<translation type="vanished">Plantilla</translation>
<extra-po-references>db_x509#33</extra-po-references>
</message>
<message>
<source>Delete</source>
<comment>db_x509#35</comment>
<translation type="vanished">Eliminar</translation>
<extra-po-references>db_x509#35</extra-po-references>
</message>
<message>
<source>Subject</source>
<comment>db_x509name#1</comment>
<translation type="vanished">Sujeto</translation>
<extra-po-references>db_x509name#1</extra-po-references>
</message>
<message>
<source>Signed</source>
<comment>db_x509req#1</comment>
<translation type="vanished">Firma</translation>
<extra-po-references>db_x509req#1</extra-po-references>
</message>
<message>
<source>Import</source>
<comment>db_x509req#9</comment>
<translation type="vanished">Importar</translation>
<extra-po-references>db_x509req#9</extra-po-references>
</message>
<message>
<source>Rename</source>
<comment>db_x509req#11</comment>
<translation type="vanished">Renombrar</translation>
<extra-po-references>db_x509req#11</extra-po-references>
</message>
<message>
<source>Show Details</source>
<comment>db_x509req#12</comment>
<translation type="vanished">Mostrar detalles</translation>
<extra-po-references>db_x509req#12</extra-po-references>
</message>
<message>
<source>Sign</source>
<comment>db_x509req#13</comment>
<translation type="vanished">Firma</translation>
<extra-po-references>db_x509req#13</extra-po-references>
</message>
<message>
<source>Export</source>
<comment>db_x509req#14</comment>
<translation type="vanished">Importar</translation>
<extra-po-references>db_x509req#14</extra-po-references>
</message>
<message>
<source>Password</source>
<comment>pass_info#1</comment>
<translation type="vanished">Contraseña</translation>
<extra-po-references>pass_info#1</extra-po-references>
</message>
<message>
<source>Cancel</source>
<comment>v3ext#5</comment>
<translation type="vanished">Cancelar</translation>
<extra-po-references>v3ext#5</extra-po-references>
</message>
</context>
<context>
<name>CaProperties</name>
<message>
<source>CA Properties</source>
<translation type="vanished">Propiedades de la CA</translation>
</message>
<message>
<location filename="../ui/CaProperties.ui" line="+14"/>
<source>Form</source>
<translation type="unfinished"></translation>
</message>
<message>
<location line="+6"/>
<source>Days until next CRL issuing</source>
<translation>Días hasta la emisión de CRL</translation>
</message>
<message>
<location line="+10"/>
<source>Default template</source>
<translation>Plantilla predeterminada</translation>
</message>
</context>
<context>
<name>CertDetail</name>
<message>
<location filename="../ui/CertDetail.ui" line="+30"/>
<location filename="../widgets/CertDetail.cpp" line="+112"/>
<source>Details of the Certificate</source>
<translation>Detalles del Certificado</translation>
</message>
<message>
<location line="+48"/>
<source>Status</source>
<translation>Estado</translation>
</message>
<message>
<location line="+28"/>
<source>Internal name</source>
<translation>Nombre interno</translation>
</message>
<message>
<location line="+7"/>
<source>The internal name of the certificate in the database</source>
<translation>El nombre interno del certificado en la base de datos</translation>
</message>
<message>
<location line="+7"/>
<source>Signature</source>
<translation>Firma</translation>
</message>
<message>
<location line="+25"/>
<source>Key</source>
<translation>Clave</translation>
</message>
<message>
<location line="+20"/>
<source>Serial</source>
<translation>Número de serie</translation>
</message>
<message>
<location line="+13"/>
<source>The serial number of the certificate</source>
<translation>El número de serie del certificado</translation>
</message>
<message>
<location line="+13"/>
<source>Fingerprints</source>
<translation>Huellas digitales</translation>
</message>
<message>
<location line="+12"/>
<source>MD5</source>
<translation>MD5</translation>
</message>
<message>
<location line="+13"/>
<source>An md5 hashsum of the certificate</source>
<translation>Un hash MD5 del certificado</translation>
</message>
<message>
<location line="+13"/>
<source>SHA1</source>
<translation>SHA1</translation>
</message>
<message>
<location line="+13"/>
<source>A SHA-1 hashsum of the certificate</source>
<translation>Un hash SHA-1 del certificado</translation>
</message>
<message>
<location line="+13"/>
<source>SHA256</source>
<translation>SHA256</translation>
</message>
<message>
<location line="+13"/>
<source>A SHA-256 hashsum of the certificate</source>
<translation>Un hash SHA-256 del certificado</translation>
</message>
<message>
<location line="+10"/>
<source>Validity</source>
<translation>Validez</translation>
</message>
<message>
<location line="+9"/>
<source>The time since the certificate is valid</source>
<translation>El momento desde el que el certificado es válido</translation>
</message>
<message>
<location line="+7"/>
<source>The time until the certificate is valid</source>
<translation>El momento hasta el que el certificado es válido</translation>
</message>
<message>
<location line="+34"/>
<source>Subject</source>
<translation>Sujeto</translation>
</message>
<message>
<location line="+13"/>
<source>Issuer</source>
<translation>Emisor</translation>
</message>
<message>
<location line="+13"/>
<source>Attributes</source>
<translation>Atributos</translation>
</message>
<message>
<location line="+10"/>
<source>Extensions</source>
<translation>Extensiones</translation>
</message>
<message>
<location line="+13"/>
<location filename="../widgets/CertDetail.cpp" line="-72"/>
<source>Show config</source>
<translation>Mostrar configuración</translation>
</message>
<message>
<location line="+8"/>
<source>Comment</source>
<translation>Comentarios</translation>
</message>
<message>
<location filename="../widgets/CertDetail.cpp" line="+4"/>
<source>Show extensions</source>
<translation>Mostrar extensiones</translation>
</message>
<message>
<location line="+22"/>
<source>Show public key</source>
<translation>Mostrar clave pública</translation>
</message>
<message>
<location line="+3"/>
<source>This key is not in the database.</source>
<translation>La clave no existe en la base de datos.</translation>
</message>
<message>
<location line="+4"/>
<source>Not available</source>
<translation>No disponible</translation>
</message>
<message>
<location line="+47"/>
<source>Signer unknown</source>
<translation>Firmante desconocido</translation>
</message>
<message>
<location line="+4"/>
<source>Self signed</source>
<translation>Autofirmado</translation>
</message>
<message>
<location line="+30"/>
<source>Revoked at %1</source>
<translation>Revocado el %1</translation>
</message>
<message>
<source>Revoked: </source>
<translation type="vanished">Revocado: </translation>
</message>
<message>
<location line="+5"/>
<source>Not valid</source>
<translation>No válido</translation>
</message>
<message>
<location line="+4"/>
<source>Valid</source>
<translation>Válido</translation>
</message>
<message>
<location line="+21"/>
<source>Details of the certificate signing request</source>
<translation>Detalles de la solicitud de certificado</translation>
</message>
</context>
<context>
<name>CertExtend</name>
<message>
<location filename="../ui/CertExtend.ui" line="+30"/>
<source>Certificate renewal</source>
<translation>Renovación de certificado</translation>
</message>
<message>
<location line="+44"/>
<source>This will create a new certificate as a copy of the old one with a new serial number and adjusted validity values.</source>
<translation>Esto creará un nuevo certificado como copia del antiguo con un nuevo número de serie y las fechas de validez modificadas.</translation>
</message>
<message>
<location line="+26"/>
<source>Validity</source>
<translation>Validez</translation>
</message>
<message>
<location line="+11"/>
<source>Not before</source>
<translation>No antes de</translation>
</message>
<message>
<location line="+7"/>
<source>Not after</source>
<translation>No después de</translation>
</message>
<message>
<location line="+26"/>
<source>Time range</source>
<translation>Rango de tiempo</translation>
</message>
<message>
<location line="+6"/>
<source>Local time</source>
<translation>Hora local</translation>
</message>
<message>
<location line="+8"/>
<source>Days</source>
<translation>Días</translation>
</message>
<message>
<location line="+5"/>
<source>Months</source>
<translation>Meses</translation>
</message>
<message>
<location line="+5"/>
<source>Years</source>
<translation>Años</translation>
</message>
<message>
<location line="+8"/>
<source>No well-defined expiration</source>
<translation>Caducidad sin definir</translation>
</message>
<message>
<location line="+7"/>
<source>Midnight</source>
<translation>Medianoche</translation>
</message>
<message>
<location line="+7"/>
<source>Apply</source>
<translation>Aplicar</translation>
</message>
<message>
<location line="+26"/>
<source>Revoke old certificate</source>
<translation>Revocar el certificado antiguo</translation>
</message>
<message>
<location line="+10"/>
<source>Replace old certificate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location line="+10"/>
<source>Keep serial number</source>
<translation>Mantener el número de serie</translation>
</message>
<message>
<location filename="../widgets/CertExtend.cpp" line="+43"/>
<source>The certificate will be earlier valid than the signer. This is probably not what you want.</source>
<translation>El certificado entrará en vigor antes que el certificado firmante. Probablemente no es lo que pretendes.</translation>
</message>
<message>
<location line="+2"/>
<location line="+22"/>
<source>Edit dates</source>
<translation>Modificar fechas</translation>
</message>
<message>
<location line="-21"/>
<location line="+22"/>
<source>Abort rollout</source>
<translation>Cancelar la emisión</translation>
</message>
<message>
<location line="-21"/>
<location line="+22"/>
<source>Continue rollout</source>
<translation>Continuar la emisión</translation>
</message>
<message>
<location line="-21"/>
<location line="+22"/>
<source>Adjust date and continue</source>
<translation>Ajustar fecha y continuar</translation>
</message>
<message>
<location line="-5"/>
<source>The certificate will be longer valid than the signer. This is probably not what you want.</source>
<translation>El certificado caducará después que el certificado firmante. Probablemente no es lo que pretendes.</translation>
</message>
</context>
<context>
<name>CertTreeView</name>
<message>
<location filename="../widgets/CertTreeView.cpp" line="+34"/>
<source>Import PKCS#12</source>
<translation>Importar PKCS#12</translation>
</message>
<message>
<location line="+1"/>
<source>Import from PKCS#7</source>
<translation>Importar desde PKCS#7</translation>
</message>
<message>
<location line="+29"/>
<source>Request</source>
<translation>Solicitud</translation>
</message>
<message>
<location line="+2"/>
<source>Security token</source>
<translation>Token de seguridad</translation>
</message>
<message>
<location line="+2"/>
<source>Other token</source>
<translation>Otro token</translation>
</message>
<message>
<location line="+4"/>
<source>Similar Certificate</source>
<translation>Certificado similar</translation>
</message>
<message>
<location line="+3"/>
<source>Delete from Security token</source>
<translation>Eliminar del Token de seguridad</translation>
</message>
<message>
<location line="+3"/>
<source>CA</source>
<translation>CA</translation>
</message>
<message>
<location line="+1"/>
<source>Properties</source>
<translation>Propiedades</translation>
</message>
<message>
<location line="+1"/>
<source>Generate CRL</source>
<translation>Generar CRL</translation>
</message>
<message>
<location line="+1"/>
<source>Manage revocations</source>
<translation>Gestionar revocaciones</translation>
</message>
<message>
<location line="+5"/>
<location line="+3"/>
<source>Renewal</source>
<translation>Renovación</translation>
</message>
<message>
<location line="+2"/>
<source>Revoke</source>
<translation>Revocar</translation>
</message>
<message>
<location line="+2"/>
<source>Unrevoke</source>
<translation>Deshacer revocación</translation>
</message>
<message>
<location line="+64"/>
<source>Plain View</source>
<translation>Vista Plana</translation>
</message>
<message>
<location line="+0"/>
<source>Tree View</source>
<translation>Vista de árbol</translation>
</message>
<message>
<location line="+29"/>
<source>days</source>
<translation>Días</translation>
</message>
<message>
<location line="+8"/>
<source>No template</source>
<translation>Sin plantilla</translation>
</message>
<message>
<location line="+5"/>
<source>CA Properties</source>
<translation>Propiedades de la CA</translation>
</message>
<message>
<location line="+42"/>
<source>Certificate export</source>
<translation>Exportar certificado</translation>
</message>
<message>
<location line="+1"/>
<source>X509 Certificates ( *.pem *.cer *.crt *.p12 *.pfx *.p7b )</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ClickLabel</name>
<message>
<location filename="../widgets/clicklabel.cpp" line="+37"/>
<source>Double click for details</source>
<translation>Haga doble click para obtener detalles</translation>
</message>
</context>
<context>
<name>CrlDetail</name>
<message>
<location filename="../ui/CrlDetail.ui" line="+30"/>
<source>Details of the Revocation list</source>
<translation>Detalles de la lista de revocación</translation>
</message>
<message>
<location line="+48"/>
<source>&Status</source>
<translation>E&stado</translation>
</message>
<message>
<location line="+66"/>
<source>Version</source>
<translation>Versión</translation>
</message>
<message>
<location line="+19"/>
<source>Signature</source>
<translation>Firma</translation>
</message>
<message>
<location line="+7"/>
<source>Signed by</source>
<translation>Firmante</translation>
</message>
<message>
<location line="+7"/>