swift 2.23.3__py3-none-any.whl → 2.35.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. swift/__init__.py +29 -50
  2. swift/account/auditor.py +21 -118
  3. swift/account/backend.py +33 -28
  4. swift/account/reaper.py +37 -28
  5. swift/account/replicator.py +22 -0
  6. swift/account/server.py +60 -26
  7. swift/account/utils.py +28 -11
  8. swift-2.23.3.data/scripts/swift-account-audit → swift/cli/account_audit.py +23 -13
  9. swift-2.23.3.data/scripts/swift-config → swift/cli/config.py +2 -2
  10. swift/cli/container_deleter.py +5 -11
  11. swift-2.23.3.data/scripts/swift-dispersion-populate → swift/cli/dispersion_populate.py +8 -7
  12. swift/cli/dispersion_report.py +10 -9
  13. swift-2.23.3.data/scripts/swift-drive-audit → swift/cli/drive_audit.py +63 -21
  14. swift/cli/form_signature.py +3 -7
  15. swift-2.23.3.data/scripts/swift-get-nodes → swift/cli/get_nodes.py +8 -2
  16. swift/cli/info.py +154 -14
  17. swift/cli/manage_shard_ranges.py +705 -37
  18. swift-2.23.3.data/scripts/swift-oldies → swift/cli/oldies.py +25 -14
  19. swift-2.23.3.data/scripts/swift-orphans → swift/cli/orphans.py +7 -3
  20. swift/cli/recon.py +196 -67
  21. swift-2.23.3.data/scripts/swift-recon-cron → swift/cli/recon_cron.py +17 -20
  22. swift-2.23.3.data/scripts/swift-reconciler-enqueue → swift/cli/reconciler_enqueue.py +2 -3
  23. swift/cli/relinker.py +807 -126
  24. swift/cli/reload.py +135 -0
  25. swift/cli/ringbuilder.py +217 -20
  26. swift/cli/ringcomposer.py +0 -1
  27. swift/cli/shard-info.py +4 -3
  28. swift/common/base_storage_server.py +9 -20
  29. swift/common/bufferedhttp.py +48 -74
  30. swift/common/constraints.py +20 -15
  31. swift/common/container_sync_realms.py +9 -11
  32. swift/common/daemon.py +25 -8
  33. swift/common/db.py +195 -128
  34. swift/common/db_auditor.py +168 -0
  35. swift/common/db_replicator.py +95 -55
  36. swift/common/digest.py +141 -0
  37. swift/common/direct_client.py +144 -33
  38. swift/common/error_limiter.py +93 -0
  39. swift/common/exceptions.py +25 -1
  40. swift/common/header_key_dict.py +2 -9
  41. swift/common/http_protocol.py +373 -0
  42. swift/common/internal_client.py +129 -59
  43. swift/common/linkat.py +3 -4
  44. swift/common/manager.py +284 -67
  45. swift/common/memcached.py +390 -145
  46. swift/common/middleware/__init__.py +4 -0
  47. swift/common/middleware/account_quotas.py +211 -46
  48. swift/common/middleware/acl.py +3 -8
  49. swift/common/middleware/backend_ratelimit.py +230 -0
  50. swift/common/middleware/bulk.py +22 -34
  51. swift/common/middleware/catch_errors.py +1 -3
  52. swift/common/middleware/cname_lookup.py +6 -11
  53. swift/common/middleware/container_quotas.py +1 -1
  54. swift/common/middleware/container_sync.py +39 -17
  55. swift/common/middleware/copy.py +12 -0
  56. swift/common/middleware/crossdomain.py +22 -9
  57. swift/common/middleware/crypto/__init__.py +2 -1
  58. swift/common/middleware/crypto/crypto_utils.py +11 -15
  59. swift/common/middleware/crypto/decrypter.py +28 -11
  60. swift/common/middleware/crypto/encrypter.py +12 -17
  61. swift/common/middleware/crypto/keymaster.py +8 -15
  62. swift/common/middleware/crypto/kms_keymaster.py +2 -1
  63. swift/common/middleware/dlo.py +15 -11
  64. swift/common/middleware/domain_remap.py +5 -4
  65. swift/common/middleware/etag_quoter.py +128 -0
  66. swift/common/middleware/formpost.py +73 -70
  67. swift/common/middleware/gatekeeper.py +8 -1
  68. swift/common/middleware/keystoneauth.py +33 -3
  69. swift/common/middleware/list_endpoints.py +4 -4
  70. swift/common/middleware/listing_formats.py +85 -49
  71. swift/common/middleware/memcache.py +4 -95
  72. swift/common/middleware/name_check.py +3 -2
  73. swift/common/middleware/proxy_logging.py +160 -92
  74. swift/common/middleware/ratelimit.py +17 -10
  75. swift/common/middleware/read_only.py +6 -4
  76. swift/common/middleware/recon.py +59 -22
  77. swift/common/middleware/s3api/acl_handlers.py +25 -3
  78. swift/common/middleware/s3api/acl_utils.py +6 -1
  79. swift/common/middleware/s3api/controllers/__init__.py +6 -0
  80. swift/common/middleware/s3api/controllers/acl.py +3 -2
  81. swift/common/middleware/s3api/controllers/bucket.py +242 -137
  82. swift/common/middleware/s3api/controllers/logging.py +2 -2
  83. swift/common/middleware/s3api/controllers/multi_delete.py +43 -20
  84. swift/common/middleware/s3api/controllers/multi_upload.py +219 -133
  85. swift/common/middleware/s3api/controllers/obj.py +112 -8
  86. swift/common/middleware/s3api/controllers/object_lock.py +44 -0
  87. swift/common/middleware/s3api/controllers/s3_acl.py +2 -2
  88. swift/common/middleware/s3api/controllers/tagging.py +57 -0
  89. swift/common/middleware/s3api/controllers/versioning.py +36 -7
  90. swift/common/middleware/s3api/etree.py +22 -9
  91. swift/common/middleware/s3api/exception.py +0 -4
  92. swift/common/middleware/s3api/s3api.py +113 -41
  93. swift/common/middleware/s3api/s3request.py +384 -218
  94. swift/common/middleware/s3api/s3response.py +126 -23
  95. swift/common/middleware/s3api/s3token.py +16 -17
  96. swift/common/middleware/s3api/schema/delete.rng +1 -1
  97. swift/common/middleware/s3api/subresource.py +7 -10
  98. swift/common/middleware/s3api/utils.py +27 -10
  99. swift/common/middleware/slo.py +665 -358
  100. swift/common/middleware/staticweb.py +64 -37
  101. swift/common/middleware/symlink.py +51 -18
  102. swift/common/middleware/tempauth.py +76 -58
  103. swift/common/middleware/tempurl.py +191 -173
  104. swift/common/middleware/versioned_writes/__init__.py +51 -0
  105. swift/common/middleware/{versioned_writes.py → versioned_writes/legacy.py} +27 -26
  106. swift/common/middleware/versioned_writes/object_versioning.py +1482 -0
  107. swift/common/middleware/x_profile/exceptions.py +1 -4
  108. swift/common/middleware/x_profile/html_viewer.py +18 -19
  109. swift/common/middleware/x_profile/profile_model.py +1 -2
  110. swift/common/middleware/xprofile.py +10 -10
  111. swift-2.23.3.data/scripts/swift-container-server → swift/common/recon.py +13 -8
  112. swift/common/registry.py +147 -0
  113. swift/common/request_helpers.py +324 -57
  114. swift/common/ring/builder.py +67 -25
  115. swift/common/ring/composite_builder.py +1 -1
  116. swift/common/ring/ring.py +177 -51
  117. swift/common/ring/utils.py +1 -1
  118. swift/common/splice.py +10 -6
  119. swift/common/statsd_client.py +205 -0
  120. swift/common/storage_policy.py +49 -44
  121. swift/common/swob.py +86 -102
  122. swift/common/{utils.py → utils/__init__.py} +2163 -2772
  123. swift/common/utils/base.py +131 -0
  124. swift/common/utils/config.py +433 -0
  125. swift/common/utils/ipaddrs.py +256 -0
  126. swift/common/utils/libc.py +345 -0
  127. swift/common/utils/logs.py +859 -0
  128. swift/common/utils/timestamp.py +412 -0
  129. swift/common/wsgi.py +553 -535
  130. swift/container/auditor.py +14 -100
  131. swift/container/backend.py +490 -231
  132. swift/container/reconciler.py +126 -37
  133. swift/container/replicator.py +96 -22
  134. swift/container/server.py +358 -165
  135. swift/container/sharder.py +1540 -684
  136. swift/container/sync.py +94 -88
  137. swift/container/updater.py +53 -32
  138. swift/obj/auditor.py +153 -35
  139. swift/obj/diskfile.py +466 -217
  140. swift/obj/expirer.py +406 -124
  141. swift/obj/mem_diskfile.py +7 -4
  142. swift/obj/mem_server.py +1 -0
  143. swift/obj/reconstructor.py +523 -262
  144. swift/obj/replicator.py +249 -188
  145. swift/obj/server.py +207 -122
  146. swift/obj/ssync_receiver.py +145 -85
  147. swift/obj/ssync_sender.py +113 -54
  148. swift/obj/updater.py +652 -139
  149. swift/obj/watchers/__init__.py +0 -0
  150. swift/obj/watchers/dark_data.py +213 -0
  151. swift/proxy/controllers/account.py +11 -11
  152. swift/proxy/controllers/base.py +848 -604
  153. swift/proxy/controllers/container.py +433 -92
  154. swift/proxy/controllers/info.py +3 -2
  155. swift/proxy/controllers/obj.py +1000 -489
  156. swift/proxy/server.py +185 -112
  157. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/AUTHORS +58 -11
  158. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/METADATA +51 -56
  159. swift-2.35.0.dist-info/RECORD +201 -0
  160. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/WHEEL +1 -1
  161. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/entry_points.txt +43 -0
  162. swift-2.35.0.dist-info/pbr.json +1 -0
  163. swift/locale/de/LC_MESSAGES/swift.po +0 -1216
  164. swift/locale/en_GB/LC_MESSAGES/swift.po +0 -1207
  165. swift/locale/es/LC_MESSAGES/swift.po +0 -1085
  166. swift/locale/fr/LC_MESSAGES/swift.po +0 -909
  167. swift/locale/it/LC_MESSAGES/swift.po +0 -894
  168. swift/locale/ja/LC_MESSAGES/swift.po +0 -965
  169. swift/locale/ko_KR/LC_MESSAGES/swift.po +0 -964
  170. swift/locale/pt_BR/LC_MESSAGES/swift.po +0 -881
  171. swift/locale/ru/LC_MESSAGES/swift.po +0 -891
  172. swift/locale/tr_TR/LC_MESSAGES/swift.po +0 -832
  173. swift/locale/zh_CN/LC_MESSAGES/swift.po +0 -833
  174. swift/locale/zh_TW/LC_MESSAGES/swift.po +0 -838
  175. swift-2.23.3.data/scripts/swift-account-auditor +0 -23
  176. swift-2.23.3.data/scripts/swift-account-info +0 -51
  177. swift-2.23.3.data/scripts/swift-account-reaper +0 -23
  178. swift-2.23.3.data/scripts/swift-account-replicator +0 -34
  179. swift-2.23.3.data/scripts/swift-account-server +0 -23
  180. swift-2.23.3.data/scripts/swift-container-auditor +0 -23
  181. swift-2.23.3.data/scripts/swift-container-info +0 -55
  182. swift-2.23.3.data/scripts/swift-container-reconciler +0 -21
  183. swift-2.23.3.data/scripts/swift-container-replicator +0 -34
  184. swift-2.23.3.data/scripts/swift-container-sharder +0 -37
  185. swift-2.23.3.data/scripts/swift-container-sync +0 -23
  186. swift-2.23.3.data/scripts/swift-container-updater +0 -23
  187. swift-2.23.3.data/scripts/swift-dispersion-report +0 -24
  188. swift-2.23.3.data/scripts/swift-form-signature +0 -20
  189. swift-2.23.3.data/scripts/swift-init +0 -119
  190. swift-2.23.3.data/scripts/swift-object-auditor +0 -29
  191. swift-2.23.3.data/scripts/swift-object-expirer +0 -33
  192. swift-2.23.3.data/scripts/swift-object-info +0 -60
  193. swift-2.23.3.data/scripts/swift-object-reconstructor +0 -33
  194. swift-2.23.3.data/scripts/swift-object-relinker +0 -41
  195. swift-2.23.3.data/scripts/swift-object-replicator +0 -37
  196. swift-2.23.3.data/scripts/swift-object-server +0 -27
  197. swift-2.23.3.data/scripts/swift-object-updater +0 -23
  198. swift-2.23.3.data/scripts/swift-proxy-server +0 -23
  199. swift-2.23.3.data/scripts/swift-recon +0 -24
  200. swift-2.23.3.data/scripts/swift-ring-builder +0 -24
  201. swift-2.23.3.data/scripts/swift-ring-builder-analyzer +0 -22
  202. swift-2.23.3.data/scripts/swift-ring-composer +0 -22
  203. swift-2.23.3.dist-info/RECORD +0 -220
  204. swift-2.23.3.dist-info/pbr.json +0 -1
  205. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/LICENSE +0 -0
  206. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/top_level.txt +0 -0
@@ -1,1085 +0,0 @@
1
- # Translations template for swift.
2
- # Copyright (C) 2015 ORGANIZATION
3
- # This file is distributed under the same license as the swift project.
4
- #
5
- # Translators:
6
- # Andreas Jaeger <jaegerandi@gmail.com>, 2016. #zanata
7
- # Pablo Caruana <pcaruana@redhat.com>, 2016. #zanata
8
- msgid ""
9
- msgstr ""
10
- "Project-Id-Version: swift VERSION\n"
11
- "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
12
- "POT-Creation-Date: 2019-10-03 19:48+0000\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "PO-Revision-Date: 2016-07-18 10:57+0000\n"
17
- "Last-Translator: Pablo Caruana <pcaruana@redhat.com>\n"
18
- "Language: es\n"
19
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
- "Generated-By: Babel 2.0\n"
21
- "X-Generator: Zanata 4.3.3\n"
22
- "Language-Team: Spanish\n"
23
-
24
- msgid ""
25
- "\n"
26
- "user quit"
27
- msgstr ""
28
- "\n"
29
- "salida del usuario"
30
-
31
- #, python-format
32
- msgid " - %s"
33
- msgstr " - %s"
34
-
35
- #, python-format
36
- msgid " - parallel, %s"
37
- msgstr " - paralelo, %s"
38
-
39
- #, python-format
40
- msgid ""
41
- "%(checked)d suffixes checked - %(hashed).2f%% hashed, %(synced).2f%% synced"
42
- msgstr ""
43
- "%(checked)d sufijos comprobados - %(hashed).2f%% con hash, %(synced).2f%% "
44
- "sincronizados"
45
-
46
- #, python-format
47
- msgid "%(msg)s %(ip)s:%(port)s/%(device)s"
48
- msgstr "%(msg)s %(ip)s:%(port)s/%(device)s"
49
-
50
- #, python-format
51
- msgid ""
52
- "%(replicated)d/%(total)d (%(percentage).2f%%) partitions replicated in "
53
- "%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
54
- msgstr ""
55
- "%(replicated)d/%(total)d (%(percentage).2f%%) particiones replicadas en "
56
- "%(time).2fs (%(rate).2f/segundo, %(remaining)s restantes)"
57
-
58
- #, python-format
59
- msgid "%(server)s #%(number)d not running (%(conf)s)"
60
- msgstr "%(server)s #%(number)d not running (%(conf)s)"
61
-
62
- #, python-format
63
- msgid "%(server)s (%(pid)s) appears to have stopped"
64
- msgstr "%(server)s (%(pid)s) parece haberse detenido"
65
-
66
- #, python-format
67
- msgid "%(server)s running (%(pid)s - %(conf)s)"
68
- msgstr "%(server)s running (%(pid)s - %(conf)s)"
69
-
70
- #, python-format
71
- msgid "%(server)s running (%(pid)s - %(pid_file)s)"
72
- msgstr "%(server)s corriendo (%(pid)s - %(pid_file)s)"
73
-
74
- #, python-format
75
- msgid "%(success)s successes, %(failure)s failures"
76
- msgstr "%(success)s éxitos, %(failure)s fallos"
77
-
78
- #, python-format
79
- msgid "%(type)s returning 503 for %(statuses)s"
80
- msgstr "%(type)s devuelve 503 para %(statuses)s"
81
-
82
- #, python-format
83
- msgid "%(type)s: %(value)s"
84
- msgstr "%(type)s: %(value)s"
85
-
86
- #, python-format
87
- msgid "%s already started..."
88
- msgstr "%s ya está iniciado..."
89
-
90
- #, python-format
91
- msgid "%s does not exist"
92
- msgstr "%s no existe"
93
-
94
- #, python-format
95
- msgid "%s is not mounted"
96
- msgstr "%s no está montado"
97
-
98
- #, python-format
99
- msgid "%s responded as unmounted"
100
- msgstr "%s ha respondido como desmontado"
101
-
102
- #, python-format
103
- msgid "%s: Connection reset by peer"
104
- msgstr "%s: Restablecimiento de conexión por igual"
105
-
106
- msgid "Account"
107
- msgstr "Cuenta"
108
-
109
- #, python-format
110
- msgid "Account audit \"once\" mode completed: %.02fs"
111
- msgstr "Auditoría de cuenta en modalidad de \"una vez\" finalizada: %.02fs"
112
-
113
- #, python-format
114
- msgid "Account audit pass completed: %.02fs"
115
- msgstr "Paso de auditoría de cuenta finalizado: %.02fs"
116
-
117
- #, python-format
118
- msgid ""
119
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
120
- msgstr ""
121
- "Se han intentado replicar %(count)d bases de datos en %(time).5f segundos "
122
- "(%(rate).5f/s)"
123
-
124
- #, python-format
125
- msgid "Audit Failed for %(path)s: %(err)s"
126
- msgstr "Ha fallado la auditoría para %(path)s: %(err)s"
127
-
128
- #, python-format
129
- msgid "Bad key for %(name)r: %(err)s"
130
- msgstr "Clave errónea para %(name)r: %(err)s"
131
-
132
- #, python-format
133
- msgid "Bad rsync return code: %(ret)d <- %(args)s"
134
- msgstr "Código de retorno de resincronización erróneo: %(ret)d <- %(args)s"
135
-
136
- msgid "Begin account audit \"once\" mode"
137
- msgstr "Comenzar auditoría de cuenta en modalidad de \"una vez\""
138
-
139
- msgid "Begin account audit pass."
140
- msgstr "Comenzar a pasar la auditoría de cuenta."
141
-
142
- msgid "Begin container audit \"once\" mode"
143
- msgstr "Comenzar auditoría de contenedor en modalidad de \"una vez\""
144
-
145
- msgid "Begin container audit pass."
146
- msgstr "Comenzar a pasar la auditoría de contenedor."
147
-
148
- msgid "Begin container sync \"once\" mode"
149
- msgstr "Comenzar sincronización de contenedor en modalidad de \"una vez\""
150
-
151
- msgid "Begin container update single threaded sweep"
152
- msgstr "Comenzar el barrido de hebra única de actualización del contenedor"
153
-
154
- msgid "Begin container update sweep"
155
- msgstr "Comenzar el barrido de actualización del contenedor"
156
-
157
- #, python-format
158
- msgid "Begin object audit \"%(mode)s\" mode (%(audi_type)s%(description)s)"
159
- msgstr ""
160
- "Comenzar auditoría de objetos en modalidad \"%(mode)s\" mode (%(audi_type)s"
161
- "%(description)s)"
162
-
163
- msgid "Begin object update single threaded sweep"
164
- msgstr "Comenzar el barrido de hebra única de actualización del objeto"
165
-
166
- msgid "Begin object update sweep"
167
- msgstr "Comenzar el barrido de actualización del objeto"
168
-
169
- msgid "Beginning replication run"
170
- msgstr "Iniciando la ejecución de la replicación"
171
-
172
- msgid "Broker error trying to rollback locked connection"
173
- msgstr "Error de intermediario al intentar retrotraer una conexión bloqueada"
174
-
175
- #, python-format
176
- msgid "Can not access the file %s."
177
- msgstr "No se puede acceder al archivo %s."
178
-
179
- #, python-format
180
- msgid "Can not load profile data from %s."
181
- msgstr "No se pueden cargar los datos de perfil desde %s."
182
-
183
- #, python-format
184
- msgid "Cannot read %(auditor_status)s (%(err)s)"
185
- msgstr "No se puede leer %(auditor_status)s (%(err)s)"
186
-
187
- #, python-format
188
- msgid "Cannot write %(auditor_status)s (%(err)s)"
189
- msgstr "No se puede escribir %(auditor_status)s (%(err)s)"
190
-
191
- #, python-format
192
- msgid "Client did not read from proxy within %ss"
193
- msgstr "El cliente pudo realizar la lectura desde el proxy en %ss"
194
-
195
- msgid "Client disconnected on read"
196
- msgstr "El cliente se ha desconectado de la lectura"
197
-
198
- msgid "Client disconnected without sending enough data"
199
- msgstr "El cliente se ha desconectado sin enviar suficientes datos"
200
-
201
- msgid "Client disconnected without sending last chunk"
202
- msgstr "El cliente se ha desconectado sin enviar el último fragmento"
203
-
204
- #, python-format
205
- msgid ""
206
- "Client path %(client)s does not match path stored in object metadata %(meta)s"
207
- msgstr ""
208
- "La vía de acceso de cliente %(client)s no coincide con la vía de acceso "
209
- "almacenada en los metadatos de objeto %(meta)s"
210
-
211
- msgid ""
212
- "Configuration option internal_client_conf_path not defined. Using default "
213
- "configuration, See internal-client.conf-sample for options"
214
- msgstr ""
215
- "La opción de configuración internal_client_conf_path no está definida. Se "
216
- "utilizará la configuración predeterminada, Consulte internal-client.conf-"
217
- "sample para ver las opciones"
218
-
219
- msgid "Connection refused"
220
- msgstr "Conexión rechazada"
221
-
222
- msgid "Connection timeout"
223
- msgstr "Tiempo de espera de conexión agotado"
224
-
225
- msgid "Container"
226
- msgstr "Contenedor"
227
-
228
- #, python-format
229
- msgid "Container audit \"once\" mode completed: %.02fs"
230
- msgstr "Auditoría de contenedor en modalidad de \"una vez\" finalizada: %.02fs"
231
-
232
- #, python-format
233
- msgid "Container audit pass completed: %.02fs"
234
- msgstr "Paso de auditoría de contenedor finalizado: %.02fs"
235
-
236
- #, python-format
237
- msgid "Container sync \"once\" mode completed: %.02fs"
238
- msgstr ""
239
- "Sincronización de contenedor en modalidad de \"una vez\" finalizada: %.02fs"
240
-
241
- #, python-format
242
- msgid ""
243
- "Container sync report: %(container)s, time window start: %(start)s, time "
244
- "window end: %(end)s, puts: %(puts)s, posts: %(posts)s, deletes: %(deletes)s, "
245
- "bytes: %(bytes)s, sync_point1: %(point1)s, sync_point2: %(point2)s, "
246
- "total_rows: %(total)s"
247
- msgstr ""
248
- "Informe de sincronización de contenedores: %(container)s, inicio de la "
249
- "ventana de tiempo: %(start)s, extremo ventana de tiempo: %(end)s, "
250
- "colocaciones: %(puts)s, publicaciones:: %(posts)s, eliminados: %(deletes)s, "
251
- "bytes: %(bytes)s, sync_point1: %(point1)s, sync_point2: %(point2)s, "
252
- "total_filas: %(total)s"
253
-
254
- #, python-format
255
- msgid ""
256
- "Container update single threaded sweep completed: %(elapsed).02fs, "
257
- "%(success)s successes, %(fail)s failures, %(no_change)s with no changes"
258
- msgstr ""
259
- "Barrido de hebra única de actualización del contenedor finalizado: "
260
- "%(elapsed).02fs, %(success)s con éxito, %(fail)s fallos, %(no_change)s sin "
261
- "cambios"
262
-
263
- #, python-format
264
- msgid "Container update sweep completed: %.02fs"
265
- msgstr "Barrido de actualización del contenedor finalizado: %.02fs"
266
-
267
- #, python-format
268
- msgid ""
269
- "Container update sweep of %(path)s completed: %(elapsed).02fs, %(success)s "
270
- "successes, %(fail)s failures, %(no_change)s with no changes"
271
- msgstr ""
272
- "Barrido de actualización del contenedor de %(path)s finalizado: "
273
- "%(elapsed).02fs, %(success)s con éxito, %(fail)s fallos, %(no_change)s sin "
274
- "cambios"
275
-
276
- #, python-format
277
- msgid ""
278
- "Could not bind to %(addr)s:%(port)s after trying for %(timeout)s seconds"
279
- msgstr ""
280
- "No se ha podido enlazar a %(addr)s:%(port)s después de intentarlo durante "
281
- "%(timeout)ssegundos"
282
-
283
- #, python-format
284
- msgid "Could not load %(conf)r: %(error)s"
285
- msgstr "No se ha podido cargar %(conf)r: %(error)s"
286
-
287
- #, python-format
288
- msgid "Data download error: %s"
289
- msgstr "Error de descarga de datos: %s"
290
-
291
- msgid "Did not get a keys dict"
292
- msgstr "No tuvimos un diccionario de claves"
293
-
294
- #, python-format
295
- msgid "Directory %(directory)r does not map to a valid policy (%(error)s)"
296
- msgstr ""
297
- "El directorio %(directory)r no está correlacionado con una política válida "
298
- "(%(error)s)"
299
-
300
- #, python-format
301
- msgid "ERROR %(db_file)s: %(validate_sync_to_err)s"
302
- msgstr "ERROR %(db_file)s: %(validate_sync_to_err)s"
303
-
304
- #, python-format
305
- msgid "ERROR %(status)d %(body)s From %(type)s Server"
306
- msgstr "ERROR %(status)d %(body)s Desde el servidor %(type)s"
307
-
308
- #, python-format
309
- msgid "ERROR %(status)d %(body)s From Object Server re: %(path)s"
310
- msgstr "ERROR %(status)d %(body)s Desde el servidor de objeto re: %(path)s"
311
-
312
- #, python-format
313
- msgid "ERROR %(status)d Expect: 100-continue From Object Server"
314
- msgstr "ERROR %(status)d Esperado: 100-continuo Desde el servidor de objeto"
315
-
316
- #, python-format
317
- msgid "ERROR %(status)d Trying to %(method)s %(path)s From %(type)s Server"
318
- msgstr ""
319
- "ERROR %(status)d Intentando %(method)s %(path)s Desde %(type)s de "
320
- "Servidor"
321
-
322
- #, python-format
323
- msgid ""
324
- "ERROR Account update failed with %(ip)s:%(port)s/%(device)s (will retry "
325
- "later): Response %(status)s %(reason)s"
326
- msgstr ""
327
- "ERROR La actualización de la cuenta ha fallado con %(ip)s:%(port)s/"
328
- "%(device)s (se volverá a intentar más tarde): Respuesta %(status)s %(reason)s"
329
-
330
- #, python-format
331
- msgid ""
332
- "ERROR Account update failed: different numbers of hosts and devices in "
333
- "request: \"%(hosts)s\" vs \"%(devices)s\""
334
- msgstr ""
335
- "ERROR La actualización de la cuenta ha fallado: hay números distintos de "
336
- "hosts y dispositivos en la solicitud: %(hosts)s\" frente a %(devices)s\""
337
-
338
- #, python-format
339
- msgid "ERROR Client read timeout (%ss)"
340
- msgstr "ERROR Tiempo de espera de lectura de cliente agotado (%ss)"
341
-
342
- #, python-format
343
- msgid ""
344
- "ERROR Container update failed (saving for async update later): %(status)d "
345
- "response from %(ip)s:%(port)s/%(dev)s"
346
- msgstr ""
347
- "ERROR La actualización del contenedor ha fallado (guardando para una "
348
- "actualización asíncrona posterior): %(status)d respuesta desde %(ip)s:"
349
- "%(port)s/%(dev)s"
350
-
351
- #, python-format
352
- msgid ""
353
- "ERROR Container update failed: different numbers of hosts and devices in "
354
- "request: \"%(hosts)s\" vs \"%(devices)s\""
355
- msgstr ""
356
- "ERROR La actualización de la cuenta ha fallado: hay números distintos de "
357
- "hosts y dispositivos en la solicitud: %(hosts)s\" frente a %(devices)s\""
358
-
359
- #, python-format
360
- msgid "ERROR Could not get account info %s"
361
- msgstr "ERROR No se ha podido obtener la información de cuenta %s"
362
-
363
- #, python-format
364
- msgid "ERROR Could not get container info %s"
365
- msgstr "ERROR No se ha podido obtener la información de contenedor %s"
366
-
367
- #, python-format
368
- msgid "ERROR DiskFile %(data_file)s close failure: %(exc)s : %(stack)s"
369
- msgstr ""
370
- "ERROR Fallo al cerrar el archivo de disco %(data_file)s: %(exc)s : %(stack)s"
371
-
372
- msgid "ERROR Exception causing client disconnect"
373
- msgstr "ERROR Excepción que provoca la desconexión del cliente"
374
-
375
- #, python-format
376
- msgid "ERROR Exception transferring data to object servers %s"
377
- msgstr "ERROR Excepción al transferir datos a los servidores de objetos %s"
378
-
379
- msgid "ERROR Failed to get my own IPs?"
380
- msgstr "ERROR ¿No puedo obtener mis propias IP?"
381
-
382
- msgid "ERROR Insufficient Storage"
383
- msgstr "ERROR No hay suficiente almacenamiento"
384
-
385
- #, python-format
386
- msgid "ERROR Object %(obj)s failed audit and was quarantined: %(err)s"
387
- msgstr ""
388
- "ERROR La auditoría del objeto %(obj)s ha fallado y se ha puesto en "
389
- "cuarentena: %(err)s"
390
-
391
- #, python-format
392
- msgid "ERROR Pickle problem, quarantining %s"
393
- msgstr "ERROR Problema de desorden, poniendo %s en cuarentena"
394
-
395
- #, python-format
396
- msgid "ERROR Remote drive not mounted %s"
397
- msgstr "ERROR Unidad remota no montada %s"
398
-
399
- #, python-format
400
- msgid "ERROR Syncing %(db_file)s %(row)s"
401
- msgstr "ERROR al sincronizar %(db_file)s %(row)s"
402
-
403
- #, python-format
404
- msgid "ERROR Syncing %s"
405
- msgstr "ERROR al sincronizar %s"
406
-
407
- #, python-format
408
- msgid "ERROR Trying to audit %s"
409
- msgstr "ERROR al intentar la auditoría de %s"
410
-
411
- msgid "ERROR Unhandled exception in request"
412
- msgstr "ERROR Excepción no controlada en la solicitud"
413
-
414
- #, python-format
415
- msgid "ERROR __call__ error with %(method)s %(path)s "
416
- msgstr "ERROR Error de __call__ con %(method)s %(path)s "
417
-
418
- #, python-format
419
- msgid ""
420
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
421
- "later)"
422
- msgstr ""
423
- "ERROR La actualización de la cuenta ha fallado con %(ip)s:%(port)s/"
424
- "%(device)s (se volverá a intentar más tarde)"
425
-
426
- #, python-format
427
- msgid ""
428
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
429
- "later): "
430
- msgstr ""
431
- "ERROR La actualización de la cuenta ha fallado con %(ip)s:%(port)s/"
432
- "%(device)s (se volverá a intentar más tarde): "
433
-
434
- #, python-format
435
- msgid "ERROR async pending file with unexpected name %s"
436
- msgstr ""
437
- "ERROR Archivo pendiente de sincronización asíncrona con nombre inesperado %s"
438
-
439
- msgid "ERROR auditing"
440
- msgstr "ERROR de auditoría"
441
-
442
- #, python-format
443
- msgid "ERROR auditing: %s"
444
- msgstr "ERROR en la auditoría: %s"
445
-
446
- #, python-format
447
- msgid ""
448
- "ERROR container update failed with %(ip)s:%(port)s/%(dev)s (saving for async "
449
- "update later)"
450
- msgstr ""
451
- "ERROR La actualización del contenedor ha fallado con %(ip)s:%(port)s/%(dev)s "
452
- "(guardando para una actualización asíncrona posterior)"
453
-
454
- msgid "ERROR get_keys() missing callback"
455
- msgstr "ERROR get_keys() No se proporciona devolución de llamada "
456
-
457
- #, python-format
458
- msgid "ERROR reading HTTP response from %s"
459
- msgstr "ERROR al leer la respuesta HTTP desde %s"
460
-
461
- #, python-format
462
- msgid "ERROR reading db %s"
463
- msgstr "ERROR al leer la base de datos %s"
464
-
465
- #, python-format
466
- msgid "ERROR rsync failed with %(code)s: %(args)s"
467
- msgstr "ERROR La resincronización ha fallado con %(code)s: %(args)s"
468
-
469
- #, python-format
470
- msgid "ERROR syncing %(file)s with node %(node)s"
471
- msgstr "ERROR al sincronizar %(file)s con el nodo %(node)s"
472
-
473
- msgid "ERROR trying to replicate"
474
- msgstr "ERROR al intentar la replicación"
475
-
476
- #, python-format
477
- msgid "ERROR while trying to clean up %s"
478
- msgstr "ERROR al intentar limpiar %s"
479
-
480
- #, python-format
481
- msgid "ERROR with %(type)s server %(ip)s:%(port)s/%(device)s re: %(info)s"
482
- msgstr "ERROR con el servidor %(type)s %(ip)s:%(port)s/%(device)s re: %(info)s"
483
-
484
- #, python-format
485
- msgid "ERROR with loading suppressions from %s: "
486
- msgstr "ERROR con las supresiones de carga desde %s: "
487
-
488
- #, python-format
489
- msgid "ERROR with remote server %(ip)s:%(port)s/%(device)s"
490
- msgstr "ERROR con el servidor remoto %(ip)s:%(port)s/%(device)s"
491
-
492
- #, python-format
493
- msgid "ERROR: Failed to get paths to drive partitions: %s"
494
- msgstr ""
495
- "ERROR: No se han podido obtener las vías de acceso a las particiones de "
496
- "unidad: %s"
497
-
498
- #, python-format
499
- msgid "ERROR: Unable to access %(path)s: %(error)s"
500
- msgstr "ERROR: no se ha podido acceder a %(path)s: %(error)s"
501
-
502
- #, python-format
503
- msgid "ERROR: Unable to run auditing: %s"
504
- msgstr "ERROR: no se ha podido ejecutar la auditoría: %s"
505
-
506
- msgid "Error hashing suffix"
507
- msgstr "Error en el hash del sufijo"
508
-
509
- #, python-format
510
- msgid "Error in %(conf)r with mtime_check_interval: %(error)s"
511
- msgstr "Error en %(conf)r con mtime_check_interval: %(error)s"
512
-
513
- msgid "Error listing devices"
514
- msgstr "Error al mostrar los dispositivos"
515
-
516
- #, python-format
517
- msgid "Error on render profiling results: %s"
518
- msgstr "Error al representar los resultados de perfil: %s"
519
-
520
- msgid "Error parsing recon cache file"
521
- msgstr "Error al analizar el archivo de memoria caché de recon"
522
-
523
- msgid "Error reading recon cache file"
524
- msgstr "Error al leer el archivo de memoria caché de recon"
525
-
526
- msgid "Error reading ringfile"
527
- msgstr "Error al leer el ringfile"
528
-
529
- msgid "Error reading swift.conf"
530
- msgstr "Error al leer swift.conf"
531
-
532
- msgid "Error retrieving recon data"
533
- msgstr "Error al recuperar los datos de recon"
534
-
535
- msgid "Error syncing handoff partition"
536
- msgstr "Error al sincronizar la partición de transferencia"
537
-
538
- msgid "Error syncing partition"
539
- msgstr "Error al sincronizar la partición"
540
-
541
- #, python-format
542
- msgid "Error syncing with node: %s"
543
- msgstr "Error en la sincronización con el nodo: %s"
544
-
545
- #, python-format
546
- msgid "Error trying to rebuild %(path)s policy#%(policy)d frag#%(frag_index)s"
547
- msgstr ""
548
- "Error al intentar reconstruir %(path)s policy#%(policy)d frag#%(frag_index)s"
549
-
550
- msgid "Error: An error occurred"
551
- msgstr "Error: se ha producido un error"
552
-
553
- msgid "Error: missing config path argument"
554
- msgstr "Error: falta el argumento de vía de acceso de configuración"
555
-
556
- #, python-format
557
- msgid "Error: unable to locate %s"
558
- msgstr "Error: no se ha podido localizar %s"
559
-
560
- #, python-format
561
- msgid "Exception with %(ip)s:%(port)s/%(device)s"
562
- msgstr "Excepción con %(ip)s:%(port)s/%(device)s"
563
-
564
- #, python-format
565
- msgid "Expect: 100-continue on %s"
566
- msgstr "Esperado: 100-continuo en %s"
567
-
568
- #, python-format
569
- msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
570
- msgstr "Siguiente cadena CNAME de %(given_domain)s a %(found_domain)s"
571
-
572
- msgid "Found configs:"
573
- msgstr "Configuraciones encontradas:"
574
-
575
- msgid ""
576
- "Handoffs first mode still has handoffs remaining. Aborting current "
577
- "replication pass."
578
- msgstr ""
579
- "El modo de transferencias primero aún tiene transferencias restantes. "
580
- "Abortando el pase de réplica actual."
581
-
582
- msgid "Host unreachable"
583
- msgstr "Host no alcanzable"
584
-
585
- #, python-format
586
- msgid "Invalid X-Container-Sync-To format %r"
587
- msgstr "Formato de X-Container-Sync-To no válido %r"
588
-
589
- #, python-format
590
- msgid "Invalid host %r in X-Container-Sync-To"
591
- msgstr "Host no válido %r en X-Container-Sync-To"
592
-
593
- #, python-format
594
- msgid "Invalid pending entry %(file)s: %(entry)s"
595
- msgstr "Entrada pendiente no válida %(file)s: %(entry)s"
596
-
597
- #, python-format
598
- msgid "Invalid response %(resp)s from %(full_path)s"
599
- msgstr "Respuesta no válida %(resp)s de %(full_path)s"
600
-
601
- #, python-format
602
- msgid "Invalid response %(resp)s from %(ip)s"
603
- msgstr "Respuesta no válida %(resp)s desde %(ip)s"
604
-
605
- #, python-format
606
- msgid ""
607
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
608
- "\"https\"."
609
- msgstr ""
610
- "Esquema no válido %r en X-Container-Sync-To, debe ser \"//\", \"http\" o "
611
- "\"https\"."
612
-
613
- #, python-format
614
- msgid "Killing long-running rsync: %s"
615
- msgstr "Interrumpiendo resincronización (rsync) de larga duración: %s"
616
-
617
- #, python-format
618
- msgid "Loading JSON from %(auditor_status)s failed (%(err)s)"
619
- msgstr "Error al cargar JSON desde %(auditor_status)s falla (%(err)s)"
620
-
621
- msgid "Lockup detected.. killing live coros."
622
- msgstr "Bloqueo detectado. Interrumpiendo coros activos."
623
-
624
- #, python-format
625
- msgid "Mapped %(given_domain)s to %(found_domain)s"
626
- msgstr "Se ha correlacionado %(given_domain)s con %(found_domain)s"
627
-
628
- #, python-format
629
- msgid "Missing key for %r"
630
- msgstr "Falta una clave en %r"
631
-
632
- #, python-format
633
- msgid "No %s running"
634
- msgstr "Ningún %s en ejecución"
635
-
636
- #, python-format
637
- msgid "No cluster endpoint for %(realm)r %(cluster)r"
638
- msgstr "No hay ningún punto final %(realm)r %(cluster)r"
639
-
640
- #, python-format
641
- msgid "No permission to signal PID %d"
642
- msgstr "No hay permiso para señalar el PID %d"
643
-
644
- #, python-format
645
- msgid "No policy with index %s"
646
- msgstr "No hay ninguna política que tenga el índice %s"
647
-
648
- #, python-format
649
- msgid "No realm key for %r"
650
- msgstr "No hay clave de dominio para %r"
651
-
652
- #, python-format
653
- msgid "No space left on device for %(file)s (%(err)s)"
654
- msgstr "No queda espacio libre en el dispositivo para %(file)s (%(err)s)"
655
-
656
- #, python-format
657
- msgid "Node error limited %(ip)s:%(port)s (%(device)s)"
658
- msgstr "Error de nodo limitado %(ip)s:%(port)s (%(device)s)"
659
-
660
- #, python-format
661
- msgid "Not enough object servers ack'ed (got %d)"
662
- msgstr "No hay suficientes servidores de objetos reconocidos (constan %d)"
663
-
664
- #, python-format
665
- msgid ""
666
- "Not found %(sync_from)r => %(sync_to)r - object "
667
- "%(obj_name)r"
668
- msgstr ""
669
- "No se ha encontrado %(sync_from)r => %(sync_to)r - "
670
- "objeto %(obj_name)rd"
671
-
672
- #, python-format
673
- msgid "Nothing reconstructed for %s seconds."
674
- msgstr "No se ha reconstruido nada durante %s segundos."
675
-
676
- #, python-format
677
- msgid "Nothing replicated for %s seconds."
678
- msgstr "No se ha replicado nada durante %s segundos."
679
-
680
- msgid "Object"
681
- msgstr "Objeto"
682
-
683
- msgid "Object PUT"
684
- msgstr "Objeto PUT"
685
-
686
- #, python-format
687
- msgid ""
688
- "Object PUT exceptions after last send, %(conns)s/%(nodes)s required "
689
- "connections"
690
- msgstr ""
691
- "excepciones de objeto PUT después de la última emisión, %(conns)s/%(nodes)s "
692
- "conexiones requeridas"
693
-
694
- #, python-format
695
- msgid ""
696
- "Object PUT exceptions during send, %(conns)s/%(nodes)s required connections"
697
- msgstr ""
698
- "excepciones de objeto PUT después de la última emisión, %(conns)s/%(nodes)s "
699
- "conexiones requeridas"
700
-
701
- #, python-format
702
- msgid "Object PUT returning 202 for 409: %(req_timestamp)s <= %(timestamps)r"
703
- msgstr ""
704
- "El objeto PUT devuelve 202 para 409: %(req_timestamp)s <= %(timestamps)r"
705
-
706
- #, python-format
707
- msgid "Object PUT returning 412, %(statuses)r"
708
- msgstr "El objeto PUT devuelve 412, %(statuses)r"
709
-
710
- #, python-format
711
- msgid "Object PUT returning 503, %(conns)s/%(nodes)s required connections"
712
- msgstr "Retorno de objecto PUT 503, %(conns)s/%(nodes)s conexiones requeridas"
713
-
714
- #, python-format
715
- msgid ""
716
- "Object audit (%(type)s) \"%(mode)s\" mode completed: %(elapsed).02fs. Total "
717
- "quarantined: %(quars)d, Total errors: %(errors)d, Total files/sec: "
718
- "%(frate).2f, Total bytes/sec: %(brate).2f, Auditing time: %(audit).2f, Rate: "
719
- "%(audit_rate).2f"
720
- msgstr ""
721
- "Auditoría de objetos (%(type)s) en modalidad \"%(mode)s\" finalizada: "
722
- "%(elapsed).02fs. Total en cuarentena: %(quars)d, Errores totales: "
723
- "%(errors)d, Archivos totales por segundo: %(frate).2f, Bytes totales por "
724
- "segundo: %(brate).2f, Tiempo de auditoría: %(audit).2f, Velocidad: "
725
- "%(audit_rate).2f"
726
-
727
- #, python-format
728
- msgid ""
729
- "Object audit (%(type)s). Since %(start_time)s: Locally: %(passes)d passed, "
730
- "%(quars)d quarantined, %(errors)d errors, files/sec: %(frate).2f, bytes/sec: "
731
- "%(brate).2f, Total time: %(total).2f, Auditing time: %(audit).2f, Rate: "
732
- "%(audit_rate).2f"
733
- msgstr ""
734
- "Auditoría de objetos (%(type)s). Desde %(start_time)s: Localmente: "
735
- "%(passes)d han pasado, %(quars)d en cuarentena, %(errors)d errores, archivos "
736
- "por segundo: %(frate).2f , bytes por segundo: %(brate).2f, Tiempo total: "
737
- "%(total).2f, Tiempo de auditoría: %(audit).2f, Velocidad: %(audit_rate).2f"
738
-
739
- #, python-format
740
- msgid "Object audit stats: %s"
741
- msgstr "Estadísticas de auditoría de objetos: %s"
742
-
743
- #, python-format
744
- msgid "Object reconstruction complete (once). (%.02f minutes)"
745
- msgstr "Reconstrucción de objeto finalizada (una vez). (%.02f minutos)"
746
-
747
- #, python-format
748
- msgid "Object reconstruction complete. (%.02f minutes)"
749
- msgstr "Reconstrucción de objeto finalizada. (%.02f minutos)"
750
-
751
- #, python-format
752
- msgid "Object replication complete (once). (%.02f minutes)"
753
- msgstr "Réplica de objeto finalizada (una vez). (%.02f minutos)"
754
-
755
- #, python-format
756
- msgid "Object replication complete. (%.02f minutes)"
757
- msgstr "Réplica de objeto finalizada. (%.02f minutos)"
758
-
759
- #, python-format
760
- msgid "Object servers returned %s mismatched etags"
761
- msgstr ""
762
- "Los servidores de objeto han devuelvo %s etiquetas (etags) no coincidentes"
763
-
764
- #, python-format
765
- msgid "Object update sweep completed: %.02fs"
766
- msgstr "Barrido de actualización del objeto finalizado: %.02fs"
767
-
768
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
769
- msgstr ""
770
- "Parámetros, consultas y fragmentos no permitidos en X-Container-Sync-To"
771
-
772
- #, python-format
773
- msgid "Partition times: max %(max).4fs, min %(min).4fs, med %(med).4fs"
774
- msgstr ""
775
- "Tiempos de partición: máximo %(max).4fs, mínimo %(min).4fs, medio %(med).4fs"
776
-
777
- #, python-format
778
- msgid "Pass completed in %(time)ds; %(objects)d objects expired"
779
- msgstr "Paso completado en %(time)ds; %(objects)d objetos caducados"
780
-
781
- #, python-format
782
- msgid "Pass so far %(time)ds; %(objects)d objects expired"
783
- msgstr "Paso hasta ahora%(time)ds; %(objects)d objetos caducados"
784
-
785
- msgid "Path required in X-Container-Sync-To"
786
- msgstr "Vía de acceso necesaria en X-Container-Sync-To"
787
-
788
- #, python-format
789
- msgid "Problem cleaning up %(datadir)s (%(err)s)"
790
- msgstr "Problema al limpiar %(datadir)s (%(err)s)"
791
-
792
- #, python-format
793
- msgid "Problem cleaning up %s"
794
- msgstr "Problema al limpiar %s"
795
-
796
- #, python-format
797
- msgid "Profiling Error: %s"
798
- msgstr "Error de perfil: %s"
799
-
800
- #, python-format
801
- msgid "Quarantined %(hsh_path)s to %(quar_path)s because it is not a directory"
802
- msgstr ""
803
- "Se ha puesto en cuarentena %(hsh_path)s en %(quar_path)s debido a que no es "
804
- "un directorio"
805
-
806
- #, python-format
807
- msgid ""
808
- "Quarantined %(object_path)s to %(quar_path)s because it is not a directory"
809
- msgstr ""
810
- "Se ha puesto en cuarentena %(object_path)s en %(quar_path)s debido a que no "
811
- "es un directorio"
812
-
813
- #, python-format
814
- msgid "Quarantining DB %s"
815
- msgstr "Poniendo en cuarentena la base de datos %s"
816
-
817
- #, python-format
818
- msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
819
- msgstr ""
820
- "Ajuste de límite de registro de suspensión: %(sleep)s para %(account)s/"
821
- "%(container)s/%(object)s"
822
-
823
- #, python-format
824
- msgid "Removed %(remove)d dbs"
825
- msgstr "Se han eliminado %(remove)d bases de datos"
826
-
827
- #, python-format
828
- msgid "Removing %s objects"
829
- msgstr "Eliminando %s objetos"
830
-
831
- #, python-format
832
- msgid "Removing partition: %s"
833
- msgstr "Eliminando partición: %s"
834
-
835
- #, python-format
836
- msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
837
- msgstr ""
838
- "Eliminando el archivo PID %(pid_file)s que tiene el PID no válido %(pid)d"
839
-
840
- #, python-format
841
- msgid "Removing pid file %s with invalid pid"
842
- msgstr "Eliminando el archivo PID %s, que tiene un PID no válido"
843
-
844
- #, python-format
845
- msgid "Removing stale pid file %s"
846
- msgstr "Eliminando fichero de identificación positiva obsoleto %s"
847
-
848
- msgid "Replication run OVER"
849
- msgstr "Ejecución de la replicación finalizada"
850
-
851
- #, python-format
852
- msgid "Returning 497 because of blacklisting: %s"
853
- msgstr "Se devuelven 497 debido a las listas negras: %s"
854
-
855
- #, python-format
856
- msgid ""
857
- "Returning 498 for %(meth)s to %(acc)s/%(cont)s/%(obj)s . Ratelimit (Max "
858
- "Sleep) %(e)s"
859
- msgstr ""
860
- "Se devuelven 498 de %(meth)s a %(acc)s/%(cont)s/%(obj)s. Ajuste de límite "
861
- "(suspensión máxima) %(e)s"
862
-
863
- msgid "Ring change detected. Aborting current reconstruction pass."
864
- msgstr ""
865
- "Cambio de anillo detectado. Abortando el pase de reconstrucción actual."
866
-
867
- msgid "Ring change detected. Aborting current replication pass."
868
- msgstr "Cambio de anillo detectado. Abortando el pase de réplica actual."
869
-
870
- #, python-format
871
- msgid "Running %s once"
872
- msgstr "Ejecutando %s una vez"
873
-
874
- msgid "Running object reconstructor in script mode."
875
- msgstr "Ejecutando reconstructor de objeto en modo script."
876
-
877
- msgid "Running object replicator in script mode."
878
- msgstr "Ejecutando replicador de objeto en modalidad de script."
879
-
880
- #, python-format
881
- msgid "Signal %(server)s pid: %(pid)s signal: %(signal)s"
882
- msgstr "Señal %(server)s pid: %(pid)s Señal : %(signal)s"
883
-
884
- #, python-format
885
- msgid ""
886
- "Since %(time)s: %(sync)s synced [%(delete)s deletes, %(put)s puts], %(skip)s "
887
- "skipped, %(fail)s failed"
888
- msgstr ""
889
- "Desde %(time)s: %(sync)s se han sincronizado [%(delete)s supresiones, "
890
- "%(put)s colocaciones], %(skip)s se han omitido, %(fail)s han fallado"
891
-
892
- #, python-format
893
- msgid ""
894
- "Since %(time)s: Account audits: %(passed)s passed audit,%(failed)s failed "
895
- "audit"
896
- msgstr ""
897
- "Desde %(time)s: Auditorías de cuenta: %(passed)s han pasado la auditoría,"
898
- "%(failed)s han fallado la auditoría"
899
-
900
- #, python-format
901
- msgid ""
902
- "Since %(time)s: Container audits: %(pass)s passed audit, %(fail)s failed "
903
- "audit"
904
- msgstr ""
905
- "Desde %(time)s: Auditorías de contenedor: %(pass)s han pasado la auditoría,"
906
- "%(fail)s han fallado la auditoría"
907
-
908
- #, python-format
909
- msgid "Skipping %s as it is not mounted"
910
- msgstr "Omitiendo %s, ya que no está montado"
911
-
912
- #, python-format
913
- msgid "Starting %s"
914
- msgstr "Iniciando %s"
915
-
916
- msgid "Starting object reconstruction pass."
917
- msgstr "Iniciando el paso de reconstrucción de objeto."
918
-
919
- msgid "Starting object reconstructor in daemon mode."
920
- msgstr "Iniciando reconstructor de objeto en modo daemon."
921
-
922
- msgid "Starting object replication pass."
923
- msgstr "Iniciando el paso de réplica de objeto."
924
-
925
- msgid "Starting object replicator in daemon mode."
926
- msgstr "Iniciando replicador de objeto en modalidad de daemon."
927
-
928
- #, python-format
929
- msgid "Successful rsync of %(src)s at %(dst)s (%(time).03f)"
930
- msgstr ""
931
- "Resincronización de %(src)s realizada con éxito en %(dst)s (%(time).03f)"
932
-
933
- msgid "The file type are forbidden to access!"
934
- msgstr "El acceso al tipo de archivo está prohibido."
935
-
936
- #, python-format
937
- msgid ""
938
- "The total %(key)s for the container (%(total)s) does not match the sum of "
939
- "%(key)s across policies (%(sum)s)"
940
- msgstr ""
941
- "El total de %(key)s del contenedor (%(total)s) no coincide con la suma de "
942
- "%(key)s en las políticas (%(sum)s)"
943
-
944
- #, python-format
945
- msgid "Trying to %(method)s %(path)s"
946
- msgstr "Intentando %(method)s %(path)s"
947
-
948
- #, python-format
949
- msgid "Trying to GET %(full_path)s"
950
- msgstr "Intentando hacer un GET de %(full_path)s"
951
-
952
- #, python-format
953
- msgid "Trying to get %(status_type)s status of PUT to %(path)s"
954
- msgstr "Intentando obtener %(status_type)s el estado de PUT a %(path)s"
955
-
956
- msgid "Trying to read during GET"
957
- msgstr "Intentado leer durante GET"
958
-
959
- msgid "Trying to send to client"
960
- msgstr "Intentando enviar al cliente"
961
-
962
- #, python-format
963
- msgid "Trying to sync suffixes with %s"
964
- msgstr "Intentando sincronizar los sufijos con %s"
965
-
966
- #, python-format
967
- msgid "Trying to write to %s"
968
- msgstr "Intentando escribir en %s"
969
-
970
- msgid "UNCAUGHT EXCEPTION"
971
- msgstr "UNCAUGHT EXCEPTION"
972
-
973
- #, python-format
974
- msgid "Unable to find %(section)s config section in %(conf)s"
975
- msgstr "No se ha podido encontrar %(section)s de la configuración en %(conf)s"
976
-
977
- #, python-format
978
- msgid "Unable to load internal client from config: %(conf)r (%(error)s)"
979
- msgstr ""
980
- "No se puede cargar el cliente interno a partir de la configuración: %(conf)r "
981
- "(%(error)s)"
982
-
983
- #, python-format
984
- msgid "Unable to locate %s in libc. Leaving as a no-op."
985
- msgstr "No se ha podido localizar %s en libc. Se dejará como no operativo."
986
-
987
- #, python-format
988
- msgid "Unable to locate config for %s"
989
- msgstr "No se ha podido encontrar el número de configuración de %s"
990
-
991
- #, python-format
992
- msgid "Unable to locate config number %(number)s for %(server)s"
993
- msgstr ""
994
- "No se ha podido encontrar el número de configuración %(number)s de %(server)s"
995
-
996
- msgid ""
997
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
998
- msgstr ""
999
- "No se ha podido localizar fallocate, posix_fallocate en libc. Se dejará como "
1000
- "no operativo."
1001
-
1002
- #, python-format
1003
- msgid "Unable to perform fsync() on directory %(dir)s: %(err)s"
1004
- msgstr "No se puede realizar fsync() en el directorio %(dir)s: %(err)s"
1005
-
1006
- #, python-format
1007
- msgid "Unable to read config from %s"
1008
- msgstr "No se ha podido leer la configuración de %s"
1009
-
1010
- #, python-format
1011
- msgid "Unauth %(sync_from)r => %(sync_to)r"
1012
- msgstr "%(sync_from)r => %(sync_to)r sin autorización"
1013
-
1014
- msgid "Unhandled exception"
1015
- msgstr "Excepción no controlada"
1016
-
1017
- #, python-format
1018
- msgid "Unknown exception trying to GET: %(account)r %(container)r %(object)r"
1019
- msgstr ""
1020
- "Se ha producido una excepción desconocida al intentar hacer un GET de: "
1021
- "%(account)r %(container)r %(object)r"
1022
-
1023
- #, python-format
1024
- msgid "Update report failed for %(container)s %(dbfile)s"
1025
- msgstr "Informe de actualización fallido para %(container)s %(dbfile)s"
1026
-
1027
- #, python-format
1028
- msgid "Update report sent for %(container)s %(dbfile)s"
1029
- msgstr "Informe de actualización enviado para %(container)s %(dbfile)s"
1030
-
1031
- msgid ""
1032
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
1033
- "termination for a production deployment."
1034
- msgstr ""
1035
- "AVISO: SSL sólo se debe habilitar con fines de prueba. Utilice la "
1036
- "terminación de SSL externa para un despliegue de producción."
1037
-
1038
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
1039
- msgstr ""
1040
- "AVISO: no se ha podido modificar el límite del descriptor de archivos. ¿Está "
1041
- "en ejecución como no root?"
1042
-
1043
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
1044
- msgstr ""
1045
- "AVISO: no se ha podido modificar el límite máximo de procesos. ¿Está en "
1046
- "ejecución como no root?"
1047
-
1048
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
1049
- msgstr ""
1050
- "AVISO: no se ha podido modificar el límite de memoria. ¿Está en ejecución "
1051
- "como no root?"
1052
-
1053
- #, python-format
1054
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
1055
- msgstr ""
1056
- "Se han esperado %(kill_wait)s segundos a que terminara %(server)s; "
1057
- "abandonando"
1058
-
1059
- #, python-format
1060
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; killing"
1061
- msgstr ""
1062
- "Se han esperado %(kill_wait)s segundos a que terminara %(server)s ; "
1063
- "terminando"
1064
-
1065
- msgid "Warning: Cannot ratelimit without a memcached client"
1066
- msgstr ""
1067
- "Aviso: no se puede ajustar el límite sin un cliente almacenado en memoria "
1068
- "caché"
1069
-
1070
- #, python-format
1071
- msgid "method %s is not allowed."
1072
- msgstr "el método %s no está permitido."
1073
-
1074
- msgid "no log file found"
1075
- msgstr "no se ha encontrado ningún archivo de registro"
1076
-
1077
- msgid "odfpy not installed."
1078
- msgstr "odfpy no está instalado."
1079
-
1080
- #, python-format
1081
- msgid "plotting results failed due to %s"
1082
- msgstr "error en el trazado de resultados debido a %s"
1083
-
1084
- msgid "python-matplotlib not installed."
1085
- msgstr "python-matplotlib no está instalado."