swift 2.23.2__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 (208) 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.2.data/scripts/swift-account-audit → swift/cli/account_audit.py +23 -13
  9. swift-2.23.2.data/scripts/swift-config → swift/cli/config.py +2 -2
  10. swift/cli/container_deleter.py +5 -11
  11. swift-2.23.2.data/scripts/swift-dispersion-populate → swift/cli/dispersion_populate.py +8 -7
  12. swift/cli/dispersion_report.py +10 -9
  13. swift-2.23.2.data/scripts/swift-drive-audit → swift/cli/drive_audit.py +63 -21
  14. swift/cli/form_signature.py +3 -7
  15. swift-2.23.2.data/scripts/swift-get-nodes → swift/cli/get_nodes.py +8 -2
  16. swift/cli/info.py +183 -29
  17. swift/cli/manage_shard_ranges.py +708 -37
  18. swift-2.23.2.data/scripts/swift-oldies → swift/cli/oldies.py +25 -14
  19. swift-2.23.2.data/scripts/swift-orphans → swift/cli/orphans.py +7 -3
  20. swift/cli/recon.py +196 -67
  21. swift-2.23.2.data/scripts/swift-recon-cron → swift/cli/recon_cron.py +17 -20
  22. swift-2.23.2.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 +198 -127
  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 +396 -147
  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 -81
  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 +52 -19
  102. swift/common/middleware/tempauth.py +76 -58
  103. swift/common/middleware/tempurl.py +192 -174
  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.2.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} +2191 -2762
  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 +555 -536
  130. swift/container/auditor.py +14 -100
  131. swift/container/backend.py +552 -227
  132. swift/container/reconciler.py +126 -37
  133. swift/container/replicator.py +96 -22
  134. swift/container/server.py +397 -176
  135. swift/container/sharder.py +1580 -639
  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 +213 -122
  146. swift/obj/ssync_receiver.py +145 -85
  147. swift/obj/ssync_sender.py +113 -54
  148. swift/obj/updater.py +653 -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 +452 -86
  154. swift/proxy/controllers/info.py +3 -2
  155. swift/proxy/controllers/obj.py +1009 -490
  156. swift/proxy/server.py +185 -112
  157. swift-2.35.0.dist-info/AUTHORS +501 -0
  158. swift-2.35.0.dist-info/LICENSE +202 -0
  159. {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/METADATA +52 -61
  160. swift-2.35.0.dist-info/RECORD +201 -0
  161. {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/WHEEL +1 -1
  162. {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/entry_points.txt +43 -0
  163. swift-2.35.0.dist-info/pbr.json +1 -0
  164. swift/locale/de/LC_MESSAGES/swift.po +0 -1216
  165. swift/locale/en_GB/LC_MESSAGES/swift.po +0 -1207
  166. swift/locale/es/LC_MESSAGES/swift.po +0 -1085
  167. swift/locale/fr/LC_MESSAGES/swift.po +0 -909
  168. swift/locale/it/LC_MESSAGES/swift.po +0 -894
  169. swift/locale/ja/LC_MESSAGES/swift.po +0 -965
  170. swift/locale/ko_KR/LC_MESSAGES/swift.po +0 -964
  171. swift/locale/pt_BR/LC_MESSAGES/swift.po +0 -881
  172. swift/locale/ru/LC_MESSAGES/swift.po +0 -891
  173. swift/locale/tr_TR/LC_MESSAGES/swift.po +0 -832
  174. swift/locale/zh_CN/LC_MESSAGES/swift.po +0 -833
  175. swift/locale/zh_TW/LC_MESSAGES/swift.po +0 -838
  176. swift-2.23.2.data/scripts/swift-account-auditor +0 -23
  177. swift-2.23.2.data/scripts/swift-account-info +0 -51
  178. swift-2.23.2.data/scripts/swift-account-reaper +0 -23
  179. swift-2.23.2.data/scripts/swift-account-replicator +0 -34
  180. swift-2.23.2.data/scripts/swift-account-server +0 -23
  181. swift-2.23.2.data/scripts/swift-container-auditor +0 -23
  182. swift-2.23.2.data/scripts/swift-container-info +0 -51
  183. swift-2.23.2.data/scripts/swift-container-reconciler +0 -21
  184. swift-2.23.2.data/scripts/swift-container-replicator +0 -34
  185. swift-2.23.2.data/scripts/swift-container-sharder +0 -33
  186. swift-2.23.2.data/scripts/swift-container-sync +0 -23
  187. swift-2.23.2.data/scripts/swift-container-updater +0 -23
  188. swift-2.23.2.data/scripts/swift-dispersion-report +0 -24
  189. swift-2.23.2.data/scripts/swift-form-signature +0 -20
  190. swift-2.23.2.data/scripts/swift-init +0 -119
  191. swift-2.23.2.data/scripts/swift-object-auditor +0 -29
  192. swift-2.23.2.data/scripts/swift-object-expirer +0 -33
  193. swift-2.23.2.data/scripts/swift-object-info +0 -60
  194. swift-2.23.2.data/scripts/swift-object-reconstructor +0 -33
  195. swift-2.23.2.data/scripts/swift-object-relinker +0 -41
  196. swift-2.23.2.data/scripts/swift-object-replicator +0 -37
  197. swift-2.23.2.data/scripts/swift-object-server +0 -27
  198. swift-2.23.2.data/scripts/swift-object-updater +0 -23
  199. swift-2.23.2.data/scripts/swift-proxy-server +0 -23
  200. swift-2.23.2.data/scripts/swift-recon +0 -24
  201. swift-2.23.2.data/scripts/swift-ring-builder +0 -24
  202. swift-2.23.2.data/scripts/swift-ring-builder-analyzer +0 -22
  203. swift-2.23.2.data/scripts/swift-ring-composer +0 -22
  204. swift-2.23.2.dist-info/DESCRIPTION.rst +0 -166
  205. swift-2.23.2.dist-info/RECORD +0 -220
  206. swift-2.23.2.dist-info/metadata.json +0 -1
  207. swift-2.23.2.dist-info/pbr.json +0 -1
  208. {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/top_level.txt +0 -0
@@ -1,1216 +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>, 2014
7
- # Ettore Atalan <atalanttore@googlemail.com>, 2014-2015
8
- # Jonas John <jonas.john@e-werkzeug.eu>, 2015
9
- # Andreas Jaeger <jaegerandi@gmail.com>, 2016. #zanata
10
- # Andreas Jaeger <jaegerandi@gmail.com>, 2019. #zanata
11
- msgid ""
12
- msgstr ""
13
- "Project-Id-Version: swift VERSION\n"
14
- "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
15
- "POT-Creation-Date: 2019-10-03 19:48+0000\n"
16
- "MIME-Version: 1.0\n"
17
- "Content-Type: text/plain; charset=UTF-8\n"
18
- "Content-Transfer-Encoding: 8bit\n"
19
- "PO-Revision-Date: 2019-10-03 06:48+0000\n"
20
- "Last-Translator: Andreas Jaeger <jaegerandi@gmail.com>\n"
21
- "Language: de\n"
22
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
- "Generated-By: Babel 2.0\n"
24
- "X-Generator: Zanata 4.3.3\n"
25
- "Language-Team: German\n"
26
-
27
- msgid ""
28
- "\n"
29
- "user quit"
30
- msgstr ""
31
- "\n"
32
- "Durch Benutzer beendet"
33
-
34
- #, python-format
35
- msgid " - %s"
36
- msgstr " - %s"
37
-
38
- #, python-format
39
- msgid " - parallel, %s"
40
- msgstr " - parallel, %s"
41
-
42
- #, python-format
43
- msgid ""
44
- "%(checked)d suffixes checked - %(hashed).2f%% hashed, %(synced).2f%% synced"
45
- msgstr ""
46
- "%(checked)d Suffixe überprüft - %(hashed).2f%% hashverschlüsselt, "
47
- "%(synced).2f%% synchronisiert"
48
-
49
- #, python-format
50
- msgid "%(msg)s %(ip)s:%(port)s/%(device)s"
51
- msgstr "%(msg)s %(ip)s:%(port)s/%(device)s"
52
-
53
- #, python-format
54
- msgid ""
55
- "%(replicated)d/%(total)d (%(percentage).2f%%) partitions replicated in "
56
- "%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
57
- msgstr ""
58
- "%(replicated)d/%(total)d (%(percentage).2f%%) Partitionen repliziert in "
59
- "%(time).2fs (%(rate).2f/s, %(remaining)s verbleibend)"
60
-
61
- #, python-format
62
- msgid "%(replication_ip)s/%(device)s responded as unmounted"
63
- msgstr "%(replication_ip)s/%(device)s antwortet als unmounted"
64
-
65
- #, python-format
66
- msgid "%(server)s #%(number)d not running (%(conf)s)"
67
- msgstr "%(server)s #%(number)d wird nicht ausgeführt (%(conf)s)"
68
-
69
- #, python-format
70
- msgid "%(server)s (%(pid)s) appears to have stopped"
71
- msgstr "%(server)s (%(pid)s) scheinbar gestoppt"
72
-
73
- #, python-format
74
- msgid "%(server)s running (%(pid)s - %(conf)s)"
75
- msgstr "%(server)s wird ausgeführt (%(pid)s - %(conf)s)"
76
-
77
- #, python-format
78
- msgid "%(server)s running (%(pid)s - %(pid_file)s)"
79
- msgstr "%(server)s wird ausgeführt (%(pid)s - %(pid_file)s)"
80
-
81
- #, python-format
82
- msgid "%(success)s successes, %(failure)s failures"
83
- msgstr "%(success)s Erfolge, %(failure)s Fehlschläge"
84
-
85
- #, python-format
86
- msgid "%(type)s returning 503 for %(statuses)s"
87
- msgstr "%(type)s gab 503 für %(statuses)s zurück"
88
-
89
- #, python-format
90
- msgid "%(type)s: %(value)s"
91
- msgstr "%(type)s: %(value)s"
92
-
93
- #, python-format
94
- msgid "%s already started..."
95
- msgstr "%s bereits gestartet..."
96
-
97
- #, python-format
98
- msgid "%s does not exist"
99
- msgstr "%s existiert nicht"
100
-
101
- #, python-format
102
- msgid "%s is not mounted"
103
- msgstr "%s ist nicht eingehängt"
104
-
105
- #, python-format
106
- msgid "%s responded as unmounted"
107
- msgstr "%s zurückgemeldet als ausgehängt"
108
-
109
- #, python-format
110
- msgid "%s: Connection reset by peer"
111
- msgstr "%s: Verbindung zurückgesetzt durch Peer"
112
-
113
- msgid "Account"
114
- msgstr "Konto"
115
-
116
- #, python-format
117
- msgid "Account audit \"once\" mode completed: %.02fs"
118
- msgstr "Kontoprüfungsmodus \"once\" abgeschlossen: %.02fs"
119
-
120
- #, python-format
121
- msgid "Account audit pass completed: %.02fs"
122
- msgstr "Kontoprüfungsdurchlauf abgeschlossen: %.02fs"
123
-
124
- #, python-format
125
- msgid ""
126
- "Adding required filter %(filter_name)s to pipeline at position %(insert_at)d"
127
- msgstr ""
128
- "Füge erforderlichen Filter %(filter_name)s zu Pipeline an Position "
129
- "%(insert_at)d hinzu"
130
-
131
- #, python-format
132
- msgid ""
133
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
134
- msgstr ""
135
- "Versuch, %(count)d Datenbanken in %(time).5f Sekunden zu replizieren "
136
- "(%(rate).5f/s)"
137
-
138
- #, python-format
139
- msgid "Audit Failed for %(path)s: %(err)s"
140
- msgstr "Prüfung fehlgeschlagen für %(path)s: %(err)s"
141
-
142
- #, python-format
143
- msgid "Audit passed for %s"
144
- msgstr "Prüfung für %s erfolgt"
145
-
146
- #, python-format
147
- msgid "Bad key for %(name)r: %(err)s"
148
- msgstr "Schlechter Schlüssel für %(name)r: %(err)s"
149
-
150
- #, python-format
151
- msgid "Bad rsync return code: %(ret)d <- %(args)s"
152
- msgstr "Falscher rsync-Rückgabecode: %(ret)d <- %(args)s"
153
-
154
- msgid "Begin account audit \"once\" mode"
155
- msgstr "Kontoprüfungsmodus \"once\" wird gestartet"
156
-
157
- msgid "Begin account audit pass."
158
- msgstr "Kontoprüfungsdurchlauf wird gestartet."
159
-
160
- msgid "Begin container audit \"once\" mode"
161
- msgstr "Containerprüfungsmodus \"once\" wird gestartet"
162
-
163
- msgid "Begin container audit pass."
164
- msgstr "Containerprüfungsdurchlauf wird gestartet."
165
-
166
- msgid "Begin container sync \"once\" mode"
167
- msgstr "Containersynchronisationsmodus \"once\" wird gestartet"
168
-
169
- msgid "Begin container update single threaded sweep"
170
- msgstr "Einzelthread-Scanvorgang für Containeraktualisierung wird gestartet"
171
-
172
- msgid "Begin container update sweep"
173
- msgstr "Scanvorgang für Containeraktualisierung wird gestartet"
174
-
175
- msgid "Begin object update single threaded sweep"
176
- msgstr "Einzelthread-Scanvorgang für Objektaktualisierung wird gestartet"
177
-
178
- msgid "Begin object update sweep"
179
- msgstr "Scanvorgang für Objektaktualisierung wird gestartet"
180
-
181
- msgid "Beginning replication run"
182
- msgstr "Replizierungsdurchlauf wird gestartet"
183
-
184
- msgid "Broker error trying to rollback locked connection"
185
- msgstr ""
186
- "Brokerfehler beim Versuch, für eine gesperrte Verbindung ein Rollback "
187
- "durchzuführen"
188
-
189
- #, python-format
190
- msgid "Can not access the file %s."
191
- msgstr "Kann nicht auf die Datei %s zugreifen."
192
-
193
- #, python-format
194
- msgid "Can not load profile data from %s."
195
- msgstr "Die Profildaten von %s können nicht geladen werden."
196
-
197
- #, python-format
198
- msgid "Cannot read %(auditor_status)s (%(err)s)"
199
- msgstr "%(auditor_status)s (%(err)s) kann nicht gelesen werden."
200
-
201
- #, python-format
202
- msgid "Cannot write %(auditor_status)s (%(err)s)"
203
- msgstr "Schreiben von %(auditor_status)s (%(err)s) nicht möglich."
204
-
205
- #, python-format
206
- msgid "Client did not read from proxy within %ss"
207
- msgstr "Client konnte nicht innerhalb von %ss vom Proxy lesen"
208
-
209
- msgid "Client disconnected on read"
210
- msgstr "Client beim Lesen getrennt"
211
-
212
- msgid "Client disconnected without sending enough data"
213
- msgstr "Client getrennt ohne dem Senden von genügend Daten"
214
-
215
- msgid "Client disconnected without sending last chunk"
216
- msgstr ""
217
- "Die Verbindung zum Client wurde getrennt, bevor der letzte Chunk gesendet "
218
- "wurde. "
219
-
220
- #, python-format
221
- msgid ""
222
- "Client path %(client)s does not match path stored in object metadata %(meta)s"
223
- msgstr ""
224
- "Clientpfad %(client)s entspricht nicht dem in den Objektmetadaten "
225
- "gespeicherten Pfad %(meta)s"
226
-
227
- msgid ""
228
- "Configuration option internal_client_conf_path not defined. Using default "
229
- "configuration, See internal-client.conf-sample for options"
230
- msgstr ""
231
- "Konfigurationsoption internal_client_conf_path nicht definiert. "
232
- "Standardkonfiguration wird verwendet. Informationen zu den Optionen finden "
233
- "Sie in internal-client.conf-sample."
234
-
235
- msgid "Connection refused"
236
- msgstr "Verbindung abgelehnt"
237
-
238
- msgid "Connection reset"
239
- msgstr "Verbindung zurückgesetzt"
240
-
241
- msgid "Connection timeout"
242
- msgstr "Verbindungszeitüberschreitung"
243
-
244
- msgid "Container"
245
- msgstr "Container"
246
-
247
- #, python-format
248
- msgid "Container audit \"once\" mode completed: %.02fs"
249
- msgstr "Containerprüfungsmodus \"once\" abgeschlossen: %.02fs"
250
-
251
- #, python-format
252
- msgid "Container audit pass completed: %.02fs"
253
- msgstr "Containerprüfungsdurchlauf abgeschlossen: %.02fs"
254
-
255
- #, python-format
256
- msgid "Container sync \"once\" mode completed: %.02fs"
257
- msgstr "Containersynchronisationsmodus \"once\" abgeschlossen: %.02fs"
258
-
259
- #, python-format
260
- msgid ""
261
- "Container sync report: %(container)s, time window start: %(start)s, time "
262
- "window end: %(end)s, puts: %(puts)s, posts: %(posts)s, deletes: %(deletes)s, "
263
- "bytes: %(bytes)s, sync_point1: %(point1)s, sync_point2: %(point2)s, "
264
- "total_rows: %(total)s"
265
- msgstr ""
266
- "Container Synchronisierungsbericht: %(container)s, Beginn Zeitfenster: "
267
- "%(start)s, Ende Zeitfenster: %(end)s, puts: %(puts)s, posts: %(posts)s, "
268
- "deletes: %(deletes)s, bytes: %(bytes)s, sync_point1: %(point1)s, "
269
- "sync_point2: %(point2)s, total_rows: %(total)s"
270
-
271
- #, python-format
272
- msgid ""
273
- "Container update single threaded sweep completed: %(elapsed).02fs, "
274
- "%(success)s successes, %(fail)s failures, %(no_change)s with no changes"
275
- msgstr ""
276
- "Einzelthread-Scanvorgang für Containeraktualisierung abgeschlossen: "
277
- "%(elapsed).02fs, %(success)s Erfolge, %(fail)s Fehler, %(no_change)s ohne "
278
- "Änderungen"
279
-
280
- #, python-format
281
- msgid "Container update sweep completed: %.02fs"
282
- msgstr "Scanvorgang für Containeraktualisierung abgeschlossen: %.02fs"
283
-
284
- #, python-format
285
- msgid ""
286
- "Container update sweep of %(path)s completed: %(elapsed).02fs, %(success)s "
287
- "successes, %(fail)s failures, %(no_change)s with no changes"
288
- msgstr ""
289
- "Scanvorgang für Containeraktualisierung von %(path)s abgeschlossen: "
290
- "%(elapsed).02fs, %(success)s Erfolge, %(fail)s Fehler, %(no_change)s ohne "
291
- "Änderungen"
292
-
293
- #, python-format
294
- msgid "Could not autocreate account %r"
295
- msgstr "Kann das Konto %r nicht automatisch erstellen"
296
-
297
- #, python-format
298
- msgid ""
299
- "Could not bind to %(addr)s:%(port)s after trying for %(timeout)s seconds"
300
- msgstr ""
301
- "Keine Bindung an %(addr)s:%(port)s möglich nach Versuch über %(timeout)s "
302
- "Sekunden"
303
-
304
- #, python-format
305
- msgid "Could not load %(conf)r: %(error)s"
306
- msgstr "%(conf)r konnte nicht geladen werden: %(error)s"
307
-
308
- #, python-format
309
- msgid "Data download error: %s"
310
- msgstr "Fehler beim Downloaden von Daten: %s"
311
-
312
- #, python-format
313
- msgid "Directory %(directory)r does not map to a valid policy (%(error)s)"
314
- msgstr ""
315
- "Das Verzeichnis %(directory)r kann keiner gültigen Richtlinie (%(error)s) "
316
- "zugeordnet werden."
317
-
318
- #, python-format
319
- msgid "ERROR %(db_file)s: %(validate_sync_to_err)s"
320
- msgstr "FEHLER %(db_file)s: %(validate_sync_to_err)s"
321
-
322
- #, python-format
323
- msgid "ERROR %(status)d %(body)s From %(type)s Server"
324
- msgstr "FEHLER %(status)d %(body)s von %(type)s Server"
325
-
326
- #, python-format
327
- msgid "ERROR %(status)d %(body)s From Object Server re: %(path)s"
328
- msgstr "FEHLER %(status)d %(body)s Vom Objektserver bezüglich: %(path)s"
329
-
330
- #, python-format
331
- msgid "ERROR %(status)d Expect: 100-continue From Object Server"
332
- msgstr "FEHLER %(status)d Erwartet: 100-continue von Objektserver"
333
-
334
- #, python-format
335
- msgid "ERROR %(status)d Trying to %(method)s %(path)s From %(type)s Server"
336
- msgstr "FEHLER %(status)d Versuch, %(method)s %(path)s von %(type)s Server"
337
-
338
- #, python-format
339
- msgid ""
340
- "ERROR Account update failed with %(ip)s:%(port)s/%(device)s (will retry "
341
- "later): Response %(status)s %(reason)s"
342
- msgstr ""
343
- "FEHLER Kontoaktualisierung fehlgeschlagen mit %(ip)s:%(port)s/%(device)s "
344
- "(wird zu einem späteren Zeitpunkt erneut versucht): Antwort %(status)s "
345
- "%(reason)s"
346
-
347
- #, python-format
348
- msgid ""
349
- "ERROR Account update failed: different numbers of hosts and devices in "
350
- "request: \"%(hosts)s\" vs \"%(devices)s\""
351
- msgstr ""
352
- "FEHLER Kontoaktualisierung fehlgeschlagen: Unterschiedliche Anzahl von Hosts "
353
- "und Einheiten in der Anforderung: \"%(hosts)s\" contra \"%(devices)s\""
354
-
355
- #, python-format
356
- msgid "ERROR Client read timeout (%ss)"
357
- msgstr "FEHLER Client-Lesezeitüberschreitung (%ss)"
358
-
359
- #, python-format
360
- msgid ""
361
- "ERROR Container update failed (saving for async update later): %(status)d "
362
- "response from %(ip)s:%(port)s/%(dev)s"
363
- msgstr ""
364
- "FEHLER Containeraktualisierung fehlgeschlagen (wird für asynchrone "
365
- "Aktualisierung zu einem späteren Zeitpunkt gespeichert): %(status)d Antwort "
366
- "von %(ip)s:%(port)s/%(dev)s"
367
-
368
- #, python-format
369
- msgid ""
370
- "ERROR Container update failed: different numbers of hosts and devices in "
371
- "request: \"%(hosts)s\" vs \"%(devices)s\""
372
- msgstr ""
373
- "FEHLER Container Aktualisierung fehlgeschlagen: Unterschiedliche Anzahl von "
374
- "Hosts und Geräten in der Anfrage: \"%(hosts)s\" vs \"%(devices)s\""
375
-
376
- #, python-format
377
- msgid "ERROR Could not get account info %s"
378
- msgstr "FEHLER Kontoinfo %s konnte nicht abgerufen werden"
379
-
380
- #, python-format
381
- msgid "ERROR Could not get container info %s"
382
- msgstr "FEHLER Containerinformation %s konnte nicht geholt werden"
383
-
384
- #, python-format
385
- msgid "ERROR DiskFile %(data_file)s close failure: %(exc)s : %(stack)s"
386
- msgstr ""
387
- "FEHLER Fehler beim Schließen von DiskFile %(data_file)s: %(exc)s : %(stack)s"
388
-
389
- msgid "ERROR Exception causing client disconnect"
390
- msgstr ""
391
- "FEHLER Ausnahme, die zu einer Unterbrechung der Verbindung zum Client führt"
392
-
393
- #, python-format
394
- msgid "ERROR Exception transferring data to object servers %s"
395
- msgstr "FEHLER: Ausnahme bei der Übertragung von Daten an die Ojektserver %s"
396
-
397
- msgid "ERROR Failed to get my own IPs?"
398
- msgstr "FEHLER Eigene IPs konnten nicht abgerufen werden?"
399
-
400
- msgid "ERROR Insufficient Storage"
401
- msgstr "FEHLER Nicht genügend Speicher"
402
-
403
- #, python-format
404
- msgid "ERROR Object %(obj)s failed audit and was quarantined: %(err)s"
405
- msgstr ""
406
- "FEHLER Objekt %(obj)s hat die Prüfung nicht bestanden und wurde unter "
407
- "Quarantäne gestellt: %(err)s"
408
-
409
- #, python-format
410
- msgid "ERROR Pickle problem, quarantining %s"
411
- msgstr "FEHLER Pickle-Problem, %s wird unter Quarantäne gestellt"
412
-
413
- #, python-format
414
- msgid "ERROR Remote drive not mounted %s"
415
- msgstr "FEHLER Entferntes Laufwerk nicht eingehängt %s"
416
-
417
- #, python-format
418
- msgid "ERROR Syncing %(db_file)s %(row)s"
419
- msgstr "FEHLER beim Synchronisieren %(db_file)s %(row)s"
420
-
421
- #, python-format
422
- msgid "ERROR Syncing %s"
423
- msgstr "FEHLER beim Synchronisieren %s"
424
-
425
- #, python-format
426
- msgid "ERROR Trying to audit %s"
427
- msgstr "FEHLER beim Versuch, %s zu prüfen"
428
-
429
- msgid "ERROR Unhandled exception in request"
430
- msgstr "FEHLER Nicht behandelte Ausnahme in Anforderung"
431
-
432
- #, python-format
433
- msgid "ERROR __call__ error with %(method)s %(path)s "
434
- msgstr "FEHLER __call__-Fehler mit %(method)s %(path)s "
435
-
436
- #, python-format
437
- msgid ""
438
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
439
- "later)"
440
- msgstr ""
441
- "FEHLER Containeraktualisierung fehlgeschlagen mit %(ip)s:%(port)s/%(device)s "
442
- "(wird zu einem späteren Zeitpunkt erneut versucht)"
443
-
444
- #, python-format
445
- msgid ""
446
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
447
- "later): "
448
- msgstr ""
449
- "FEHLER Kontoaktualisierung fehlgeschlagen mit %(ip)s:%(port)s/%(device)s "
450
- "(wird später erneut versucht): "
451
-
452
- #, python-format
453
- msgid "ERROR async pending file with unexpected name %s"
454
- msgstr "FEHLER asynchrone anstehende Datei mit unerwartetem Namen %s"
455
-
456
- msgid "ERROR auditing"
457
- msgstr "FEHLER bei der Prüfung"
458
-
459
- #, python-format
460
- msgid "ERROR auditing: %s"
461
- msgstr "FEHLER bei der Prüfung: %s"
462
-
463
- #, python-format
464
- msgid ""
465
- "ERROR container update failed with %(ip)s:%(port)s/%(dev)s (saving for async "
466
- "update later)"
467
- msgstr ""
468
- "FEHLER Containeraktualisierung fehlgeschlagen mit %(ip)s:%(port)s/%(dev)s "
469
- "(wird für asynchrone Aktualisierung zu einem späteren Zeitpunkt gespeichert)"
470
-
471
- #, python-format
472
- msgid "ERROR reading HTTP response from %s"
473
- msgstr "FEHLER beim Lesen der HTTP-Antwort von %s"
474
-
475
- #, python-format
476
- msgid "ERROR reading db %s"
477
- msgstr "FEHLER beim Lesen der Datenbank %s"
478
-
479
- #, python-format
480
- msgid "ERROR rsync failed with %(code)s: %(args)s"
481
- msgstr "FEHLER rsync fehlgeschlagen mit %(code)s: %(args)s"
482
-
483
- #, python-format
484
- msgid "ERROR syncing %(file)s with node %(node)s"
485
- msgstr ""
486
- "FEHLER beim Synchronisieren von %(file)s Dateien mit dem Knoten %(node)s"
487
-
488
- msgid "ERROR trying to replicate"
489
- msgstr "FEHLER beim Versuch zu replizieren"
490
-
491
- #, python-format
492
- msgid "ERROR while trying to clean up %s"
493
- msgstr "FEHLER beim Versuch, %s zu bereinigen"
494
-
495
- #, python-format
496
- msgid "ERROR with %(type)s server %(ip)s:%(port)s/%(device)s re: %(info)s"
497
- msgstr "FEHLER mit %(type)s Server %(ip)s:%(port)s/%(device)s AW: %(info)s"
498
-
499
- #, python-format
500
- msgid "ERROR with loading suppressions from %s: "
501
- msgstr "FEHLER beim Laden von Unterdrückungen von %s: "
502
-
503
- #, python-format
504
- msgid "ERROR with remote server %(ip)s:%(port)s/%(device)s"
505
- msgstr "FEHLER mit entferntem Server %(ip)s:%(port)s/%(device)s"
506
-
507
- #, python-format
508
- msgid "ERROR: Failed to get paths to drive partitions: %s"
509
- msgstr ""
510
- "FEHLER: Pfade zu Laufwerkpartitionen konnten nicht abgerufen werden: %s"
511
-
512
- #, python-format
513
- msgid "ERROR: Unable to access %(path)s: %(error)s"
514
- msgstr "FEHLER: Auf %(path)s kann nicht zugegriffen werden: %(error)s"
515
-
516
- #, python-format
517
- msgid "ERROR: Unable to run auditing: %s"
518
- msgstr "FEHLER: Prüfung konnte nicht durchgeführt werden: %s"
519
-
520
- #, python-format
521
- msgid ""
522
- "Error code %(status)d is returned from remote server %(ip)s: %(port)s / "
523
- "%(device)s"
524
- msgstr ""
525
- "Fehlercode %(status)d wurde vom entfernten Server %(ip)s:%(port)s / "
526
- "%(device)s zurück gegeben"
527
-
528
- #, python-format
529
- msgid "Error decoding fragments for %r"
530
- msgstr "Fehler beim Dekodieren von Fragmenten für %r"
531
-
532
- #, python-format
533
- msgid "Error decrypting %(resp_type)s: %(reason)s"
534
- msgstr "Fehler beim Entschlüsseln %(resp_type)s: %(reason)s"
535
-
536
- #, python-format
537
- msgid "Error decrypting %(resp_type)s: Missing %(key)s"
538
- msgstr "Fehler beim Entschlüsseln %(resp_type)s: Es fehlt %(key)s"
539
-
540
- #, python-format
541
- msgid "Error decrypting header %(header)s: %(error)s"
542
- msgstr "Fehler beim Entschlüsseln des header %(header)s: %(error)s"
543
-
544
- #, python-format
545
- msgid "Error decrypting object: %s"
546
- msgstr "Fehler beim Entschlüsseln object: %s"
547
-
548
- msgid "Error hashing suffix"
549
- msgstr "Fehler beim Hashing des Suffix"
550
-
551
- #, python-format
552
- msgid "Error in %(conf)r with mtime_check_interval: %(error)s"
553
- msgstr "Fehler in %(conf)r mit mtime_check_interval: %(error)s"
554
-
555
- msgid "Error listing devices"
556
- msgstr "Fehler beim Auflisten der Geräte"
557
-
558
- #, python-format
559
- msgid "Error on render profiling results: %s"
560
- msgstr "Fehler beim Wiedergeben der Profilerstellungsergebnisse: %s"
561
-
562
- msgid "Error parsing recon cache file"
563
- msgstr "Fehler beim Analysieren von recon-Zwischenspeicherdatei"
564
-
565
- msgid "Error reading recon cache file"
566
- msgstr "Fehler beim Lesen von recon-Zwischenspeicherdatei"
567
-
568
- msgid "Error reading ringfile"
569
- msgstr "Fehler beim Lesen der Ringdatei"
570
-
571
- msgid "Error reading swift.conf"
572
- msgstr "Fehler beim Lesen der swift.conf"
573
-
574
- msgid "Error retrieving recon data"
575
- msgstr "Fehler beim Abrufen der recon-Daten"
576
-
577
- #, python-format
578
- msgid "Error sending UDP message to %(target)r: %(err)s"
579
- msgstr "Fehler beim Senden von UDP Nachricht zu %(target)r: %(err)s"
580
-
581
- msgid "Error syncing handoff partition"
582
- msgstr "Fehler bei der Synchronisierung der Übergabepartition"
583
-
584
- msgid "Error syncing partition"
585
- msgstr "Fehler beim Syncen der Partition"
586
-
587
- #, python-format
588
- msgid "Error syncing with node: %s"
589
- msgstr "Fehler beim Synchronisieren mit Knoten: %s"
590
-
591
- #, python-format
592
- msgid "Error trying to rebuild %(path)s policy#%(policy)d frag#%(frag_index)s"
593
- msgstr ""
594
- "Fehler bei Versuch, erneuten Build zu erstellen für %(path)s policy#"
595
- "%(policy)d frag#%(frag_index)s"
596
-
597
- msgid "Error: An error occurred"
598
- msgstr "Fehler: Ein Fehler ist aufgetreten"
599
-
600
- msgid "Error: missing config path argument"
601
- msgstr "Fehler: fehlendes Konfigurationspfadargument"
602
-
603
- #, python-format
604
- msgid "Error: unable to locate %s"
605
- msgstr "Fehler: %s kann nicht lokalisiert werden"
606
-
607
- #, python-format
608
- msgid "Exception fetching fragments for %r"
609
- msgstr "Ausnahme beim Abrufen von Fragmenten für %r"
610
-
611
- msgid "Exception in top-level reconstruction loop"
612
- msgstr "Ausnahme in Replizierungsloop der höchsten Ebene"
613
-
614
- #, python-format
615
- msgid "Exception in top-level replication loop: %s"
616
- msgstr "Ausnahme in Replizierungsschleife der höchsten Ebene: %s"
617
-
618
- #, python-format
619
- msgid "Exception while deleting container %(account)s %(container)s %(err)s"
620
- msgstr "Ausnahme beim Löschen von Container %(account)s %(container)s %(err)s"
621
-
622
- #, python-format
623
- msgid "Exception with %(ip)s:%(port)s/%(device)s"
624
- msgstr "Ausnahme bei %(ip)s:%(port)s/%(device)s"
625
-
626
- #, python-format
627
- msgid "Expect: 100-continue on %s"
628
- msgstr "Erwartet: 100-continue auf %s"
629
-
630
- #, python-format
631
- msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
632
- msgstr "CNAME-Kette für %(given_domain)s bis %(found_domain)s wird gefolgt"
633
-
634
- msgid "Found configs:"
635
- msgstr "Gefundene Konfigurationen:"
636
-
637
- msgid ""
638
- "Handoffs first mode still has handoffs remaining. Aborting current "
639
- "replication pass."
640
- msgstr ""
641
- "Der Modus 'handoffs_first' ist noch nicht abgeschlossen. Der aktuelle "
642
- "Replikationsdurchgang wird abgebrochen."
643
-
644
- msgid ""
645
- "Handoffs only mode still has handoffs remaining. Next pass will continue to "
646
- "revert handoffs."
647
- msgstr ""
648
- "Der Modus 'handoffs_first' ist noch nicht abgeschlossen. Der nächste "
649
- "Durchgang setzt die Übergaben fort."
650
-
651
- msgid "Host unreachable"
652
- msgstr "Host nicht erreichbar"
653
-
654
- #, python-format
655
- msgid "Invalid X-Container-Sync-To format %r"
656
- msgstr "Ungültiges X-Container-Sync-To-Format %r"
657
-
658
- #, python-format
659
- msgid "Invalid host %r in X-Container-Sync-To"
660
- msgstr "Ungültiger Host %r in X-Container-Sync-To"
661
-
662
- #, python-format
663
- msgid "Invalid pending entry %(file)s: %(entry)s"
664
- msgstr "Ungültiger ausstehender Eintrag %(file)s: %(entry)s"
665
-
666
- #, python-format
667
- msgid "Invalid response %(resp)s from %(full_path)s"
668
- msgstr "Ungültige Rückmeldung %(resp)s von %(full_path)s"
669
-
670
- #, python-format
671
- msgid "Invalid response %(resp)s from %(ip)s"
672
- msgstr "Ungültige Rückmeldung %(resp)s von %(ip)s"
673
-
674
- #, python-format
675
- msgid ""
676
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
677
- "\"https\"."
678
- msgstr ""
679
- "Ungültiges Schema %r in X-Container-Sync-To, muss \"//\", \"http\" oder "
680
- "\"https\" sein."
681
-
682
- msgid "Invalid swift_bytes"
683
- msgstr "Ungültige swift_bytes"
684
-
685
- #, python-format
686
- msgid "Killing long-running rsync: %s"
687
- msgstr "Lange laufendes rsync wird gekillt: %s"
688
-
689
- #, python-format
690
- msgid "Loading JSON from %(auditor_status)s failed (%(err)s)"
691
- msgstr "Laden von JSON aus %(auditor_status)s fehlgeschlagen: (%(err)s)"
692
-
693
- msgid "Lockup detected.. killing live coros."
694
- msgstr "Suche erkannt. Live-Coros werden gelöscht."
695
-
696
- #, python-format
697
- msgid "Mapped %(given_domain)s to %(found_domain)s"
698
- msgstr "%(given_domain)s zugeordnet zu %(found_domain)s"
699
-
700
- #, python-format
701
- msgid "Missing key for %r"
702
- msgstr "Fehlender Schlüssel für %r"
703
-
704
- msgid "Network unreachable"
705
- msgstr "Netzwerk nicht erreichbar"
706
-
707
- #, python-format
708
- msgid "No %s running"
709
- msgstr "Kein %s läuft"
710
-
711
- #, python-format
712
- msgid "No cluster endpoint for %(realm)r %(cluster)r"
713
- msgstr "Kein Cluster-Endpunkt für %(realm)r %(cluster)r"
714
-
715
- #, python-format
716
- msgid "No permission to signal PID %d"
717
- msgstr "Keine Berechtigung zu Signal-Programmkennung %d"
718
-
719
- #, python-format
720
- msgid "No policy with index %s"
721
- msgstr "Keine Richtlinie mit Index %s"
722
-
723
- #, python-format
724
- msgid "No realm key for %r"
725
- msgstr "Kein Bereichsschlüssel für %r"
726
-
727
- #, python-format
728
- msgid "No space left on device for %(file)s (%(err)s)"
729
- msgstr "Kein freier Speicherplatz im Gerät für %(file)s (%(err)s) vorhanden."
730
-
731
- #, python-format
732
- msgid "Node error limited %(ip)s:%(port)s (%(device)s)"
733
- msgstr "Knotenfehler begrenzt %(ip)s:%(port)s (%(device)s)"
734
-
735
- #, python-format
736
- msgid "Not enough object servers ack'ed (got %d)"
737
- msgstr "Es wurden nicht genügend Objektserver bestätigt (got %d)."
738
-
739
- #, python-format
740
- msgid ""
741
- "Not found %(sync_from)r => %(sync_to)r - object "
742
- "%(obj_name)r"
743
- msgstr ""
744
- "Nicht gefunden %(sync_from)r => %(sync_to)r - Objekt "
745
- "%(obj_name)r"
746
-
747
- #, python-format
748
- msgid "Nothing reconstructed for %s seconds."
749
- msgstr "Für %s Sekunden nichts rekonstruiert."
750
-
751
- #, python-format
752
- msgid "Nothing replicated for %s seconds."
753
- msgstr "Für %s Sekunden nichts repliziert."
754
-
755
- msgid "Object"
756
- msgstr "Objekt"
757
-
758
- msgid "Object PUT"
759
- msgstr "Objekt PUT"
760
-
761
- #, python-format
762
- msgid ""
763
- "Object PUT exceptions after last send, %(conns)s/%(nodes)s required "
764
- "connections"
765
- msgstr ""
766
- "Objekt PUT Ausnahme nach letztem Senden, %(conns)s/%(nodes)s erfordert eine "
767
- "Verbindung"
768
-
769
- #, python-format
770
- msgid ""
771
- "Object PUT exceptions during send, %(conns)s/%(nodes)s required connections"
772
- msgstr ""
773
- "Objekt PUT Ausnahme beim Senden %(conns)s/%(nodes)s erfordern eine Verbindung"
774
-
775
- #, python-format
776
- msgid "Object PUT returning 202 for 409: %(req_timestamp)s <= %(timestamps)r"
777
- msgstr ""
778
- "PUT-Operation für ein Objekt gibt 202 für 409 zurück: %(req_timestamp)s <= "
779
- "%(timestamps)r"
780
-
781
- #, python-format
782
- msgid "Object PUT returning 412, %(statuses)r"
783
- msgstr "Objekt PUT Rückgabe 412, %(statuses)r"
784
-
785
- #, python-format
786
- msgid "Object PUT returning 503, %(conns)s/%(nodes)s required connections"
787
- msgstr ""
788
- "Objekt PUT gibt 503 zurück, %(conns)s/%(nodes)s erfordert eine Verbindung"
789
-
790
- #, python-format
791
- msgid ""
792
- "Object audit (%(type)s) \"%(mode)s\" mode completed: %(elapsed).02fs. Total "
793
- "quarantined: %(quars)d, Total errors: %(errors)d, Total files/sec: "
794
- "%(frate).2f, Total bytes/sec: %(brate).2f, Auditing time: %(audit).2f, Rate: "
795
- "%(audit_rate).2f"
796
- msgstr ""
797
- "Objektprüfung (%(type)s) \"%(mode)s\" Modus abgeschlossen: %(elapsed).02fs. "
798
- "Unter Quarantäne gestellt insgesamt: %(quars)d, Fehler insgesamt: "
799
- "%(errors)d, Dateien/s insgesamt: %(frate).2f, Bytes/s insgesamt: "
800
- "%(brate).2f, Prüfungszeit: %(audit).2f, Geschwindigkeit: %(audit_rate).2f"
801
-
802
- #, python-format
803
- msgid ""
804
- "Object audit (%(type)s). Since %(start_time)s: Locally: %(passes)d passed, "
805
- "%(quars)d quarantined, %(errors)d errors, files/sec: %(frate).2f, bytes/sec: "
806
- "%(brate).2f, Total time: %(total).2f, Auditing time: %(audit).2f, Rate: "
807
- "%(audit_rate).2f"
808
- msgstr ""
809
- "Objektprüfung (%(type)s). Seit %(start_time)s: Lokal: %(passes)d übergeben, "
810
- "%(quars)d unter Quarantäne gestellt, %(errors)d Fehler, Dateien/s: "
811
- "%(frate).2f, Bytes/s: %(brate).2f, Zeit insgesamt: %(total).2f, "
812
- "Prüfungszeit: %(audit).2f, Geschwindigkeit: %(audit_rate).2f"
813
-
814
- #, python-format
815
- msgid "Object audit stats: %s"
816
- msgstr "Objektprüfungsstatistik: %s"
817
-
818
- #, python-format
819
- msgid "Object reconstruction complete (once). (%.02f minutes)"
820
- msgstr "Objektrekonstruktion vollständig (einmal). (%.02f Minuten)"
821
-
822
- #, python-format
823
- msgid "Object reconstruction complete. (%.02f minutes)"
824
- msgstr "Objektrekonstruktion vollständig. (%.02f Minuten)"
825
-
826
- #, python-format
827
- msgid "Object replication complete (once). (%.02f minutes)"
828
- msgstr "Objektreplizierung abgeschlossen (einmal). (%.02f Minuten)"
829
-
830
- #, python-format
831
- msgid "Object replication complete. (%.02f minutes)"
832
- msgstr "Objektreplikation vollständig. (%.02f Minuten)"
833
-
834
- #, python-format
835
- msgid "Object servers returned %s mismatched etags"
836
- msgstr "Objektserver haben %s nicht übereinstimmende Etags zurückgegeben"
837
-
838
- #, python-format
839
- msgid "Object update sweep completed: %.02fs"
840
- msgstr "Scanvorgang für Objektaktualisierung abgeschlossen: %.02fs"
841
-
842
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
843
- msgstr ""
844
- "Parameter, Abfragen und Fragmente nicht zulässig in X-Container-Sync-To"
845
-
846
- #, python-format
847
- msgid "Partition times: max %(max).4fs, min %(min).4fs, med %(med).4fs"
848
- msgstr ""
849
- "Partitionszeiten: max. %(max).4fs, min. %(min).4fs, durchschnittl. %(med).4fs"
850
-
851
- #, python-format
852
- msgid "Pass so far %(time)ds; %(objects)d objects expired"
853
- msgstr "Bisherige Durchgänge %(time)ds; %(objects)d Objekte abgelaufen"
854
-
855
- msgid "Path required in X-Container-Sync-To"
856
- msgstr "Pfad in X-Container-Sync-To ist erforderlich"
857
-
858
- #, python-format
859
- msgid "Pipeline is \"%s\""
860
- msgstr "Pipeline ist \"%s\""
861
-
862
- #, python-format
863
- msgid "Pipeline was modified. New pipeline is \"%s\"."
864
- msgstr "Pipeline wurde geändert. Neue Pipeline ist \"%s\"."
865
-
866
- #, python-format
867
- msgid "Problem checking EC fragment %(datadir)s: %(err)s"
868
- msgstr "Problemüberprüfung EC Fragment %(datadir)s: %(err)s"
869
-
870
- #, python-format
871
- msgid "Problem cleaning up %(datadir)s (%(err)s)"
872
- msgstr "Problem bei der Bereinigung von %(datadir)s (%(err)s)"
873
-
874
- #, python-format
875
- msgid "Problem cleaning up %s"
876
- msgstr "Problem bei der Bereinigung von %s"
877
-
878
- #, python-format
879
- msgid "Problem with fragment response: %s"
880
- msgstr "Problem mit Antwort von Fragment: %s"
881
-
882
- #, python-format
883
- msgid "Profiling Error: %s"
884
- msgstr "Fehler bei der Profilerstellung: %s"
885
-
886
- #, python-format
887
- msgid "Quarantined %(db_dir)s to %(quar_path)s due to %(reason)s"
888
- msgstr ""
889
- "%(db_dir)s nach %(quar_path)s aufgrund von %(reason)s in Quarantäne "
890
- "verschoben."
891
-
892
- #, python-format
893
- msgid "Quarantined %(hsh_path)s to %(quar_path)s because it is not a directory"
894
- msgstr ""
895
- "%(hsh_path)s bis %(quar_path)s wurden unter Quarantäne gestellt, da es sich "
896
- "nicht um ein Verzeichnis handelt"
897
-
898
- #, python-format
899
- msgid ""
900
- "Quarantined %(object_path)s to %(quar_path)s because it is not a directory"
901
- msgstr ""
902
- "%(object_path)s bis %(quar_path)s wurden unter Quarantäne gestellt, da es "
903
- "sich nicht um ein Verzeichnis handelt"
904
-
905
- #, python-format
906
- msgid "Quarantining DB %s"
907
- msgstr "Datenbank %s wird unter Quarantäne gestellt"
908
-
909
- #, python-format
910
- msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
911
- msgstr ""
912
- "Inaktivitätsprotokoll für Geschwindigkeitsbegrenzung: %(sleep)s für "
913
- "%(account)s/%(container)s/%(object)s"
914
-
915
- #, python-format
916
- msgid "Removed %(remove)d dbs"
917
- msgstr "%(remove)d Datenbanken entfernt"
918
-
919
- #, python-format
920
- msgid "Removing %s objects"
921
- msgstr "%s Objekte werden entfernt"
922
-
923
- #, python-format
924
- msgid "Removing partition: %s"
925
- msgstr "Partition wird entfernt: %s"
926
-
927
- #, python-format
928
- msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
929
- msgstr "PID-Datei %(pid_file)s mit falscher PID %(pid)d wird entfernt"
930
-
931
- #, python-format
932
- msgid "Removing pid file %s with invalid pid"
933
- msgstr "PID-Datei %s mit ungültiger PID wird entfernt."
934
-
935
- #, python-format
936
- msgid "Removing stale pid file %s"
937
- msgstr "Veraltete PID-Datei %s wird entfernt"
938
-
939
- msgid "Replication run OVER"
940
- msgstr "Replizierungsdurchlauf ABGESCHLOSSEN"
941
-
942
- #, python-format
943
- msgid "Returning 497 because of blacklisting: %s"
944
- msgstr "497 wird aufgrund von Blacklisting zurückgegeben: %s"
945
-
946
- #, python-format
947
- msgid ""
948
- "Returning 498 for %(meth)s to %(acc)s/%(cont)s/%(obj)s . Ratelimit (Max "
949
- "Sleep) %(e)s"
950
- msgstr ""
951
- "498 wird für %(meth)s auf %(acc)s/%(cont)s/%(obj)s zurückgegeben. "
952
- "Geschwindigkeitsbegrenzung (Max. Inaktivität) %(e)s"
953
-
954
- msgid "Ring change detected. Aborting current reconstruction pass."
955
- msgstr ""
956
- "Ringänderung erkannt. Aktueller Rekonstruktionsdurchgang wird abgebrochen."
957
-
958
- msgid "Ring change detected. Aborting current replication pass."
959
- msgstr ""
960
- "Ringänderung erkannt. Aktueller Replizierungsdurchlauf wird abgebrochen."
961
-
962
- #, python-format
963
- msgid "Running %s once"
964
- msgstr "%s läuft einmal"
965
-
966
- msgid "Running object reconstructor in script mode."
967
- msgstr "Objektrekonstruktor läuft im Skriptmodus."
968
-
969
- msgid "Running object replicator in script mode."
970
- msgstr "Objektreplikator läuft im Skriptmodus."
971
-
972
- #, python-format
973
- msgid "Signal %(server)s pid: %(pid)s signal: %(signal)s"
974
- msgstr "Signal %(server)s PID: %(pid)s Signal: %(signal)s"
975
-
976
- #, python-format
977
- msgid ""
978
- "Since %(time)s: %(sync)s synced [%(delete)s deletes, %(put)s puts], %(skip)s "
979
- "skipped, %(fail)s failed"
980
- msgstr ""
981
- "Seit %(time)s: %(sync)s synchronisiert [%(delete)s Löschungen, %(put)s "
982
- "Puts], %(skip)s übersprungen, %(fail)s fehlgeschlagen"
983
-
984
- #, python-format
985
- msgid ""
986
- "Since %(time)s: Account audits: %(passed)s passed audit,%(failed)s failed "
987
- "audit"
988
- msgstr ""
989
- "Seit %(time)s: Kontoprüfungen: %(passed)s bestandene Prüfung,%(failed)s "
990
- "nicht bestandene Prüfung"
991
-
992
- #, python-format
993
- msgid ""
994
- "Since %(time)s: Container audits: %(pass)s passed audit, %(fail)s failed "
995
- "audit"
996
- msgstr ""
997
- "Seit %(time)s: Containerprüfungen: %(pass)s bestandene Prüfung, %(fail)s "
998
- "nicht bestandene Prüfung"
999
-
1000
- #, python-format
1001
- msgid "Skipping %(datadir)s because %(err)s"
1002
- msgstr "Überspringe %(datadir)s aufgrund %(err)s"
1003
-
1004
- #, python-format
1005
- msgid "Skipping %s as it is not mounted"
1006
- msgstr "%s wird übersprungen, weil es nicht eingehängt ist"
1007
-
1008
- #, python-format
1009
- msgid "Starting %s"
1010
- msgstr "%s wird gestartet"
1011
-
1012
- msgid "Starting object reconstruction pass."
1013
- msgstr "Objektrekonstruktionsdurchgang wird gestartet."
1014
-
1015
- msgid "Starting object reconstructor in daemon mode."
1016
- msgstr "Objektrekonstruktor wird im Daemon-Modus gestartet."
1017
-
1018
- msgid "Starting object replication pass."
1019
- msgstr "Objektreplikationsdurchgang wird gestartet."
1020
-
1021
- msgid "Starting object replicator in daemon mode."
1022
- msgstr "Objektreplikator wird im Dämonmodus gestartet."
1023
-
1024
- #, python-format
1025
- msgid "Successful rsync of %(src)s at %(dst)s (%(time).03f)"
1026
- msgstr "Erfolgreiches rsync von %(src)s um %(dst)s (%(time).03f)"
1027
-
1028
- msgid "The file type are forbidden to access!"
1029
- msgstr "Auf den Dateityp darf nicht zugegriffen werden!"
1030
-
1031
- #, python-format
1032
- msgid ""
1033
- "The total %(key)s for the container (%(total)s) does not match the sum of "
1034
- "%(key)s across policies (%(sum)s)"
1035
- msgstr ""
1036
- "Die Gesamtsumme an %(key)s für den Container (%(total)s) entspricht nicht "
1037
- "der Summe der %(key)s für alle Richtlinien (%(sum)s)"
1038
-
1039
- #, python-format
1040
- msgid "Timeout fetching fragments for %r"
1041
- msgstr "Zeitüberschreitung beim Abrufen von Fragmenten für %r"
1042
-
1043
- #, python-format
1044
- msgid "Trying to %(method)s %(path)s"
1045
- msgstr "Versuch, %(method)s %(path)s"
1046
-
1047
- #, python-format
1048
- msgid "Trying to GET %(full_path)s"
1049
- msgstr "Versuch, %(full_path)s mit GET abzurufen"
1050
-
1051
- #, python-format
1052
- msgid "Trying to get %(status_type)s status of PUT to %(path)s"
1053
- msgstr ""
1054
- "Es wird versucht, %(status_type)s Status von PUT für %(path)s abzurufen"
1055
-
1056
- msgid "Trying to read during GET"
1057
- msgstr "Versuch, während des GET-Vorgangs zu lesen"
1058
-
1059
- msgid "Trying to read object during GET (retrying)"
1060
- msgstr "Versuch, während des GET-Vorgangs zu lesen (Wiederholung)"
1061
-
1062
- msgid "Trying to send to client"
1063
- msgstr "Versuch, an den Client zu senden"
1064
-
1065
- #, python-format
1066
- msgid "Trying to sync suffixes with %s"
1067
- msgstr "Es wird versucht, Suffixe mit %s zu synchronisieren."
1068
-
1069
- #, python-format
1070
- msgid "Trying to write to %s"
1071
- msgstr "Versuch, an %s zu schreiben"
1072
-
1073
- msgid "UNCAUGHT EXCEPTION"
1074
- msgstr "NICHT ABGEFANGENE AUSNAHME"
1075
-
1076
- #, python-format
1077
- msgid "Unable to find %(section)s config section in %(conf)s"
1078
- msgstr ""
1079
- "%(section)s-Konfigurationsabschnitt in %(conf)s kann nicht gefunden werden"
1080
-
1081
- #, python-format
1082
- msgid "Unable to load internal client from config: %(conf)r (%(error)s)"
1083
- msgstr ""
1084
- "Interner Client konnte nicht aus der Konfiguration geladen werden: %(conf)r "
1085
- "(%(error)s)"
1086
-
1087
- #, python-format
1088
- msgid "Unable to locate %s in libc. Leaving as a no-op."
1089
- msgstr ""
1090
- "%s konnte nicht in libc gefunden werden. Wird als Nullbefehl verlassen."
1091
-
1092
- #, python-format
1093
- msgid "Unable to locate config for %s"
1094
- msgstr "Konfiguration für %s wurde nicht gefunden."
1095
-
1096
- #, python-format
1097
- msgid "Unable to locate config number %(number)s for %(server)s"
1098
- msgstr "Konfigurationsnummer %(number)s für %(server)s wurde nicht gefunden."
1099
-
1100
- msgid ""
1101
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
1102
- msgstr ""
1103
- "fallocate, posix_fallocate konnte nicht in libc gefunden werden. Wird als "
1104
- "Nullbefehl verlassen."
1105
-
1106
- #, python-format
1107
- msgid "Unable to perform fsync() on directory %(dir)s: %(err)s"
1108
- msgstr "fsync() kann für Verzeichnis %(dir)s nicht ausgeführt werden: %(err)s"
1109
-
1110
- #, python-format
1111
- msgid "Unable to read config from %s"
1112
- msgstr "Konfiguration aus %s kann nicht gelesen werden"
1113
-
1114
- #, python-format
1115
- msgid "Unauth %(sync_from)r => %(sync_to)r"
1116
- msgstr "Nicht genehmigte %(sync_from)r => %(sync_to)r"
1117
-
1118
- #, python-format
1119
- msgid ""
1120
- "Unexpected fragment data type (not quarantined) %(datadir)s: %(type)s at "
1121
- "offset 0x%(offset)x"
1122
- msgstr ""
1123
- "Unerwarteter Fragment Datentyp (nicht unter Quarantäne) %(datadir)s: "
1124
- "%(type)s at offset 0x%(offset)x"
1125
-
1126
- msgid "Unhandled exception"
1127
- msgstr "Nicht behandelte Exception"
1128
-
1129
- #, python-format
1130
- msgid "Unknown exception trying to GET: %(account)r %(container)r %(object)r"
1131
- msgstr ""
1132
- "Unbekannte Ausnahme bei GET-Versuch: %(account)r %(container)r %(object)r"
1133
-
1134
- #, python-format
1135
- msgid "Update report failed for %(container)s %(dbfile)s"
1136
- msgstr "Aktualisierungsbericht fehlgeschlagen für %(container)s %(dbfile)s"
1137
-
1138
- #, python-format
1139
- msgid "Update report sent for %(container)s %(dbfile)s"
1140
- msgstr "Aktualisierungsbericht gesendet für %(container)s %(dbfile)s"
1141
-
1142
- msgid ""
1143
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
1144
- "termination for a production deployment."
1145
- msgstr ""
1146
- "WARNUNG: SSL sollte nur zu Testzwecken aktiviert werden. Verwenden Sie die "
1147
- "externe SSL-Beendigung für eine Implementierung in der Produktionsumgebung."
1148
-
1149
- msgid ""
1150
- "WARNING: Unable to modify I/O scheduling class and priority of process. "
1151
- "Keeping unchanged! Check logs for more info."
1152
- msgstr ""
1153
- "WARNUNG: I/O Planungsklasse und Priorität des Prozesses können nicht "
1154
- "geändert werden. Es werden keine Änderungen vorgenommen! Überprüfen Sie die "
1155
- "Log-Dateien für mehr Informationen."
1156
-
1157
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
1158
- msgstr ""
1159
- "WARNUNG: Grenzwert für Dateideskriptoren kann nicht geändert werden. Wird "
1160
- "nicht als Root ausgeführt?"
1161
-
1162
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
1163
- msgstr ""
1164
- "WARNUNG: Grenzwert für maximale Verarbeitung kann nicht geändert werden. "
1165
- "Wird nicht als Root ausgeführt?"
1166
-
1167
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
1168
- msgstr ""
1169
- "WARNUNG: Grenzwert für Speicher kann nicht geändert werden. Wird nicht als "
1170
- "Root ausgeführt?"
1171
-
1172
- msgid ""
1173
- "WARNING: Unable to modify scheduling priority of process. Keeping unchanged! "
1174
- "Check logs for more info. "
1175
- msgstr ""
1176
- "WARNUNG: Priorität der Planung des Prozesses kann nicht geändert werden. Es "
1177
- "wird keine Änderung vorgenommen! Überprüfen Sie die Log-Dateien für mehr "
1178
- "Informationen."
1179
-
1180
- #, python-format
1181
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
1182
- msgstr ""
1183
- "Hat %(kill_wait)s Sekunden für %(server)s zum Erlöschen gewartet; Gibt auf"
1184
-
1185
- #, python-format
1186
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; killing"
1187
- msgstr ""
1188
- "Hat %(kill_wait)s Sekunden für %(server)s zum Erlöschen gewartet. Wird "
1189
- "abgebrochen."
1190
-
1191
- msgid "Warning: Cannot ratelimit without a memcached client"
1192
- msgstr ""
1193
- "Warnung: Geschwindigkeitsbegrenzung kann nicht ohne memcached-Client "
1194
- "durchgeführt werden"
1195
-
1196
- #, python-format
1197
- msgid "autocreate account %r"
1198
- msgstr "Automatisch erstelltes Konto %r"
1199
-
1200
- #, python-format
1201
- msgid "method %s is not allowed."
1202
- msgstr "Methode %s ist nicht erlaubt."
1203
-
1204
- msgid "no log file found"
1205
- msgstr "keine Protokolldatei gefunden"
1206
-
1207
- msgid "odfpy not installed."
1208
- msgstr "odfpy ist nicht installiert."
1209
-
1210
- #, python-format
1211
- msgid "plotting results failed due to %s"
1212
- msgstr ""
1213
- "Die grafische Darstellung der Ergebnisse ist fehlgeschlagen aufgrund von %s"
1214
-
1215
- msgid "python-matplotlib not installed."
1216
- msgstr "python-matplotlib ist nicht installiert."