~duplicity-team/duplicity/0.7-series

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
# Spanish translation for duplicity
# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
# This file is distributed under the same license as the duplicity package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: duplicity\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2018-02-23 13:24+0000\n"
"PO-Revision-Date: 2014-04-29 08:13+0000\n"
"Last-Translator: Paco Molinero <paco@byasl.com>\n"
"Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2018-02-23 21:08+0000\n"
"X-Generator: Launchpad (build 18561)\n"

#: ../bin/duplicity:133
msgid "Reuse configured PASSPHRASE as SIGN_PASSPHRASE"
msgstr "Reusar configurar PASSPHRASE como SIGN_PASSPHRASE"

#: ../bin/duplicity:140
msgid "Reuse configured SIGN_PASSPHRASE as PASSPHRASE"
msgstr "Reusar configurar SIGN_PASSPHRASE como PASSPHRASE"

#: ../bin/duplicity:179
msgid "PASSPHRASE variable not set, asking user."
msgstr "Variable PASSPHRASE no establecida, preguntar al usuario."

#: ../bin/duplicity:194
msgid "GnuPG passphrase for signing key:"
msgstr "Frase de paso GnuPG para clave de firmada:"

#: ../bin/duplicity:199
msgid "GnuPG passphrase:"
msgstr "Frase de contraseña GnuPG:"

#: ../bin/duplicity:204
msgid "Retype passphrase for signing key to confirm: "
msgstr ""
"Vuelva a teclear la frase de paso de la clave firmada para confirmar: "

#: ../bin/duplicity:206
msgid "Retype passphrase to confirm: "
msgstr "Repita la contraseña para confirmar: "

#: ../bin/duplicity:209
msgid "First and second passphrases do not match!  Please try again."
msgstr ""
"¡La primera y segunda contraseña no coinciden! Por favor inténtelo de nuevo."

#: ../bin/duplicity:216
msgid ""
"Cannot use empty passphrase with symmetric encryption!  Please try again."
msgstr ""
"¡No puede usar una contraseña en blanco con cifrado asimétrico! Por favor "
"inténtelo de nuevo."

#: ../bin/duplicity:273
#, python-format
msgid ""
"File %s complete in backup set.\n"
"Continuing restart on file %s."
msgstr ""
"El archivo %s está competo en el conjunto de respaldo.\n"
"Continuar la restauración en el archivo %s."

#: ../bin/duplicity:282
#, python-format
msgid ""
"File %s missing in backup set.\n"
"Continuing restart on file %s."
msgstr ""
"El archivo %s  falta en el conjunto de respaldo.\n"
"Reinicio continuo en el archivo %s."

#: ../bin/duplicity:331
#, python-format
msgid "File %s was corrupted during upload."
msgstr "El archivo %s se ha dañado en la carga."

#: ../bin/duplicity:364
msgid ""
"Restarting backup, but current encryption settings do not match original "
"settings"
msgstr ""
"Reiniciando copia de respaldo, pero la configuración actual de cifrado no "
"coincide con la configuración original"

#: ../bin/duplicity:387
#, python-format
msgid "Restarting after volume %s, file %s, block %s"
msgstr "Reiniciando tras volumen %s, archivo %s, bloque %s"

#: ../bin/duplicity:457
#, python-format
msgid "Processed volume %d"
msgstr "Se procesó el volumen %d"

#: ../bin/duplicity:606
msgid ""
"Fatal Error: Unable to start incremental backup.  Old signatures not found "
"and incremental specified"
msgstr ""
"Error Fatal: No se puede iniciar respaldo incremental. Firmas de edad y que "
"no se encuentran especificados incremental"

#: ../bin/duplicity:610
msgid "No signatures found, switching to full backup."
msgstr "Firmas no encontradas, cambiando a un backup completo."

#: ../bin/duplicity:624
msgid "Backup Statistics"
msgstr "Estadísticas de respaldo"

#: ../bin/duplicity:730
#, python-format
msgid "%s not found in archive - no files restored."
msgstr "No se encontró %s en el archivador; no se restauró ningún archivo."

#: ../bin/duplicity:734
msgid "No files found in archive - nothing restored."
msgstr "No se encontraron archivos en el archivador - nada que restaurar."

#: ../bin/duplicity:767
#, python-format
msgid "Processed volume %d of %d"
msgstr "Volumen procesado %d de %d"

#: ../bin/duplicity:801
#, python-format
msgid "Invalid data - %s hash mismatch for file:"
msgstr "datos no válidos - %s hash no coincide con archivo:"

#: ../bin/duplicity:804
#, python-format
msgid "Calculated hash: %s"
msgstr "hash calculado: %s"

#: ../bin/duplicity:805
#, python-format
msgid "Manifest hash: %s"
msgstr "Manifestar hass: %s"

#: ../bin/duplicity:848
#, python-format
msgid "Volume was signed by key %s, not %s"
msgstr "El volumen fue firmado por %s clave, no %s"

#: ../bin/duplicity:880
#, python-format
msgid "Verify complete: %s, %s."
msgstr "Verificación completa: %s, %s."

#: ../bin/duplicity:881
#, python-format
msgid "%d file compared"
msgid_plural "%d files compared"
msgstr[0] "%d archivo comparado"
msgstr[1] "%d archivos comparados"

#: ../bin/duplicity:883
#, python-format
msgid "%d difference found"
msgid_plural "%d differences found"
msgstr[0] "%d diferencia encontrada"
msgstr[1] "%d diferencias encontradas"

#: ../bin/duplicity:902
msgid "No extraneous files found, nothing deleted in cleanup."
msgstr "Ningún archivo raro encontrado, nada borrado al acabar."

#: ../bin/duplicity:907
msgid "Deleting this file from backend:"
msgid_plural "Deleting these files from backend:"
msgstr[0] "Eliminando este archivo del respaldo:"
msgstr[1] "Eliminando estos archivos de la copia de seguridad:"

#: ../bin/duplicity:918
msgid "Found the following file to delete:"
msgid_plural "Found the following files to delete:"
msgstr[0] "Encontrado el siguiente archivo a eliminar:"
msgstr[1] "Encontrados los siguientes archivos a eliminar:"

#: ../bin/duplicity:921
msgid "Run duplicity again with the --force option to actually delete."
msgstr ""
"Ejecutar duplicity de nuevo con la opción --foirce para eliminar realmente."

#: ../bin/duplicity:964
msgid "There are backup set(s) at time(s):"
msgstr "Hay conjuntos de respaldo con hora:"

#: ../bin/duplicity:966
msgid "Which can't be deleted because newer sets depend on them."
msgstr ""
"Que no se puede eliminar porque los nuevos conjuntos dependen de ellos."

#: ../bin/duplicity:970
msgid ""
"Current active backup chain is older than specified time.  However, it will "
"not be deleted.  To remove all your backups, manually purge the repository."
msgstr ""
"La cadena del respaldo activo actual es anterior a la hora especificada, por "
"lo que no se eliminará. Para eliminar todos sus respaldos, purgue "
"manualmente el repositiorio."

#: ../bin/duplicity:983
msgid "No old backup sets found, nothing deleted."
msgstr "No se encontraron respaldos. nada que eliminar."

#: ../bin/duplicity:986
msgid "Deleting backup chain at time:"
msgid_plural "Deleting backup chains at times:"
msgstr[0] "Borrando cadena de copias de seguridad en hora:"
msgstr[1] "Borrando cadena de copias de seguridad en horas:"

#: ../bin/duplicity:998
#, python-format
msgid "Deleting any incremental signature chain rooted at %s"
msgstr "Eliminando cualquier cadena de firmado incremental con origen en %s"

#: ../bin/duplicity:1000
#, python-format
msgid "Deleting any incremental backup chain rooted at %s"
msgstr "Eliminando cualquier copia de seguridad incremental con origen en %s"

#: ../bin/duplicity:1003
#, python-format
msgid "Deleting complete signature chain %s"
msgstr "Borrando cadenas de firmas completas %s"

#: ../bin/duplicity:1005
#, python-format
msgid "Deleting complete backup chain %s"
msgstr "Borrando cadena de copias de seguridad completas %s"

#: ../bin/duplicity:1011
msgid "Found old backup chain at the following time:"
msgid_plural "Found old backup chains at the following times:"
msgstr[0] ""
"Se encontró cadena de copias de seguridad antigua en la siguiente hora:"
msgstr[1] ""
"Se encontró cadena de copias de seguridad antigua en las siguientes horas:"

#: ../bin/duplicity:1015
msgid "Rerun command with --force option to actually delete."
msgstr ""
"Volviendo a ejecutar orden con la opción --force para eliminar realmente."

#: ../bin/duplicity:1092
#, python-format
msgid "Deleting local %s (not authoritative at backend)."
msgstr "Eliminación local %s (No es una autoridad en el procesamiento)"

#: ../bin/duplicity:1097
#, python-format
msgid "Unable to delete %s: %s"
msgstr "No se puede eliminar %s: %s"

#: ../bin/duplicity:1128 ../duplicity/dup_temp.py:266
#, python-format
msgid "Failed to read %s: %s"
msgstr "No se pudo leer %s: %s"

#: ../bin/duplicity:1142
#, python-format
msgid "Copying %s to local cache."
msgstr "Copiando %s a la caché local."

#: ../bin/duplicity:1190
msgid "Local and Remote metadata are synchronized, no sync needed."
msgstr ""
"Los metadatos en local y remoto están sincronizados, no es necesario "
"sincronizar."

#: ../bin/duplicity:1195
msgid "Synchronizing remote metadata to local cache..."
msgstr "Sincronizando metadatos remotos con la caché local..."

#: ../bin/duplicity:1207
msgid "Sync would copy the following from remote to local:"
msgstr "Sync copiaría lo siguiente de remoto a local:"

#: ../bin/duplicity:1210
msgid "Sync would remove the following spurious local files:"
msgstr "Sync eliminaría los siguientes archivos locales:"

#: ../bin/duplicity:1253
msgid "Unable to get free space on temp."
msgstr "Imposible conseguir espacio libre en temp."

#: ../bin/duplicity:1261
#, python-format
msgid "Temp space has %d available, backup needs approx %d."
msgstr ""
"Espacio temporal tiene %d disponibles, copias de seguridad necesitan "
"aproximadamente %d."

#: ../bin/duplicity:1264
#, python-format
msgid "Temp has %d available, backup will use approx %d."
msgstr "Temp tiene %d disponible, el respaldo usará aproximadamente %d."

#: ../bin/duplicity:1272
msgid "Unable to get max open files."
msgstr "No se puede obtener archivos de máxima apertura."

#: ../bin/duplicity:1276
#, python-format
msgid ""
"Max open files of %s is too low, should be >= 1024.\n"
"Use 'ulimit -n 1024' or higher to correct.\n"
msgstr ""
"El máximo de archivos abiertos %s es demasiado pequeño, debería ser >= "
"1.024.\n"
"Utilice «ulimit -n 1024» o más alto para corregirlo.\n"

#: ../bin/duplicity:1327
msgid ""
"RESTART: The first volume failed to upload before termination.\n"
"         Restart is impossible...starting backup from beginning."
msgstr ""
"REINICIAR: El primer volumen no se han cargado antes de la terminación.\n"
"         Reiniciar es imposible... iniciando respaldo desde el principio."

#: ../bin/duplicity:1333
#, python-format
msgid ""
"RESTART: Volumes %d to %d failed to upload before termination.\n"
"         Restarting backup at volume %d."
msgstr ""
"REINICIAR: Volúmenes %d a %d fallaron al cargar antes de terminar.\n"
"         Reiniciar copia de respaldo en el volumen %d."

#: ../bin/duplicity:1340
#, python-format
msgid ""
"RESTART: Impossible backup state: manifest has %d vols, remote has %d vols.\n"
"         Restart is impossible ... duplicity will clean off the last "
"partial\n"
"         backup then restart the backup from the beginning."
msgstr ""
"REINICIAR: Estado de copia de respaldo no posible: manifesto tiene %d vols, "
"remoto tiene %d vols.\n"
"         Reiniciar no es posible .. duplicity limpiará la última copia de "
"respaldo parcial\n"
"         y reiniciará la copia desde el principio."

#: ../bin/duplicity:1361
msgid ""
"\n"
"PYTHONOPTIMIZE in the environment causes duplicity to fail to\n"
"recognize its own backups.  Please remove PYTHONOPTIMIZE from\n"
"the environment and rerun the backup.\n"
"\n"
"See https://bugs.launchpad.net/duplicity/+bug/931175\n"
msgstr ""
"\n"
"PYTHONOPTIMIZE en el entorno causa que duplicity falle al\n"
"reconocer sus propias copias de seguridad. Elimine PYTHONOPTIMIZE\n"
"del entorno y vuelva a ejecutar la copia de seguridad.\n"
"\n"
"Consulte https://bugs.launchpad.net/duplicity/+bug/931175\n"

#: ../bin/duplicity:1384
#, python-format
msgid "Acquiring lockfile %s"
msgstr "Adquiriendo candado %s"

#: ../bin/duplicity:1442
#, python-format
msgid "Last %s backup left a partial set, restarting."
msgstr ""
"La última copia de seguridad %s dejó una configuración parcial, reiniciar."

#: ../bin/duplicity:1446
#, python-format
msgid "Cleaning up previous partial %s backup set, restarting."
msgstr ""
"Limpiar la configuración parcial de la copia de seguridad %s previa, "
"reiniciar."

#: ../bin/duplicity:1458
msgid "Last full backup date:"
msgstr "Fecha del último respaldo completo:"

#: ../bin/duplicity:1460
msgid "Last full backup date: none"
msgstr "Fecha del último respaldo completo: ninguna"

#: ../bin/duplicity:1462
msgid "Last full backup is too old, forcing full backup"
msgstr ""
"El último respaldo completo es demasiado viejo, lo que obligó a una copia de "
"seguridad completa"

#: ../bin/duplicity:1506
msgid ""
"When using symmetric encryption, the signing passphrase must equal the "
"encryption passphrase."
msgstr ""
"Al usar el cifrado simétrico, la contraseña de firmado debe coincidir con la "
"de cifrado."

#: ../bin/duplicity:1575
msgid "INT intercepted...exiting."
msgstr "INT interceptado... saliendo."

#: ../bin/duplicity:1583
#, python-format
msgid "GPG error detail: %s"
msgstr "Detalle de error GPG: %s"

#: ../bin/duplicity:1593
#, python-format
msgid "User error detail: %s"
msgstr "Detalle de error del usuario: %s"

#: ../bin/duplicity:1603
#, python-format
msgid "Backend error detail: %s"
msgstr "Detalle de error del motor: %s"

#: ../bin/rdiffdir:61 ../duplicity/commandline.py:259
#, python-format
msgid "Error opening file %s"
msgstr "Error al abrir el archivo %s"

#: ../bin/rdiffdir:128
#, python-format
msgid "File %s already exists, will not overwrite."
msgstr "El archivo %s ya existe y no se sobrescribirá."

#: ../duplicity/selection.py:119
#, python-format
msgid "Skipping socket %s"
msgstr "Omitiendo el zócalo %s"

#: ../duplicity/selection.py:123
#, python-format
msgid "Error initializing file %s"
msgstr "Error al inicializar el archivo %s"

#: ../duplicity/selection.py:127 ../duplicity/selection.py:152
#: ../duplicity/selection.py:459
#, python-format
msgid "Error accessing possibly locked file %s"
msgstr "Error al acceder a un archivo posiblemente bloqueado %s"

#: ../duplicity/selection.py:167
#, python-format
msgid "Warning: base %s doesn't exist, continuing"
msgstr "Aviso: %s base no existe, continuando"

#: ../duplicity/selection.py:170 ../duplicity/selection.py:188
#: ../duplicity/selection.py:191
#, python-format
msgid "Selecting %s"
msgstr "Seleccionando %s"

#: ../duplicity/selection.py:288
#, python-format
msgid ""
"Fatal Error: The file specification\n"
"    %s\n"
"cannot match any files in the base directory\n"
"    %s\n"
"Useful file specifications begin with the base directory or some\n"
"pattern (such as '**') which matches the base directory."
msgstr ""
"Error fatal: El archivo especificado\n"
"    %s\n"
"no coincide con ningún archivo del directorio principal\n"
"    %s\n"
"Las especificaciones de archivos útiles empiezan con el directorio\n"
"principal o pautas (tipo «**«) que coinciden con el directorio principal."

#: ../duplicity/selection.py:297
#, python-format
msgid ""
"Fatal Error while processing expression\n"
"%s"
msgstr ""
"Error fatal al procesar la expresión\n"
"%s"

#: ../duplicity/selection.py:307
#, python-format
msgid ""
"Last selection expression:\n"
"    %s\n"
"only specifies that files be included.  Because the default is to\n"
"include all files, the expression is redundant.  Exiting because this\n"
"probably isn't what you meant."
msgstr ""
"La última expresión elegida:\n"
"    %s\n"
"solo especifica qué archivos están incluidos. Porque la expresión de serie\n"
"incluye todos los archivos, es redundante. Salir porque probablemente\n"
"no es la opción elegida."

#: ../duplicity/selection.py:363
#, python-format
msgid "Reading globbing filelist %s"
msgstr "Leyendo listado de archivo del recuadro %s"

#: ../duplicity/selection.py:396
#, python-format
msgid "Error compiling regular expression %s"
msgstr "Error al compilar la expresión regular %s"

#: ../duplicity/selection.py:413
msgid ""
"Warning: exclude-device-files is not the first selector.\n"
"This may not be what you intended"
msgstr ""
"Aviso: exclude-device-files no es el primer selector.\n"
"Puede no ser la opción elegida."

#: ../duplicity/commandline.py:71
#, python-format
msgid ""
"Warning: Option %s is pending deprecation and will be removed in a future "
"release.\n"
"Use of default filenames is strongly suggested."
msgstr ""
"Aviso: la opción %s está pendiente de desaprobación y se quitará en una "
"versión futura.\n"
"El uso de nombres de archivo predeterminados es muy recomendable."

#: ../duplicity/commandline.py:78
#, python-format
msgid ""
"Warning: Option %s is pending deprecation and will be removed in a future "
"release.\n"
"--include-filelist and --exclude-filelist now accept globbing characters and "
"should be used instead."
msgstr ""
"Aviso: la opción %s está pendiente de ser obsoletada y se eliminará en una "
"versión futura.\n"
"--include-filelist y --exclude-filelist aceptan ahora caracteres de "
"englobamiento y se deberían usar en su lugar."

#: ../duplicity/commandline.py:88
#, python-format
msgid ""
"Warning: Option %s is pending deprecation and will be removed in a future "
"release.\n"
"On many GNU/Linux systems, stdin is represented by /dev/stdin and\n"
"--include-filelist=/dev/stdin or --exclude-filelist=/dev/stdin could\n"
"be used as a substitute."
msgstr ""
"Aviso: la opción %s está pendiente de ser obsoletada y se eliminará en una "
"versión futura.\n"
"En muchos sistemas GNU/Linux, stdin se representa por /dev/stdin y\n"
"se podría usar --include-filelist=/dev/stdin o --exclude-filelist=/dev/stdin "
"como\n"
"un sustituto."

#. TRANSL: Used in usage help to represent a Unix-style path name. Example:
#. --archive-dir <path>
#: ../duplicity/commandline.py:280 ../duplicity/commandline.py:290
#: ../duplicity/commandline.py:311 ../duplicity/commandline.py:385
#: ../duplicity/commandline.py:403 ../duplicity/commandline.py:595
#: ../duplicity/commandline.py:814
msgid "path"
msgstr "ruta"

#. TRANSL: Used in usage help to represent an ID for a GnuPG key. Example:
#. --encrypt-key <gpg_key_id>
#. TRANSL: Used in usage help to represent an ID for a hidden GnuPG key. Example:
#. --hidden-encrypt-key <gpg_key_id>
#. TRANSL: Used in usage help to represent an ID for a GnuPG key. Example:
#. --encrypt-key <gpg_key_id>
#: ../duplicity/commandline.py:306 ../duplicity/commandline.py:313
#: ../duplicity/commandline.py:409 ../duplicity/commandline.py:579
#: ../duplicity/commandline.py:787
msgid "gpg-key-id"
msgstr "gpg-key-id"

#. TRANSL: Used in usage help to represent a "glob" style pattern for
#. matching one or more files, as described in the documentation.
#. Example:
#. --exclude <shell_pattern>
#: ../duplicity/commandline.py:321 ../duplicity/commandline.py:434
#: ../duplicity/commandline.py:837
msgid "shell_pattern"
msgstr "shell_pattern"

#. TRANSL: Used in usage help to represent the name of a file. Example:
#. --log-file <filename>
#: ../duplicity/commandline.py:327 ../duplicity/commandline.py:336
#: ../duplicity/commandline.py:343 ../duplicity/commandline.py:436
#: ../duplicity/commandline.py:443 ../duplicity/commandline.py:456
#: ../duplicity/commandline.py:783
msgid "filename"
msgstr "nombre de archivo"

#. TRANSL: Used in usage help to represent a regular expression (regexp).
#: ../duplicity/commandline.py:350 ../duplicity/commandline.py:447
msgid "regular_expression"
msgstr "expresión regular"

#. TRANSL: Used in usage help to represent a time spec for a previous
#. point in time, as described in the documentation. Example:
#. duplicity remove-older-than time [options] target_url
#: ../duplicity/commandline.py:354 ../duplicity/commandline.py:397
#: ../duplicity/commandline.py:518 ../duplicity/commandline.py:869
msgid "time"
msgstr "hora"

#. TRANSL: Used in usage help. (Should be consistent with the "Options:"
#. header.) Example:
#. duplicity [full|incremental] [options] source_dir target_url
#: ../duplicity/commandline.py:405 ../duplicity/commandline.py:498
#: ../duplicity/commandline.py:521 ../duplicity/commandline.py:587
#: ../duplicity/commandline.py:802
msgid "options"
msgstr "opciones"

#: ../duplicity/commandline.py:420
#, python-format
msgid ""
"Running in 'ignore errors' mode due to %s; please re-consider if this was "
"not intended"
msgstr ""
"Ejecutando en modo «ignore errors» debido a %s; reconsidere esta opción si "
"no es su intención"

#. TRANSL: Used in usage help to represent an imap mailbox
#: ../duplicity/commandline.py:432
msgid "imap_mailbox"
msgstr "imap_mailbox"

#: ../duplicity/commandline.py:450
msgid "file_descriptor"
msgstr "file_descriptor"

#. TRANSL: Used in usage help to represent a desired number of
#. something. Example:
#. --num-retries <number>
#: ../duplicity/commandline.py:461 ../duplicity/commandline.py:483
#: ../duplicity/commandline.py:495 ../duplicity/commandline.py:504
#: ../duplicity/commandline.py:545 ../duplicity/commandline.py:550
#: ../duplicity/commandline.py:554 ../duplicity/commandline.py:623
#: ../duplicity/commandline.py:797
msgid "number"
msgstr "número"

#. TRANSL: Used in usage help (noun)
#: ../duplicity/commandline.py:464
msgid "backup name"
msgstr "nombre de respaldo"

#. TRANSL: noun
#: ../duplicity/commandline.py:563 ../duplicity/commandline.py:566
#: ../duplicity/commandline.py:768
msgid "command"
msgstr "orden"

#: ../duplicity/commandline.py:569
msgid "pyrax|cloudfiles"
msgstr ""

#: ../duplicity/commandline.py:590
msgid "pem formatted bundle of certificate authorities"
msgstr "paquete formateado pem de entidades de certificación"

#: ../duplicity/commandline.py:591
msgid "path to a folder with certificate authority files"
msgstr "ruta a una carpeta con archivos de autoridad de certificados"

#. TRANSL: Used in usage help. Example:
#. --timeout <seconds>
#. TRANSL: Used in usage help. Example:
#. --backend-retry-delay <seconds>
#. TRANSL: Used in usage help. Example:
#. --timeout <seconds>
#: ../duplicity/commandline.py:600 ../duplicity/commandline.py:629
#: ../duplicity/commandline.py:831
msgid "seconds"
msgstr "segundos"

#. TRANSL: abbreviation for "character" (noun)
#: ../duplicity/commandline.py:606 ../duplicity/commandline.py:765
msgid "char"
msgstr "carácter"

#: ../duplicity/commandline.py:731
#, python-format
msgid "Using archive dir: %s"
msgstr "Usando directorio de archivador: %s"

#: ../duplicity/commandline.py:732
#, python-format
msgid "Using backup name: %s"
msgstr "Usando nombre de copia de seguridad: %s"

#: ../duplicity/commandline.py:739
#, python-format
msgid "Command line error: %s"
msgstr "Error de línea de órdenes: %s"

#: ../duplicity/commandline.py:740
msgid "Enter 'duplicity --help' for help screen."
msgstr "Introduzca «duplicity --help» para tener ayuda en pantalla."

#. TRANSL: Used in usage help to represent a Unix-style path name. Example:
#. rsync://user[:password]@other_host[:port]//absolute_path
#: ../duplicity/commandline.py:753
msgid "absolute_path"
msgstr "ruta_absoluta"

#. TRANSL: Used in usage help. Example:
#. tahoe://alias/some_dir
#: ../duplicity/commandline.py:757
msgid "alias"
msgstr "alias"

#. TRANSL: Used in help to represent a "bucket name" for Amazon Web
#. Services' Simple Storage Service (S3). Example:
#. s3://other.host/bucket_name[/prefix]
#: ../duplicity/commandline.py:762
msgid "bucket_name"
msgstr "nombre_cubo"

#. TRANSL: Used in usage help to represent the name of a container in
#. Amazon Web Services' Cloudfront. Example:
#. cf+http://container_name
#: ../duplicity/commandline.py:773
msgid "container_name"
msgstr "nombre_contenedor"

#. TRANSL: noun
#: ../duplicity/commandline.py:776
msgid "count"
msgstr "recuento"

#. TRANSL: Used in usage help to represent the name of a file directory
#: ../duplicity/commandline.py:779
msgid "directory"
msgstr "directorio"

#. TRANSL: Used in usage help, e.g. to represent the name of a code
#. module. Example:
#. rsync://user[:password]@other.host[:port]::/module/some_dir
#: ../duplicity/commandline.py:792
msgid "module"
msgstr "módulo"

#. TRANSL: Used in usage help to represent an internet hostname. Example:
#. ftp://user[:password]@other.host[:port]/some_dir
#: ../duplicity/commandline.py:806
msgid "other.host"
msgstr "otro.host"

#. TRANSL: Used in usage help. Example:
#. ftp://user[:password]@other.host[:port]/some_dir
#: ../duplicity/commandline.py:810
msgid "password"
msgstr "contraseña"

#. TRANSL: Used in usage help to represent a TCP port number. Example:
#. ftp://user[:password]@other.host[:port]/some_dir
#: ../duplicity/commandline.py:818
msgid "port"
msgstr "puerto"

#. TRANSL: Used in usage help. This represents a string to be used as a
#. prefix to names for backup files created by Duplicity. Example:
#. s3://other.host/bucket_name[/prefix]
#: ../duplicity/commandline.py:823
msgid "prefix"
msgstr "prefijo"

#. TRANSL: Used in usage help to represent a Unix-style path name. Example:
#. rsync://user[:password]@other.host[:port]/relative_path
#: ../duplicity/commandline.py:827
msgid "relative_path"
msgstr "ruta_relativa"

#. TRANSL: Used in usage help to represent the name of a single file
#. directory or a Unix-style path to a directory. Example:
#. file:///some_dir
#: ../duplicity/commandline.py:842
msgid "some_dir"
msgstr "algun_dir"

#. TRANSL: Used in usage help to represent the name of a single file
#. directory or a Unix-style path to a directory where files will be
#. coming FROM. Example:
#. duplicity [full|incremental] [options] source_dir target_url
#: ../duplicity/commandline.py:848
msgid "source_dir"
msgstr "dir_origen"

#. TRANSL: Used in usage help to represent a URL files will be coming
#. FROM. Example:
#. duplicity [restore] [options] source_url target_dir
#: ../duplicity/commandline.py:853
msgid "source_url"
msgstr "url_origen"

#. TRANSL: Used in usage help to represent the name of a single file
#. directory or a Unix-style path to a directory. where files will be
#. going TO. Example:
#. duplicity [restore] [options] source_url target_dir
#: ../duplicity/commandline.py:859
msgid "target_dir"
msgstr "dir_objetivo"

#. TRANSL: Used in usage help to represent a URL files will be going TO.
#. Example:
#. duplicity [full|incremental] [options] source_dir target_url
#: ../duplicity/commandline.py:864
msgid "target_url"
msgstr "url_objetivo"

#. TRANSL: Used in usage help to represent a user name (i.e. login).
#. Example:
#. ftp://user[:password]@other.host[:port]/some_dir
#: ../duplicity/commandline.py:874
msgid "user"
msgstr "usuario"

#. TRANSL: account id for b2. Example: b2://account_id@bucket/
#: ../duplicity/commandline.py:877
msgid "account_id"
msgstr "id_cuenta"

#. TRANSL: application_key for b2.
#. Example: b2://account_id:application_key@bucket/
#: ../duplicity/commandline.py:881
msgid "application_key"
msgstr "clave_aplicación"

#. TRANSL: Header in usage help
#: ../duplicity/commandline.py:899
msgid "Backends and their URL formats:"
msgstr "Motores y sus formatos de URL:"

#. TRANSL: Header in usage help
#: ../duplicity/commandline.py:930
msgid "Commands:"
msgstr "Órdenes:"

#: ../duplicity/commandline.py:954
#, python-format
msgid ""
"Specified archive directory '%s' does not exist, or is not a directory"
msgstr "El directorio del archivador «%s» no existe, o no es un directorio"

#: ../duplicity/commandline.py:963
#, python-format
msgid ""
"Sign key should be an 8, 16 alt. 40 character hex string, like 'AA0E73D2'.\n"
"Received '%s' instead."
msgstr ""
"La clave de firma debería ser una cadena de 8, 16 o 40 caracteres "
"hexadecimales , como «AA0E732D2».\n"
"Se ha recibido «%s» en su lugar."

#: ../duplicity/commandline.py:1023
#, python-format
msgid ""
"Restore destination directory %s already exists.\n"
"Will not overwrite."
msgstr ""
"Restaurar directorio de destino %s ya existe.\n"
"No sobrescribir."

#: ../duplicity/commandline.py:1028
#, python-format
msgid "Verify directory %s does not exist"
msgstr "El directorio verificado %s no existe"

#: ../duplicity/commandline.py:1034
#, python-format
msgid "Backup source directory %s does not exist."
msgstr "El directorio de origen de respaldo %s no existe."

#: ../duplicity/commandline.py:1065
#, python-format
msgid "Command line warning: %s"
msgstr "Aviso de línea de órdenes: %s"

#: ../duplicity/commandline.py:1065
msgid ""
"Selection options --exclude/--include\n"
"currently work only when backing up,not restoring."
msgstr ""
"Las opciones de selección --exclude/--include\n"
"actualmente funcionan solo cuando se respalda no al restaurar."

#: ../duplicity/commandline.py:1101
#, python-format
msgid "GPG binary is %s, version %s"
msgstr "El binario de GPG es %s, versión %s"

#: ../duplicity/commandline.py:1129
#, python-format
msgid ""
"Bad URL '%s'.\n"
"Examples of URL strings are \"scp://user@host.net:1234/path\" and\n"
"\"file:///usr/local\".  See the man page for more information."
msgstr ""
"URL erróneo «%s».\n"
"Ejemplos de cadenas de URL son «scp://user@host.net:1234/path» \n"
"y «file:///usr/local». Ver el manual para más información."

#: ../duplicity/commandline.py:1154
msgid "Main action: "
msgstr "Acción principal: "

#: ../duplicity/backend.py:102
#, python-format
msgid "Import of %s %s"
msgstr "Importación de %s %s"

#: ../duplicity/backend.py:211
#, python-format
msgid "Could not initialize backend: %s"
msgstr "No se pudo inicializar el motor: %s"

#: ../duplicity/backend.py:375
#, python-format
msgid "Backtrace of previous error: %s"
msgstr "Volcado de pila del error anterior: %s"

#: ../duplicity/backend.py:390
#, python-format
msgid "Giving up after %s attempts. %s: %s"
msgstr "Desistiendo tras %s intentos. %s: %s"

#: ../duplicity/backend.py:394
#, python-format
msgid "Attempt %s failed. %s: %s"
msgstr "Intento %s fallido. %s: %s"

#: ../duplicity/backend.py:488
#, python-format
msgid "Reading results of '%s'"
msgstr "Leyendo resultados de «%s»"

#: ../duplicity/backend.py:514
#, python-format
msgid "Writing %s"
msgstr "Escribiendo %s"

#: ../duplicity/backend.py:555
#, python-format
msgid "File %s not found locally after get from backend"
msgstr "archivo %s no encontrado localmente tras obtenerlo del servidor"

#: ../duplicity/asyncscheduler.py:67
#, python-format
msgid "instantiating at concurrency %d"
msgstr "crear una instancia en la concurrencia %d"

#: ../duplicity/asyncscheduler.py:94
msgid "inserting barrier"
msgstr "insertando barrera"

#: ../duplicity/asyncscheduler.py:143
msgid "running task synchronously (asynchronicity disabled)"
msgstr "ejecución de tareas de forma sincrónica (asincronía desactivada)"

#: ../duplicity/asyncscheduler.py:149
msgid "scheduling task for asynchronous execution"
msgstr "programación de tareas para la ejecución asíncrona"

#: ../duplicity/asyncscheduler.py:178
msgid "task completed successfully"
msgstr "tarea completada satisfactoriamente"

#: ../duplicity/asyncscheduler.py:189
msgid ""
"a previously scheduled task has failed; propagating the result immediately"
msgstr ""
"una tarea planificada previamente falló; propagando el resultado "
"inmediatamente"

#: ../duplicity/asyncscheduler.py:212 ../duplicity/asyncscheduler.py:233
#, python-format
msgid "active workers = %d"
msgstr "trabajadores activos = %d"

#: ../duplicity/asyncscheduler.py:253
#, python-format
msgid "task execution done (success: %s)"
msgstr "ejecución de la tarea realizada (éxito: %s)"

#: ../duplicity/patchdir.py:80 ../duplicity/patchdir.py:85
#, python-format
msgid "Patching %s"
msgstr "Parcheando %s"

#: ../duplicity/patchdir.py:530
#, python-format
msgid "Error '%s' patching %s"
msgstr "Error «%s» parcheando %s"

#: ../duplicity/patchdir.py:605
#, python-format
msgid "Writing %s of type %s"
msgstr "Escribiendo %s del tipo %s"

#: ../duplicity/collections.py:158 ../duplicity/collections.py:172
#, python-format
msgid "BackupSet.delete: missing %s"
msgstr "BackupSet.delete: falta %s"

#: ../duplicity/collections.py:197
msgid "Fatal Error: No manifests found for most recent backup"
msgstr ""
"Error fatal: no se encontraron manifiestos para el respaldo más reciente"

#: ../duplicity/collections.py:206
msgid ""
"Fatal Error: Remote manifest does not match local one.  Either the remote "
"backup set or the local archive directory has been corrupted."
msgstr ""
"Error fatal: el manifiesto remoto no coincide con el local. Ni la "
"configuración de copia de seguridad remota o el directorio del archivo local "
"está dañado."

#: ../duplicity/collections.py:214
msgid "Fatal Error: Neither remote nor local manifest is readable."
msgstr "Error fatal: ni el manifiesto remoto ni el local son legibles"

#: ../duplicity/collections.py:225
#, python-format
msgid "Processing local manifest %s (%s)"
msgstr "Procesando manifiesto local %s (%s)"

#: ../duplicity/collections.py:237
#, python-format
msgid "Error processing remote manifest (%s): %s"
msgstr "Error al procesar el manifiesto remoto (%s): %s"

#: ../duplicity/collections.py:240
#, python-format
msgid "Processing remote manifest %s (%s)"
msgstr "Procesando manifiesto remoto %s (%s)"

#: ../duplicity/collections.py:323
msgid "Preferring Backupset over previous one!"
msgstr "Preferir la configuración de copia de seguridad previa"

#: ../duplicity/collections.py:326
#, python-format
msgid "Ignoring incremental Backupset (start_time: %s; needed: %s)"
msgstr ""
"Ignorar la configuración de copia de seguridad incremental (start_time: %s; "
"necesaria: %s)"

#: ../duplicity/collections.py:331
#, python-format
msgid "Added incremental Backupset (start_time: %s / end_time: %s)"
msgstr ""
"Añadida configuración de copia de seguridad incremental (start_time: %s / "
"end_time: %s)"

#: ../duplicity/collections.py:401
msgid "Chain start time: "
msgstr "Hora de inicio de la cadena: "

#: ../duplicity/collections.py:402
msgid "Chain end time: "
msgstr "Hora de terminación de la cadena: "

#: ../duplicity/collections.py:403
#, python-format
msgid "Number of contained backup sets: %d"
msgstr "Número de conjuntos de respaldo contenidos: %d"

#: ../duplicity/collections.py:405
#, python-format
msgid "Total number of contained volumes: %d"
msgstr "Número total de volúmenes contenidos: %d"

#: ../duplicity/collections.py:407
msgid "Type of backup set:"
msgstr "Tipo de conjunto de respaldo"

#: ../duplicity/collections.py:407
msgid "Time:"
msgstr "Hora:"

#: ../duplicity/collections.py:407
msgid "Num volumes:"
msgstr "Número de volúmenes:"

#: ../duplicity/collections.py:411
msgid "Full"
msgstr "Completo"

#: ../duplicity/collections.py:414
msgid "Incremental"
msgstr "Incremental"

#: ../duplicity/collections.py:474
msgid "local"
msgstr "local"

#: ../duplicity/collections.py:476
msgid "remote"
msgstr "remoto"

#: ../duplicity/collections.py:632
msgid "Collection Status"
msgstr "Estado de la colección"

#: ../duplicity/collections.py:634
#, python-format
msgid "Connecting with backend: %s"
msgstr "Conectar con el motor: %s"

#: ../duplicity/collections.py:636
#, python-format
msgid "Archive dir: %s"
msgstr "Directorio de archivador: %s"

#: ../duplicity/collections.py:639
#, python-format
msgid "Found %d secondary backup chain."
msgid_plural "Found %d secondary backup chains."
msgstr[0] "Se encontró %d cadena de respaldo secundaria"
msgstr[1] "Se encontraron %d cadenas de respaldo secundaria"

#: ../duplicity/collections.py:644
#, python-format
msgid "Secondary chain %d of %d:"
msgstr "Cadena secundaria %d de %d:"

#: ../duplicity/collections.py:650
msgid "Found primary backup chain with matching signature chain:"
msgstr ""
"Se encontró cadena de copia de seguridad primaria con cadena de firma "
"coincidente:"

#: ../duplicity/collections.py:654
msgid "No backup chains with active signatures found"
msgstr "No encontró cadenas con firmas activas"

#: ../duplicity/collections.py:657
#, python-format
msgid "Also found %d backup set not part of any chain,"
msgid_plural "Also found %d backup sets not part of any chain,"
msgstr[0] ""
"También encontró %d configuración de copia de seguridad no incluida en "
"niguna cadena,"
msgstr[1] ""
"También encontró %d configuraciones de copia de seguridad no incluidas en "
"niguna cadena,"

#: ../duplicity/collections.py:661
#, python-format
msgid "and %d incomplete backup set."
msgid_plural "and %d incomplete backup sets."
msgstr[0] "y %d conjunto de respaldo incompleto"
msgstr[1] "y %d conjuntos de respaldos incompletos"

#. TRANSL: "cleanup" is a hard-coded command, so do not translate it
#: ../duplicity/collections.py:666
msgid ""
"These may be deleted by running duplicity with the \"cleanup\" command."
msgstr "Esto se puede eliminar ejecutando duplicity con la orden «cleanup»"

#: ../duplicity/collections.py:669
msgid "No orphaned or incomplete backup sets found."
msgstr "No se han encontrado respaldos huérfanos o incompletos."

#: ../duplicity/collections.py:685
#, python-format
msgid "%d file exists on backend"
msgid_plural "%d files exist on backend"
msgstr[0] "%d archivo existe en la copia de seguridad"
msgstr[1] "%d archivos existen en la copia de seguridad"

#: ../duplicity/collections.py:695
#, python-format
msgid "%d file exists in cache"
msgid_plural "%d files exist in cache"
msgstr[0] "existe %d arcvhivo en cahé"
msgstr[1] "existen %d arcvhivos en cahé"

#: ../duplicity/collections.py:748
msgid ""
"Warning, discarding last backup set, because of missing signature file."
msgstr ""
"Aviso, descartando el último conjunto de respaldo, debido a la falta archivo "
"de firma."

#: ../duplicity/collections.py:771
msgid "Warning, found the following local orphaned signature file:"
msgid_plural "Warning, found the following local orphaned signature files:"
msgstr[0] "Aviso, encontró el siguiente archivo huérfano local con firma:"
msgstr[1] ""
"Aviso, encontró los siguientes archivos huérfanos locales con firma:"

#: ../duplicity/collections.py:780
msgid "Warning, found the following remote orphaned signature file:"
msgid_plural "Warning, found the following remote orphaned signature files:"
msgstr[0] "Aviso, encontró el siguiente archivo huérfano remoto con firma:"
msgstr[1] ""
"Aviso, encontró los siguientes archivos huérfanos remotos con firma:"

#: ../duplicity/collections.py:789
msgid "Warning, found signatures but no corresponding backup files"
msgstr ""
"Aviso, se encontraron firmas pero no coinciden con los archivos de copia de "
"seguridad"

#: ../duplicity/collections.py:793
msgid ""
"Warning, found incomplete backup sets, probably left from aborted session"
msgstr ""
"Aviso, encontró conjuntos de copia de seguridad incompletos, probablemente "
"de la sesión abortada"

#: ../duplicity/collections.py:797
msgid "Warning, found the following orphaned backup file:"
msgid_plural "Warning, found the following orphaned backup files:"
msgstr[0] "Aviso, se encuentra el siguiente archivo de respaldo huérfano:"
msgstr[1] ""
"Aviso, se encuentran los siguientes archivos de copia de seguridad huérfanos:"

#: ../duplicity/collections.py:814
#, python-format
msgid "Extracting backup chains from list of files: %s"
msgstr "Extrayendo cadenas de respaldo de la lista de archivos: %s"

#: ../duplicity/collections.py:825
#, python-format
msgid "File %s is part of known set"
msgstr "El archivo %s es parte del conjunto conocido"

#: ../duplicity/collections.py:828
#, python-format
msgid "File %s is not part of a known set; creating new set"
msgstr ""
"El archivo %s no es parte de un conjunto conocido; creando un conjunto nuevo"

#: ../duplicity/collections.py:833
#, python-format
msgid "Ignoring file (rejected by backup set) '%s'"
msgstr "Ignorando archivo (rechazado por el conjunto) «%s»"

#: ../duplicity/collections.py:849
#, python-format
msgid "Found backup chain %s"
msgstr "Se encontró una cadena de respaldo %s"

#: ../duplicity/collections.py:854
#, python-format
msgid "Added set %s to pre-existing chain %s"
msgstr "conjunto %s añadido a la cadena %s preexistente"

#: ../duplicity/collections.py:858
#, python-format
msgid "Found orphaned set %s"
msgstr "Se encontró un conjunto huérfano %s"

#: ../duplicity/collections.py:1012
#, python-format
msgid ""
"No signature chain for the requested time. Using oldest available chain, "
"starting at time %s."
msgstr ""
"No hay cadena de firmas disponibles para la hora solicitada. Se está usando "
"la cadena más antigua disponible, que comienza en %s."

#: ../duplicity/robust.py:61
#, python-format
msgid "Error listing directory %s"
msgstr "Error al escuchar el directorio %s"

#: ../duplicity/diffdir.py:108 ../duplicity/diffdir.py:398
#, python-format
msgid "Error %s getting delta for %s"
msgstr "Error %s consiguiendo el delta para %s"

#: ../duplicity/diffdir.py:122
#, python-format
msgid "Getting delta of %s and %s"
msgstr "Consiguiendo el delta de %s y %s"

#: ../duplicity/diffdir.py:167
#, python-format
msgid "A %s"
msgstr "A %s"

#: ../duplicity/diffdir.py:174
#, python-format
msgid "M %s"
msgstr "M %s"

#: ../duplicity/diffdir.py:196
#, python-format
msgid "Comparing %s and %s"
msgstr "Comparando %s y %s"

#: ../duplicity/diffdir.py:204
#, python-format
msgid "D %s"
msgstr "D %s"

#: ../duplicity/lazy.py:334
#, python-format
msgid "Warning: oldindex %s >= newindex %s"
msgstr "Aviso: índice antiguo %s >= nuevo índice %s"

#: ../duplicity/lazy.py:409
#, python-format
msgid "Error '%s' processing %s"
msgstr "Error «%s» procesando %s"

#: ../duplicity/lazy.py:419
#, python-format
msgid "Skipping %s because of previous error"
msgstr "Omitiendo %s debido al error anterior"

#: ../duplicity/backends/giobackend.py:110
#, python-format
msgid "Connection failed, please check your password: %s"
msgstr "Falló la conexión, compruebe su contraseña: %s"

#: ../duplicity/backends/multibackend.py:85
#, python-format
msgid "MultiBackend: Could not parse query string %s: %s "
msgstr "MultBackend: no se pudo analizar la cadena de consulta %s: %s "

#: ../duplicity/backends/multibackend.py:94
#, python-format
msgid "MultiBackend: Invalid query string %s: more than one value for %s"
msgstr ""
"MultBackend: cadena de consulta no válida %s: más de un valor para %s"

#: ../duplicity/backends/multibackend.py:99
#, python-format
msgid "MultiBackend: Invalid query string %s: unknown parameter %s"
msgstr ""
"MultBackend: cadena de consulta no válida %s: parámetro desconocido %s"

#: ../duplicity/backends/multibackend.py:149
#: ../duplicity/backends/multibackend.py:154
#, python-format
msgid "MultiBackend: illegal value for %s: %s"
msgstr "MultBackend: valor no permitido para %s: %s"

#: ../duplicity/backends/multibackend.py:162
#, python-format
msgid "MultiBackend: Url %s"
msgstr "MultiBackend: Url %s"

#: ../duplicity/backends/multibackend.py:166
#, python-format
msgid "MultiBackend: Could not load config file %s: %s "
msgstr "MultBackend: no se pudo cargar el archivo de configuración %s: %s "

#: ../duplicity/backends/multibackend.py:175
#, python-format
msgid "MultiBackend: use store %s"
msgstr "MultiBackend: usar almacén %s"

#: ../duplicity/backends/multibackend.py:180
#, python-format
msgid "MultiBackend: set env %s = %s"
msgstr "MultiBackend: set env %s = %s"

#: ../duplicity/backends/multibackend.py:206
#, python-format
msgid "MultiBackend: _put: write to store #%s (%s)"
msgstr "MultiBackend: _put: escribir en almacén #%s (%s)"

#: ../duplicity/backends/multibackend.py:219
#, python-format
msgid ""
"MultiBackend: failed to write to store #%s (%s), try #%s, Exception: %s"
msgstr ""
"MultiBackend: falló al escribir en almacén #%s (%s), intenta #%s, Excepción: "
"%s"

#: ../duplicity/backends/multibackend.py:226
#, python-format
msgid "MultiBackend: failed to write %s. Aborting process."
msgstr "MultiBackend: falló al escribir %s. Abortando el proceso."

#: ../duplicity/backends/multibackend.py:233
#, python-format
msgid ""
"MultiBackend: failed to write %s. Tried all backing stores and none succeeded"
msgstr ""
"MultiBackend: falló al escribir %s. Se probaron todos los almacenes de "
"copias y ninguno funcionó"

#: ../duplicity/backends/multibackend.py:250
#, python-format
msgid "MultiBackend: failed to get %s to %s from %s"
msgstr "MultiBackend: falló al obtener %s a %s de %s"

#: ../duplicity/backends/multibackend.py:253
#, python-format
msgid ""
"MultiBackend: failed to get %s. Tried all backing stores and none succeeded"
msgstr ""
"MultiBackend: falló al obtener %s. Se probaron todos los almacenes de copias "
"y ninguno funcionó"

#: ../duplicity/backends/multibackend.py:262
#, python-format
msgid "MultiBackend: list from %s: %s"
msgstr "MultiBackend: lista de %s: %s"

#: ../duplicity/backends/multibackend.py:268
#, python-format
msgid "MultiBackend: combined list: %s"
msgstr "MultiBackend: lista combinada: %s"

#: ../duplicity/backends/multibackend.py:290
#, python-format
msgid "MultiBackend: failed to delete %s from %s"
msgstr "MultiBackend: falló al eliminar %s de %s"

#: ../duplicity/backends/multibackend.py:294
#, python-format
msgid ""
"MultiBackend: failed to delete %s. Tried all backing stores and none "
"succeeded"
msgstr ""
"MultiBackend: falló al eliminar %s. Se probaron todos los almacenes de "
"copias y ninguno funcionó"

#: ../duplicity/backends/pydrivebackend.py:143
#, python-format
msgid "PyDrive backend: multiple files called '%s'."
msgstr "PyDrive backend: se llamaron múltiples archivos «%s»."

#: ../duplicity/backends/webdavbackend.py:61
msgid "Missing socket or ssl python modules."
msgstr "Faltan los módulos de Python «socket» o «ssl»."

#: ../duplicity/backends/webdavbackend.py:79
#, python-format
msgid "Cacert database file '%s' is not readable."
msgstr "Archivo de base de datos Cacert «%s» ilegible."

#: ../duplicity/backends/webdavbackend.py:100
msgid ""
"Option '--ssl-cacert-path' is not supported with python 2.7.8 and below."
msgstr ""
"Opción «--ssl-cacert-path» no es compatible con python 2.7.8 y anterior."

#: ../duplicity/backends/webdavbackend.py:104
#, python-format
msgid ""
"For certificate verification with python 2.7.8 or earlier a cacert database\n"
"file is needed in one of these locations: %s\n"
"Hints:\n"
"  Consult the man page, chapter 'SSL Certificate Verification'.\n"
"  Consider using the options --ssl-cacert-file, --ssl-no-check-certificate ."
msgstr ""
"Para verificación de certificado con python 2.7.8 o anterior se requiere un\n"
"archivo de base de datos cacert en alguna de estas ubicaciones: %s\n"
"Sugerencias:\n"
"  Consulte la página man, capítulo «SSL Certificate Verification»\n"
"  Considere el uso de las opciones --ssl-cacert-file, --ssl-no-check-"
"certificate."

#: ../duplicity/backends/webdavbackend.py:150
#, python-format
msgid "Using WebDAV protocol %s"
msgstr "Usando protocolo WebDAV %s"

#: ../duplicity/backends/webdavbackend.py:151
#, python-format
msgid "Using WebDAV host %s port %s"
msgstr "Usando servidor WebDAV %s puerto %s"

#: ../duplicity/backends/webdavbackend.py:153
#, python-format
msgid "Using WebDAV directory %s"
msgstr "Usando directorio de WebDAV %s"

#: ../duplicity/backends/webdavbackend.py:184
#, python-format
msgid "WebDAV create connection on '%s'"
msgstr "Conexión para creación de WebDAV en «%s»"

#: ../duplicity/backends/webdavbackend.py:195
#, python-format
msgid "WebDAV Unknown URI scheme: %s"
msgstr "Esquema de URI WebDAV desconocido: %s"

#: ../duplicity/backends/webdavbackend.py:214
#, python-format
msgid "WebDAV %s %s request with headers: %s "
msgstr "WebDAV %s %s petición con encabezados: %s "

#: ../duplicity/backends/webdavbackend.py:215
#: ../duplicity/backends/webdavbackend.py:238
#, python-format
msgid "WebDAV data length: %s "
msgstr "Longitud de datos de WebDAV: %s "

#: ../duplicity/backends/webdavbackend.py:218
#, python-format
msgid "WebDAV response status %s with reason '%s'."
msgstr "Estado de respuesta WebDAV %s con razón «%s»."

#: ../duplicity/backends/webdavbackend.py:224
#, python-format
msgid "WebDAV redirect to: %s "
msgstr "WebDAV redigir a: %s "

#: ../duplicity/backends/webdavbackend.py:226
msgid "WebDAV redirected 10 times. Giving up."
msgstr "WebDAV redirigido 10 veces. Abandonando."

#: ../duplicity/backends/webdavbackend.py:231
msgid "WebDAV missing location header in redirect response."
msgstr ""
"A WebDAV le falta la cabecera de ubicación en la respuesta de redirección."

#: ../duplicity/backends/webdavbackend.py:236
msgid "WebDAV retry request with authentification headers."
msgstr "Petición de reintento de WebDAV con encabezados de autentificación."

#: ../duplicity/backends/webdavbackend.py:237
#, python-format
msgid "WebDAV %s %s request2 with headers: %s "
msgstr "WebDAV %s %s solicitud2 con encabezados: %s "

#: ../duplicity/backends/webdavbackend.py:241
#, python-format
msgid "WebDAV response2 status %s with reason '%s'."
msgstr "WebDAV respuesta2 estado %s con motivo «%s»."

#: ../duplicity/backends/webdavbackend.py:258
msgid ""
"python-kerberos needed to use kerberos                           "
"authorization, falling back to basic auth."
msgstr ""
"python-kerberos necesitó usar la autorización kerberos, volviendo a la "
"autorización básica."

#: ../duplicity/backends/webdavbackend.py:262
#, python-format
msgid ""
"Kerberos authorization failed: %s.                          Falling back to "
"basic auth."
msgstr "Falló autorización Kerberos: %s. Volviendo a autorización básica."

#: ../duplicity/backends/webdavbackend.py:360
#, python-format
msgid "Creating missing directory %s"
msgstr "Creando directorio que falta %s"

#: ../duplicity/backends/webdavbackend.py:364
#, python-format
msgid "WebDAV MKCOL %s failed: %s %s"
msgstr "WebDAV MKCOL %s falló: %s %s"

#: ../duplicity/backends/webdavbackend.py:377
#, python-format
msgid "WebDAV path decoding and translation: %s -> %s"
msgstr "Descodificación y traducción de rutas de WebDAV: %s → %s"

#: ../duplicity/backends/webdavbackend.py:422
#, python-format
msgid "WebDAV GET Bad status code %s reason %s."
msgstr "WebDAV GET Mal código de estado %s motivo %s."

#: ../duplicity/backends/webdavbackend.py:444
#, python-format
msgid "WebDAV PUT Bad status code %s reason %s."
msgstr "WebDAV PUT Mal código de estado %s motivo %s."

#: ../duplicity/backends/webdavbackend.py:464
#, python-format
msgid "WebDAV DEL Bad status code %s reason %s."
msgstr "WebDAV DEL Mal código de estado %s motivo %s."

#: ../duplicity/librsync.py:184
msgid ""
"basis_file must be a (true) file or an object whose file attribute is the "
"underlying true file object"
msgstr ""
"basis_file debe ser un archivo (verdadero) o un objeto cuyos atributos de "
"archivo son el objeto del archivo verdadero subyacente"

#: ../duplicity/manifest.py:91
#, python-format
msgid ""
"Fatal Error: Backup source host has changed.\n"
"Current hostname: %s\n"
"Previous hostname: %s"
msgstr ""
"Error fatal: el anfitrión de origen del respaldo ha cambiado.\n"
"Anfitrión actual: %s\n"
"Anfitrión anterior: %s"

#: ../duplicity/manifest.py:98
#, python-format
msgid ""
"Fatal Error: Backup source directory has changed.\n"
"Current directory: %s\n"
"Previous directory: %s"
msgstr ""
"Error fatal: el directorio de origen del respaldo ha cambiado.\n"
"Directorio actual: %s\n"
"Directorio anterior: %s"

#: ../duplicity/manifest.py:108
msgid ""
"Aborting because you may have accidentally tried to backup two different "
"data sets to the same remote location, or using the same archive directory.  "
"If this is not a mistake, use the --allow-source-mismatch switch to avoid "
"seeing this message"
msgstr ""
"Abortar porque puede haber intentado dos conjuntos de datos distintos en la "
"misma ubicación remota por error, o utilizado el mismo directorio de "
"archivo. Sí no es un error, use --allow-source-mismatch para no ver este "
"mensaje"

#: ../duplicity/manifest.py:192
#, python-format
msgid "Found manifest volume %s"
msgstr "Volumen manifest encontrado %s"

#: ../duplicity/manifest.py:199
#, python-format
msgid "Found %s volumes in manifest"
msgstr "Encontrados %s volúmenes en el manifiesto"

#: ../duplicity/manifest.py:213
msgid "Manifests not equal because different volume numbers"
msgstr ""
"Los manifiestos no son iguales debido a los diferentes números de volumen"

#: ../duplicity/manifest.py:218
msgid "Manifests not equal because volume lists differ"
msgstr ""
"Los manifiestos no son iguales porque las listas de volúmenes difieren"

#: ../duplicity/manifest.py:223
msgid "Manifests not equal because hosts or directories differ"
msgstr ""
"Los manifiestos no son iguales porque los anfitriones o directorios no "
"coinciden"

#: ../duplicity/manifest.py:370
msgid "Warning, found extra Volume identifier"
msgstr "Aviso, se encontró un identificador de volumen extra"

#: ../duplicity/manifest.py:396
msgid "Other is not VolumeInfo"
msgstr "Otro no es VolumeInfo"

#: ../duplicity/manifest.py:399
msgid "Volume numbers don't match"
msgstr "Los números de volúmenes no coinciden"

#: ../duplicity/manifest.py:402
msgid "start_indicies don't match"
msgstr "start_indicies no coinciden"

#: ../duplicity/manifest.py:405
msgid "end_index don't match"
msgstr "end_index no coinciden"

#: ../duplicity/manifest.py:412
msgid "Hashes don't match"
msgstr "Hashes no coinciden"

#: ../duplicity/path.py:110
#, python-format
msgid "Warning: %s invalid devnums (0x%X), treating as (0, 0)."
msgstr "Aviso: %s devnums inválidos (0x%X), tratando como (0, 0)."

#: ../duplicity/path.py:237 ../duplicity/path.py:296
#, python-format
msgid "Warning: %s has negative mtime, treating as 0."
msgstr "Aviso: %s tiene mtime negativo, tratando como 0."

#: ../duplicity/path.py:360
msgid "Difference found:"
msgstr "Diferencia encontrada:"

#: ../duplicity/path.py:369
#, python-format
msgid "New file %s"
msgstr "Archiv nuevo %s"

#: ../duplicity/path.py:372
#, python-format
msgid "File %s is missing"
msgstr "Falta el archivo %s"

#: ../duplicity/path.py:375
#, python-format
msgid "File %%s has type %s, expected %s"
msgstr "El archivo %%s tiene el tipo %s, se esperaba %s"

#: ../duplicity/path.py:381 ../duplicity/path.py:407
#, python-format
msgid "File %%s has permissions %s, expected %s"
msgstr "El archivo %%s tiene permisos %s, se esperaba %s"

#: ../duplicity/path.py:386
#, python-format
msgid "File %%s has mtime %s, expected %s"
msgstr "El archivo %%s tiene mtime %s, se esperaba %s"

#: ../duplicity/path.py:394
#, python-format
msgid "Data for file %s is different"
msgstr "Los datos para el archivo %s son diferentes"

#: ../duplicity/path.py:402
#, python-format
msgid "Symlink %%s points to %s, expected %s"
msgstr "El vínculo simbólico %%s apunta a %s, se esperaba %s"

#: ../duplicity/path.py:411
#, python-format
msgid "Device file %%s has numbers %s, expected %s"
msgstr "El archivo de dispositivo %%s tiene números %s, se esperaba %s"

#: ../duplicity/path.py:579
#, python-format
msgid "Making directory %s"
msgstr "Haciendo directorio %s"

#: ../duplicity/path.py:589
#, python-format
msgid "Deleting %s"
msgstr "Borrando %s"

#: ../duplicity/path.py:598
#, python-format
msgid "Touching %s"
msgstr "Tocando %s"

#: ../duplicity/path.py:605
#, python-format
msgid "Deleting tree %s"
msgstr "Eliminando árbol %s"

#: ../duplicity/gpginterface.py:237
msgid "Threading not available -- zombie processes may appear"
msgstr "Hilo no disponible -- pueden aparecer procesos zombis"

#: ../duplicity/gpginterface.py:701
#, python-format
msgid "GPG process %d terminated before wait()"
msgstr "El proceso GPG %d terminó antes que el procedimiento wait()"

#: ../duplicity/dup_time.py:61
#, python-format
msgid ""
"Bad interval string \"%s\"\n"
"\n"
"Intervals are specified like 2Y (2 years) or 2h30m (2.5 hours).  The\n"
"allowed special characters are s, m, h, D, W, M, and Y.  See the man\n"
"page for more information."
msgstr ""
"Cadena de intervalo errónea «%s»\n"
"\n"
"Los intervalos son del tipo 2Y (2 años) o 2h30m (2.5 horas). \n"
"Los caracteres especiales permitidos son s, m, h, D, W, M e Y.\n"
"Ver el manual para más información."

#: ../duplicity/dup_time.py:67
#, python-format
msgid ""
"Bad time string \"%s\"\n"
"\n"
"The acceptible time strings are intervals (like \"3D64s\"), w3-datetime\n"
"strings, like \"2002-04-26T04:22:01-07:00\" (strings like\n"
"\"2002-04-26T04:22:01\" are also acceptable - duplicity will use the\n"
"current time zone), or ordinary dates like 2/4/1997 or 2001-04-23\n"
"(various combinations are acceptable, but the month always precedes\n"
"the day)."
msgstr ""
"Cadena de fecha incorrecta «%s»\n"
"\n"
"Las cadenas de fecha aceptable son intervalos (tipo «3D64s»), cadenas w3-"
"datetime\n"
", tipo «2002-04-26T04:22:01-07:00» (cadenas tipo\n"
"«2002-04-26T04:22:01» son aceptables - duplicity usará la zona\n"
"horaria actual), o fecha normales tipo 2/4/1997 o 2001-04-23\n"
"(son aceptables distintas combinaciones, pero el mes debe preceder\n"
" al día siempre)."

#: ../duplicity/tempdir.py:132
#, python-format
msgid "Using temporary directory %s"
msgstr "Utilizando directorio temporal %s"

#: ../duplicity/tempdir.py:176
#, python-format
msgid "Registering (mktemp) temporary file %s"
msgstr "Registrando archivo temporal (mktemp) %s"

#: ../duplicity/tempdir.py:198
#, python-format
msgid "Registering (mkstemp) temporary file %s"
msgstr "Registrando archivo temporal (mkstemp) %s"

#: ../duplicity/tempdir.py:230
#, python-format
msgid "Forgetting temporary file %s"
msgstr "Olvidando el archivo temporal %s"

#: ../duplicity/tempdir.py:233
#, python-format
msgid "Attempt to forget unknown tempfile %s - this is probably a bug."
msgstr ""
"Intentando olvidar un archivo temporal desconocido %s. Esto es posiblemente "
"un error."

#: ../duplicity/tempdir.py:252
#, python-format
msgid "Removing still remembered temporary file %s"
msgstr "Eliminar archivo temporal todavía recordado %s"

#: ../duplicity/tempdir.py:255
#, python-format
msgid "Cleanup of temporary file %s failed"
msgstr "La limpieza del archivo temporal %s falló"

#: ../duplicity/tempdir.py:260
#, python-format
msgid "Cleanup of temporary directory %s failed - this is probably a bug."
msgstr ""
"La limpieza del directorio temporal %s falló. Esto posiblemente sea un error."

#: ../duplicity/util.py:95
#, python-format
msgid "IGNORED_ERROR: Warning: ignoring error as requested: %s: %s"
msgstr "IGNORED_ERROR: Aviso: ignorando error tal como se pidió: %s: %s"

#: ../duplicity/util.py:162
#, python-format
msgid "Releasing lockfile %s"
msgstr "Publicando fichero de candado %s"

#, python-format
#~ msgid "%s not found in archive, no files restored."
#~ msgstr "No se encontró %s en el archivo, no se restauran archivos."

#, python-format
#~ msgid ""
#~ "Error is:\n"
#~ "%s"
#~ msgstr ""
#~ "El error es:\n"
#~ "%s"

#~ msgid "Unable to load gio module"
#~ msgstr "No se puede cargar el módulo gio"

#, python-format
#~ msgid "Running '%s' failed with code %d (attempt #%d)"
#~ msgid_plural "Running '%s' failed with code %d (attempt #%d)"
#~ msgstr[0] "La ejecución de «%s» falló con el código %d (intento #%d)"
#~ msgstr[1] "La ejecución de «%s» falló con el código %d (intentos #%d)"

#, python-format
#~ msgid "Starting to write %s"
#~ msgstr "Empezando a escribir %s"

#, python-format
#~ msgid "Giving up trying to execute '%s' after %d attempt"
#~ msgid_plural "Giving up trying to execute '%s' after %d attempts"
#~ msgstr[0] "Renunciar a tratar de ejecutar «%s» después de %d intento"
#~ msgstr[1] "Renunciar a tratar de ejecutar «%s» después de %d intentos"

#, python-format
#~ msgid ""
#~ "No signature chain for the requested time.  Using oldest available chain, "
#~ "starting at time %s."
#~ msgstr ""
#~ "No hay cadena de firma para la hora pedida. Usando la cadena más antigua "
#~ "disponible, iniciada en la hora %s."

#, python-format
#~ msgid ""
#~ "One only volume required.\n"
#~ "Renaming %s to %s"
#~ msgstr ""
#~ "Solo se necesita un volumen.\n"
#~ "Renombrando %s a %s"

#, python-format
#~ msgid "Reading filelist %s"
#~ msgstr "Leyendo la lista de archivos %s"

#, python-format
#~ msgid "Sorting filelist %s"
#~ msgstr "Ordenando la lista de archivos %s"

#, python-format
#~ msgid "Error closing filelist %s"
#~ msgstr "Error al cerrar la lista de archivos %s"

#~ msgid "Deleting backup set at time:"
#~ msgid_plural "Deleting backup sets at times:"
#~ msgstr[0] "Eliminar grupo de respaldo en el momento:"
#~ msgstr[1] "Eliminar grupod de respaldo en el momento:"

#~ msgid "Found old backup set at the following time:"
#~ msgid_plural "Found old backup sets at the following times:"
#~ msgstr[0] "Buscar configuración de respaldo antigua la próxima vez:"
#~ msgstr[1] "Buscar configuración de respaldo antigua las próximas veces:"

#, python-format
#~ msgid ""
#~ "Sign key should be an 8 character hex string, like 'AA0E73D2'.\n"
#~ "Received '%s' instead."
#~ msgstr ""
#~ "La clave de firma debería ser una cadena hexadecimal de 8 caracteres, tipo "
#~ "«AA0E73D2».\n"
#~ "Recibió «%s» en su lugar."

#~ msgid "Future prefix errors will not be logged."
#~ msgstr "Los errores de prefijo futuros no se registrarán."

#, python-format
#~ msgid ""
#~ "Warning: file specification '%s' in filelist %s\n"
#~ "doesn't start with correct prefix %s.  Ignoring."
#~ msgstr ""
#~ "Aviso: la especificación de archivo «%s» en el listado de archivo %s\n"
#~ "no comienza con el prefijo correcto %s. Ignorando."

#~ msgid "paramiko|pexpect"
#~ msgstr "paramiko|pexpect"

#, python-format
#~ msgid "Deleting incremental signature chain %s"
#~ msgstr "Eliminar la cadena de firma incremental %s"

#, python-format
#~ msgid "Unable to load gio backend: %s"
#~ msgstr "No se pudo cargar el motor gio: %s"

#, python-format
#~ msgid ""
#~ "Warning: Selected ssh backend '%s' is neither 'paramiko nor 'pexpect'. Will "
#~ "use default paramiko instead."
#~ msgstr ""
#~ "Advertencia: el motor ssh seleccionado «%s» no es ni «paramiko» ni "
#~ "«pexpect». Se usará en su lugar el predeterminado paramiko."

#, python-format
#~ msgid ""
#~ "Warning: Option %s is supported by ssh pexpect backend only and will be "
#~ "ignored."
#~ msgstr ""
#~ "Advertencia: la opción %s solo se soporta mediante el motor ssh pexpect y "
#~ "será ignorada."

#, python-format
#~ msgid "Deleting incremental backup chain %s"
#~ msgstr "Borrando cadena de copias de seguridad incrementales %s"

#, python-format
#~ msgid "File: %s"
#~ msgstr "Archivo: %s"

#~ msgid "Type of file change:"
#~ msgstr "Tipo de cambio de archivo:"

#, python-format
#~ msgid "Total number of backup: %d"
#~ msgstr "Número total de copias de seguridad: %d"

#, python-format
#~ msgid ""
#~ "Manifest file '%s' is corrupt: File count says %d, File list contains %d"
#~ msgstr ""
#~ "El archivo de manifiesto «%s» está corrupto: El contador de archivos dice "
#~ "%d, La lista de archivos contiene %d"