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,1207 +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
- # Andi Chandler <andi@gowling.com>, 2016. #zanata
7
- # Andreas Jaeger <jaegerandi@gmail.com>, 2016. #zanata
8
- # Andi Chandler <andi@gowling.com>, 2018. #zanata
9
- msgid ""
10
- msgstr ""
11
- "Project-Id-Version: swift VERSION\n"
12
- "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
13
- "POT-Creation-Date: 2019-10-03 19:48+0000\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "PO-Revision-Date: 2018-08-08 09:56+0000\n"
18
- "Last-Translator: Andi Chandler <andi@gowling.com>\n"
19
- "Language: en_GB\n"
20
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
- "Generated-By: Babel 2.0\n"
22
- "X-Generator: Zanata 4.3.3\n"
23
- "Language-Team: English (United Kingdom)\n"
24
-
25
- msgid ""
26
- "\n"
27
- "user quit"
28
- msgstr ""
29
- "\n"
30
- "user quit"
31
-
32
- #, python-format
33
- msgid " - %s"
34
- msgstr " - %s"
35
-
36
- #, python-format
37
- msgid " - parallel, %s"
38
- msgstr " - parallel, %s"
39
-
40
- #, python-format
41
- msgid ""
42
- "%(checked)d suffixes checked - %(hashed).2f%% hashed, %(synced).2f%% synced"
43
- msgstr ""
44
- "%(checked)d suffixes checked - %(hashed).2f%% hashed, %(synced).2f%% synced"
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
- "%(reconstructed)d/%(total)d (%(percentage).2f%%) partitions reconstructed in "
53
- "%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
54
- msgstr ""
55
- "%(reconstructed)d/%(total)d (%(percentage).2f%%) partitions reconstructed in "
56
- "%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
57
-
58
- #, python-format
59
- msgid ""
60
- "%(replicated)d/%(total)d (%(percentage).2f%%) partitions replicated in "
61
- "%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
62
- msgstr ""
63
- "%(replicated)d/%(total)d (%(percentage).2f%%) partitions replicated in "
64
- "%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
65
-
66
- #, python-format
67
- msgid "%(replication_ip)s/%(device)s responded as unmounted"
68
- msgstr "%(replication_ip)s/%(device)s responded as unmounted"
69
-
70
- #, python-format
71
- msgid "%(server)s #%(number)d not running (%(conf)s)"
72
- msgstr "%(server)s #%(number)d not running (%(conf)s)"
73
-
74
- #, python-format
75
- msgid "%(server)s (%(pid)s) appears to have stopped"
76
- msgstr "%(server)s (%(pid)s) appears to have stopped"
77
-
78
- #, python-format
79
- msgid "%(server)s running (%(pid)s - %(conf)s)"
80
- msgstr "%(server)s running (%(pid)s - %(conf)s)"
81
-
82
- #, python-format
83
- msgid "%(server)s running (%(pid)s - %(pid_file)s)"
84
- msgstr "%(server)s running (%(pid)s - %(pid_file)s)"
85
-
86
- #, python-format
87
- msgid "%(success)s successes, %(failure)s failures"
88
- msgstr "%(success)s successes, %(failure)s failures"
89
-
90
- #, python-format
91
- msgid "%(type)s returning 503 for %(statuses)s"
92
- msgstr "%(type)s returning 503 for %(statuses)s"
93
-
94
- #, python-format
95
- msgid "%(type)s: %(value)s"
96
- msgstr "%(type)s: %(value)s"
97
-
98
- #, python-format
99
- msgid "%s already started..."
100
- msgstr "%s already started..."
101
-
102
- #, python-format
103
- msgid "%s does not exist"
104
- msgstr "%s does not exist"
105
-
106
- #, python-format
107
- msgid "%s is not mounted"
108
- msgstr "%s is not mounted"
109
-
110
- #, python-format
111
- msgid "%s responded as unmounted"
112
- msgstr "%s responded as unmounted"
113
-
114
- #, python-format
115
- msgid "%s: Connection reset by peer"
116
- msgstr "%s: Connection reset by peer"
117
-
118
- msgid "Account"
119
- msgstr "Account"
120
-
121
- #, python-format
122
- msgid "Account audit \"once\" mode completed: %.02fs"
123
- msgstr "Account audit \"once\" mode completed: %.02fs"
124
-
125
- #, python-format
126
- msgid "Account audit pass completed: %.02fs"
127
- msgstr "Account audit pass completed: %.02fs"
128
-
129
- #, python-format
130
- msgid ""
131
- "Adding required filter %(filter_name)s to pipeline at position %(insert_at)d"
132
- msgstr ""
133
- "Adding required filter %(filter_name)s to pipeline at position %(insert_at)d"
134
-
135
- #, python-format
136
- msgid ""
137
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
138
- msgstr ""
139
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
140
-
141
- #, python-format
142
- msgid "Audit Failed for %(path)s: %(err)s"
143
- msgstr "Audit Failed for %(path)s: %(err)s"
144
-
145
- #, python-format
146
- msgid "Audit passed for %s"
147
- msgstr "Audit passed for %s"
148
-
149
- #, python-format
150
- msgid "Bad key for %(name)r: %(err)s"
151
- msgstr "Bad key for %(name)r: %(err)s"
152
-
153
- #, python-format
154
- msgid "Bad rsync return code: %(ret)d <- %(args)s"
155
- msgstr "Bad rsync return code: %(ret)d <- %(args)s"
156
-
157
- msgid "Begin account audit \"once\" mode"
158
- msgstr "Begin account audit \"once\" mode"
159
-
160
- msgid "Begin account audit pass."
161
- msgstr "Begin account audit pass."
162
-
163
- msgid "Begin container audit \"once\" mode"
164
- msgstr "Begin container audit \"once\" mode"
165
-
166
- msgid "Begin container audit pass."
167
- msgstr "Begin container audit pass."
168
-
169
- msgid "Begin container sync \"once\" mode"
170
- msgstr "Begin container sync \"once\" mode"
171
-
172
- msgid "Begin container update single threaded sweep"
173
- msgstr "Begin container update single threaded sweep"
174
-
175
- msgid "Begin container update sweep"
176
- msgstr "Begin container update sweep"
177
-
178
- #, python-format
179
- msgid "Begin object audit \"%(mode)s\" mode (%(audi_type)s%(description)s)"
180
- msgstr "Begin object audit \"%(mode)s\" mode (%(audi_type)s%(description)s)"
181
-
182
- msgid "Begin object update single threaded sweep"
183
- msgstr "Begin object update single threaded sweep"
184
-
185
- msgid "Begin object update sweep"
186
- msgstr "Begin object update sweep"
187
-
188
- msgid "Beginning replication run"
189
- msgstr "Beginning replication run"
190
-
191
- msgid "Broker error trying to rollback locked connection"
192
- msgstr "Broker error trying to rollback locked connection"
193
-
194
- #, python-format
195
- msgid "Can not access the file %s."
196
- msgstr "Can not access the file %s."
197
-
198
- #, python-format
199
- msgid "Can not load profile data from %s."
200
- msgstr "Can not load profile data from %s."
201
-
202
- #, python-format
203
- msgid "Cannot read %(auditor_status)s (%(err)s)"
204
- msgstr "Cannot read %(auditor_status)s (%(err)s)"
205
-
206
- #, python-format
207
- msgid "Cannot write %(auditor_status)s (%(err)s)"
208
- msgstr "Cannot write %(auditor_status)s (%(err)s)"
209
-
210
- #, python-format
211
- msgid "Client did not read from proxy within %ss"
212
- msgstr "Client did not read from proxy within %ss"
213
-
214
- msgid "Client disconnected on read"
215
- msgstr "Client disconnected on read"
216
-
217
- msgid "Client disconnected without sending enough data"
218
- msgstr "Client disconnected without sending enough data"
219
-
220
- msgid "Client disconnected without sending last chunk"
221
- msgstr "Client disconnected without sending last chunk"
222
-
223
- #, python-format
224
- msgid ""
225
- "Client path %(client)s does not match path stored in object metadata %(meta)s"
226
- msgstr ""
227
- "Client path %(client)s does not match path stored in object metadata %(meta)s"
228
-
229
- msgid ""
230
- "Configuration option internal_client_conf_path not defined. Using default "
231
- "configuration, See internal-client.conf-sample for options"
232
- msgstr ""
233
- "Configuration option internal_client_conf_path not defined. Using default "
234
- "configuration, See internal-client.conf-sample for options"
235
-
236
- msgid "Connection refused"
237
- msgstr "Connection refused"
238
-
239
- msgid "Connection reset"
240
- msgstr "Connection reset"
241
-
242
- msgid "Connection timeout"
243
- msgstr "Connection timeout"
244
-
245
- msgid "Container"
246
- msgstr "Container"
247
-
248
- #, python-format
249
- msgid "Container audit \"once\" mode completed: %.02fs"
250
- msgstr "Container audit \"once\" mode completed: %.02fs"
251
-
252
- #, python-format
253
- msgid "Container audit pass completed: %.02fs"
254
- msgstr "Container audit pass completed: %.02fs"
255
-
256
- #, python-format
257
- msgid "Container sync \"once\" mode completed: %.02fs"
258
- msgstr "Container sync \"once\" mode completed: %.02fs"
259
-
260
- #, python-format
261
- msgid ""
262
- "Container sync report: %(container)s, time window start: %(start)s, time "
263
- "window end: %(end)s, puts: %(puts)s, posts: %(posts)s, deletes: %(deletes)s, "
264
- "bytes: %(bytes)s, sync_point1: %(point1)s, sync_point2: %(point2)s, "
265
- "total_rows: %(total)s"
266
- msgstr ""
267
- "Container sync report: %(container)s, time window start: %(start)s, time "
268
- "window end: %(end)s, puts: %(puts)s, posts: %(posts)s, deletes: %(deletes)s, "
269
- "bytes: %(bytes)s, sync_point1: %(point1)s, sync_point2: %(point2)s, "
270
- "total_rows: %(total)s"
271
-
272
- #, python-format
273
- msgid ""
274
- "Container update single threaded sweep completed: %(elapsed).02fs, "
275
- "%(success)s successes, %(fail)s failures, %(no_change)s with no changes"
276
- msgstr ""
277
- "Container update single threaded sweep completed: %(elapsed).02fs, "
278
- "%(success)s successes, %(fail)s failures, %(no_change)s with no changes"
279
-
280
- #, python-format
281
- msgid "Container update sweep completed: %.02fs"
282
- msgstr "Container update sweep completed: %.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
- "Container update sweep of %(path)s completed: %(elapsed).02fs, %(success)s "
290
- "successes, %(fail)s failures, %(no_change)s with no changes"
291
-
292
- #, python-format
293
- msgid "Could not autocreate account %r"
294
- msgstr "Could not autocreate account %r"
295
-
296
- #, python-format
297
- msgid ""
298
- "Could not bind to %(addr)s:%(port)s after trying for %(timeout)s seconds"
299
- msgstr ""
300
- "Could not bind to %(addr)s:%(port)s after trying for %(timeout)s seconds"
301
-
302
- #, python-format
303
- msgid "Could not load %(conf)r: %(error)s"
304
- msgstr "Could not load %(conf)r: %(error)s"
305
-
306
- #, python-format
307
- msgid "Data download error: %s"
308
- msgstr "Data download error: %s"
309
-
310
- msgid "Did not get a keys dict"
311
- msgstr "Did not get a keys dict"
312
-
313
- #, python-format
314
- msgid "Directory %(directory)r does not map to a valid policy (%(error)s)"
315
- msgstr "Directory %(directory)r does not map to a valid policy (%(error)s)"
316
-
317
- #, python-format
318
- msgid "ERROR %(db_file)s: %(validate_sync_to_err)s"
319
- msgstr "ERROR %(db_file)s: %(validate_sync_to_err)s"
320
-
321
- #, python-format
322
- msgid "ERROR %(status)d %(body)s From %(type)s Server"
323
- msgstr "ERROR %(status)d %(body)s From %(type)s Server"
324
-
325
- #, python-format
326
- msgid "ERROR %(status)d %(body)s From Object Server re: %(path)s"
327
- msgstr "ERROR %(status)d %(body)s From Object Server re: %(path)s"
328
-
329
- #, python-format
330
- msgid "ERROR %(status)d Expect: 100-continue From Object Server"
331
- msgstr "ERROR %(status)d Expect: 100-continue From Object Server"
332
-
333
- #, python-format
334
- msgid "ERROR %(status)d Trying to %(method)s %(path)s From %(type)s Server"
335
- msgstr "ERROR %(status)d Trying to %(method)s %(path)s From %(type)s Server"
336
-
337
- #, python-format
338
- msgid ""
339
- "ERROR Account update failed with %(ip)s:%(port)s/%(device)s (will retry "
340
- "later): Response %(status)s %(reason)s"
341
- msgstr ""
342
- "ERROR Account update failed with %(ip)s:%(port)s/%(device)s (will retry "
343
- "later): Response %(status)s %(reason)s"
344
-
345
- #, python-format
346
- msgid ""
347
- "ERROR Account update failed: different numbers of hosts and devices in "
348
- "request: \"%(hosts)s\" vs \"%(devices)s\""
349
- msgstr ""
350
- "ERROR Account update failed: different numbers of hosts and devices in "
351
- "request: \"%(hosts)s\" vs \"%(devices)s\""
352
-
353
- #, python-format
354
- msgid "ERROR Client read timeout (%ss)"
355
- msgstr "ERROR Client read timeout (%ss)"
356
-
357
- #, python-format
358
- msgid ""
359
- "ERROR Container update failed (saving for async update later): %(status)d "
360
- "response from %(ip)s:%(port)s/%(dev)s"
361
- msgstr ""
362
- "ERROR Container update failed (saving for async update later): %(status)d "
363
- "response from %(ip)s:%(port)s/%(dev)s"
364
-
365
- #, python-format
366
- msgid ""
367
- "ERROR Container update failed: different numbers of hosts and devices in "
368
- "request: \"%(hosts)s\" vs \"%(devices)s\""
369
- msgstr ""
370
- "ERROR Container update failed: different numbers of hosts and devices in "
371
- "request: \"%(hosts)s\" vs \"%(devices)s\""
372
-
373
- #, python-format
374
- msgid "ERROR Could not get account info %s"
375
- msgstr "ERROR Could not get account info %s"
376
-
377
- #, python-format
378
- msgid "ERROR Could not get container info %s"
379
- msgstr "ERROR Could not get container info %s"
380
-
381
- #, python-format
382
- msgid "ERROR DiskFile %(data_file)s close failure: %(exc)s : %(stack)s"
383
- msgstr "ERROR DiskFile %(data_file)s close failure: %(exc)s : %(stack)s"
384
-
385
- msgid "ERROR Exception causing client disconnect"
386
- msgstr "ERROR Exception causing client disconnect"
387
-
388
- #, python-format
389
- msgid "ERROR Exception transferring data to object servers %s"
390
- msgstr "ERROR Exception transferring data to object servers %s"
391
-
392
- msgid "ERROR Failed to get my own IPs?"
393
- msgstr "ERROR Failed to get my own IPs?"
394
-
395
- msgid "ERROR Insufficient Storage"
396
- msgstr "ERROR Insufficient Storage"
397
-
398
- #, python-format
399
- msgid "ERROR Object %(obj)s failed audit and was quarantined: %(err)s"
400
- msgstr "ERROR Object %(obj)s failed audit and was quarantined: %(err)s"
401
-
402
- #, python-format
403
- msgid "ERROR Pickle problem, quarantining %s"
404
- msgstr "ERROR Pickle problem, quarantining %s"
405
-
406
- #, python-format
407
- msgid "ERROR Remote drive not mounted %s"
408
- msgstr "ERROR Remote drive not mounted %s"
409
-
410
- #, python-format
411
- msgid "ERROR Syncing %(db_file)s %(row)s"
412
- msgstr "ERROR Syncing %(db_file)s %(row)s"
413
-
414
- #, python-format
415
- msgid "ERROR Syncing %s"
416
- msgstr "ERROR Syncing %s"
417
-
418
- #, python-format
419
- msgid ""
420
- "ERROR There are not enough handoff nodes to reach replica count for "
421
- "partition %s"
422
- msgstr ""
423
- "ERROR There are not enough hand-off nodes to reach replica count for "
424
- "partition %s"
425
-
426
- #, python-format
427
- msgid "ERROR Trying to audit %s"
428
- msgstr "ERROR Trying to audit %s"
429
-
430
- msgid "ERROR Unhandled exception in request"
431
- msgstr "ERROR Unhandled exception in request"
432
-
433
- #, python-format
434
- msgid "ERROR __call__ error with %(method)s %(path)s "
435
- msgstr "ERROR __call__ error with %(method)s %(path)s "
436
-
437
- #, python-format
438
- msgid ""
439
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
440
- "later)"
441
- msgstr ""
442
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
443
- "later)"
444
-
445
- #, python-format
446
- msgid ""
447
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
448
- "later): "
449
- msgstr ""
450
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
451
- "later): "
452
-
453
- #, python-format
454
- msgid "ERROR async pending file with unexpected name %s"
455
- msgstr "ERROR async pending file with unexpected name %s"
456
-
457
- msgid "ERROR auditing"
458
- msgstr "ERROR auditing"
459
-
460
- #, python-format
461
- msgid "ERROR auditing: %s"
462
- msgstr "ERROR auditing: %s"
463
-
464
- #, python-format
465
- msgid ""
466
- "ERROR container update failed with %(ip)s:%(port)s/%(dev)s (saving for async "
467
- "update later)"
468
- msgstr ""
469
- "ERROR container update failed with %(ip)s:%(port)s/%(dev)s (saving for async "
470
- "update later)"
471
-
472
- msgid "ERROR get_keys() missing callback"
473
- msgstr "ERROR get_keys() missing callback"
474
-
475
- #, python-format
476
- msgid "ERROR reading HTTP response from %s"
477
- msgstr "ERROR reading HTTP response from %s"
478
-
479
- #, python-format
480
- msgid "ERROR reading db %s"
481
- msgstr "ERROR reading db %s"
482
-
483
- #, python-format
484
- msgid "ERROR rsync failed with %(code)s: %(args)s"
485
- msgstr "ERROR rsync failed with %(code)s: %(args)s"
486
-
487
- #, python-format
488
- msgid "ERROR syncing %(file)s with node %(node)s"
489
- msgstr "ERROR syncing %(file)s with node %(node)s"
490
-
491
- msgid "ERROR trying to replicate"
492
- msgstr "ERROR trying to replicate"
493
-
494
- #, python-format
495
- msgid "ERROR while trying to clean up %s"
496
- msgstr "ERROR while trying to clean up %s"
497
-
498
- #, python-format
499
- msgid "ERROR with %(type)s server %(ip)s:%(port)s/%(device)s re: %(info)s"
500
- msgstr "ERROR with %(type)s server %(ip)s:%(port)s/%(device)s re: %(info)s"
501
-
502
- #, python-format
503
- msgid "ERROR with loading suppressions from %s: "
504
- msgstr "ERROR with loading suppressions from %s: "
505
-
506
- #, python-format
507
- msgid "ERROR with remote server %(ip)s:%(port)s/%(device)s"
508
- msgstr "ERROR with remote server %(ip)s:%(port)s/%(device)s"
509
-
510
- #, python-format
511
- msgid "ERROR: Failed to get paths to drive partitions: %s"
512
- msgstr "ERROR: Failed to get paths to drive partitions: %s"
513
-
514
- #, python-format
515
- msgid "ERROR: Unable to access %(path)s: %(error)s"
516
- msgstr "ERROR: Unable to access %(path)s: %(error)s"
517
-
518
- #, python-format
519
- msgid "ERROR: Unable to run auditing: %s"
520
- msgstr "ERROR: Unable to run auditing: %s"
521
-
522
- #, python-format
523
- msgid ""
524
- "Error code %(status)d is returned from remote server %(ip)s: %(port)s / "
525
- "%(device)s"
526
- msgstr ""
527
- "Error code %(status)d is returned from remote server %(ip)s: %(port)s / "
528
- "%(device)s"
529
-
530
- #, python-format
531
- msgid "Error decoding fragments for %r"
532
- msgstr "Error decoding fragments for %r"
533
-
534
- #, python-format
535
- msgid "Error decrypting %(resp_type)s: %(reason)s"
536
- msgstr "Error decrypting %(resp_type)s: %(reason)s"
537
-
538
- #, python-format
539
- msgid "Error decrypting %(resp_type)s: Missing %(key)s"
540
- msgstr "Error decrypting %(resp_type)s: Missing %(key)s"
541
-
542
- #, python-format
543
- msgid "Error decrypting header %(header)s: %(error)s"
544
- msgstr "Error decrypting header %(header)s: %(error)s"
545
-
546
- #, python-format
547
- msgid "Error decrypting object: %s"
548
- msgstr "Error decrypting object: %s"
549
-
550
- msgid "Error hashing suffix"
551
- msgstr "Error hashing suffix"
552
-
553
- #, python-format
554
- msgid "Error in %(conf)r with mtime_check_interval: %(error)s"
555
- msgstr "Error in %(conf)r with mtime_check_interval: %(error)s"
556
-
557
- msgid "Error listing devices"
558
- msgstr "Error listing devices"
559
-
560
- #, python-format
561
- msgid "Error on render profiling results: %s"
562
- msgstr "Error on render profiling results: %s"
563
-
564
- msgid "Error parsing recon cache file"
565
- msgstr "Error parsing recon cache file"
566
-
567
- msgid "Error reading recon cache file"
568
- msgstr "Error reading recon cache file"
569
-
570
- msgid "Error reading ringfile"
571
- msgstr "Error reading ringfile"
572
-
573
- msgid "Error reading swift.conf"
574
- msgstr "Error reading swift.conf"
575
-
576
- msgid "Error retrieving recon data"
577
- msgstr "Error retrieving recon data"
578
-
579
- #, python-format
580
- msgid "Error sending UDP message to %(target)r: %(err)s"
581
- msgstr "Error sending UDP message to %(target)r: %(err)s"
582
-
583
- msgid "Error syncing handoff partition"
584
- msgstr "Error syncing hand-off partition"
585
-
586
- msgid "Error syncing partition"
587
- msgstr "Error syncing partition"
588
-
589
- #, python-format
590
- msgid "Error syncing with node: %s"
591
- msgstr "Error syncing with node: %s"
592
-
593
- #, python-format
594
- msgid "Error trying to rebuild %(path)s policy#%(policy)d frag#%(frag_index)s"
595
- msgstr "Error trying to rebuild %(path)s policy#%(policy)d frag#%(frag_index)s"
596
-
597
- msgid "Error: An error occurred"
598
- msgstr "Error: An error occurred"
599
-
600
- msgid "Error: missing config path argument"
601
- msgstr "Error: missing config path argument"
602
-
603
- #, python-format
604
- msgid "Error: unable to locate %s"
605
- msgstr "Error: unable to locate %s"
606
-
607
- #, python-format
608
- msgid "Exception fetching fragments for %r"
609
- msgstr "Exception fetching fragments for %r"
610
-
611
- #, python-format
612
- msgid "Exception in top-level replication loop: %s"
613
- msgstr "Exception in top-level replication loop: %s"
614
-
615
- #, python-format
616
- msgid "Exception while deleting container %(account)s %(container)s %(err)s"
617
- msgstr "Exception while deleting container %(account)s %(container)s %(err)s"
618
-
619
- #, python-format
620
- msgid "Exception with %(ip)s:%(port)s/%(device)s"
621
- msgstr "Exception with %(ip)s:%(port)s/%(device)s"
622
-
623
- #, python-format
624
- msgid "Expect: 100-continue on %s"
625
- msgstr "Expect: 100-continue on %s"
626
-
627
- #, python-format
628
- msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
629
- msgstr "Following CNAME chain for %(given_domain)s to %(found_domain)s"
630
-
631
- msgid "Found configs:"
632
- msgstr "Found configs:"
633
-
634
- msgid ""
635
- "Handoffs first mode still has handoffs remaining. Aborting current "
636
- "replication pass."
637
- msgstr ""
638
- "Hand-offs first mode still has hand-offs remaining. Aborting current "
639
- "replication pass."
640
-
641
- msgid ""
642
- "Handoffs only mode found no handoffs remaining. You should disable "
643
- "handoffs_only once all nodes are reporting no handoffs remaining."
644
- msgstr ""
645
- "Hand-offs only mode found no hand-offs remaining. You should disable "
646
- "handoffs_only once all nodes are reporting no hand-offs remaining."
647
-
648
- msgid ""
649
- "Handoffs only mode still has handoffs remaining. Next pass will continue to "
650
- "revert handoffs."
651
- msgstr ""
652
- "Hand-offs only mode still has hand-offs remaining. Next pass will continue "
653
- "to revert hand-offs."
654
-
655
- msgid "Host unreachable"
656
- msgstr "Host unreachable"
657
-
658
- #, python-format
659
- msgid "Invalid X-Container-Sync-To format %r"
660
- msgstr "Invalid X-Container-Sync-To format %r"
661
-
662
- #, python-format
663
- msgid "Invalid host %r in X-Container-Sync-To"
664
- msgstr "Invalid host %r in X-Container-Sync-To"
665
-
666
- #, python-format
667
- msgid "Invalid pending entry %(file)s: %(entry)s"
668
- msgstr "Invalid pending entry %(file)s: %(entry)s"
669
-
670
- #, python-format
671
- msgid "Invalid response %(resp)s from %(full_path)s"
672
- msgstr "Invalid response %(resp)s from %(full_path)s"
673
-
674
- #, python-format
675
- msgid "Invalid response %(resp)s from %(ip)s"
676
- msgstr "Invalid response %(resp)s from %(ip)s"
677
-
678
- #, python-format
679
- msgid ""
680
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
681
- "\"https\"."
682
- msgstr ""
683
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
684
- "\"https\"."
685
-
686
- msgid "Invalid swift_bytes"
687
- msgstr "Invalid swift_bytes"
688
-
689
- #, python-format
690
- msgid "Killing long-running rsync: %s"
691
- msgstr "Killing long-running rsync: %s"
692
-
693
- #, python-format
694
- msgid "Loading JSON from %(auditor_status)s failed (%(err)s)"
695
- msgstr "Loading JSON from %(auditor_status)s failed (%(err)s)"
696
-
697
- msgid "Lockup detected.. killing live coros."
698
- msgstr "Lockup detected.. killing live coros."
699
-
700
- #, python-format
701
- msgid "Mapped %(given_domain)s to %(found_domain)s"
702
- msgstr "Mapped %(given_domain)s to %(found_domain)s"
703
-
704
- #, python-format
705
- msgid "Missing key for %r"
706
- msgstr "Missing key for %r"
707
-
708
- msgid "More than one part in a single-part response?"
709
- msgstr "More than one part in a single-part response?"
710
-
711
- msgid "Network unreachable"
712
- msgstr "Network unreachable"
713
-
714
- #, python-format
715
- msgid "No %s running"
716
- msgstr "No %s running"
717
-
718
- #, python-format
719
- msgid "No cluster endpoint for %(realm)r %(cluster)r"
720
- msgstr "No cluster endpoint for %(realm)r %(cluster)r"
721
-
722
- #, python-format
723
- msgid "No permission to signal PID %d"
724
- msgstr "No permission to signal PID %d"
725
-
726
- #, python-format
727
- msgid "No policy with index %s"
728
- msgstr "No policy with index %s"
729
-
730
- #, python-format
731
- msgid "No realm key for %r"
732
- msgstr "No realm key for %r"
733
-
734
- #, python-format
735
- msgid "No space left on device for %(file)s (%(err)s)"
736
- msgstr "No space left on device for %(file)s (%(err)s)"
737
-
738
- #, python-format
739
- msgid "Node error limited %(ip)s:%(port)s (%(device)s)"
740
- msgstr "Node error limited %(ip)s:%(port)s (%(device)s)"
741
-
742
- #, python-format
743
- msgid "Not enough object servers ack'ed (got %d)"
744
- msgstr "Not enough object servers ack'ed (got %d)"
745
-
746
- #, python-format
747
- msgid ""
748
- "Not found %(sync_from)r => %(sync_to)r - object "
749
- "%(obj_name)r"
750
- msgstr ""
751
- "Not found %(sync_from)r => %(sync_to)r - object "
752
- "%(obj_name)r"
753
-
754
- #, python-format
755
- msgid "Nothing reconstructed for %s seconds."
756
- msgstr "Nothing reconstructed for %s seconds."
757
-
758
- #, python-format
759
- msgid "Nothing replicated for %s seconds."
760
- msgstr "Nothing replicated for %s seconds."
761
-
762
- msgid "Object"
763
- msgstr "Object"
764
-
765
- msgid "Object PUT"
766
- msgstr "Object PUT"
767
-
768
- #, python-format
769
- msgid ""
770
- "Object PUT exceptions after last send, %(conns)s/%(nodes)s required "
771
- "connections"
772
- msgstr ""
773
- "Object PUT exceptions after last send, %(conns)s/%(nodes)s required "
774
- "connections"
775
-
776
- #, python-format
777
- msgid ""
778
- "Object PUT exceptions during send, %(conns)s/%(nodes)s required connections"
779
- msgstr ""
780
- "Object PUT exceptions during send, %(conns)s/%(nodes)s required connections"
781
-
782
- #, python-format
783
- msgid "Object PUT returning 202 for 409: %(req_timestamp)s <= %(timestamps)r"
784
- msgstr "Object PUT returning 202 for 409: %(req_timestamp)s <= %(timestamps)r"
785
-
786
- #, python-format
787
- msgid "Object PUT returning 412, %(statuses)r"
788
- msgstr "Object PUT returning 412, %(statuses)r"
789
-
790
- #, python-format
791
- msgid "Object PUT returning 503, %(conns)s/%(nodes)s required connections"
792
- msgstr "Object PUT returning 503, %(conns)s/%(nodes)s required connections"
793
-
794
- #, python-format
795
- msgid ""
796
- "Object audit (%(type)s) \"%(mode)s\" mode completed: %(elapsed).02fs. Total "
797
- "quarantined: %(quars)d, Total errors: %(errors)d, Total files/sec: "
798
- "%(frate).2f, Total bytes/sec: %(brate).2f, Auditing time: %(audit).2f, Rate: "
799
- "%(audit_rate).2f"
800
- msgstr ""
801
- "Object audit (%(type)s) \"%(mode)s\" mode completed: %(elapsed).02fs. Total "
802
- "quarantined: %(quars)d, Total errors: %(errors)d, Total files/sec: "
803
- "%(frate).2f, Total bytes/sec: %(brate).2f, Auditing time: %(audit).2f, Rate: "
804
- "%(audit_rate).2f"
805
-
806
- #, python-format
807
- msgid ""
808
- "Object audit (%(type)s). Since %(start_time)s: Locally: %(passes)d passed, "
809
- "%(quars)d quarantined, %(errors)d errors, files/sec: %(frate).2f, bytes/sec: "
810
- "%(brate).2f, Total time: %(total).2f, Auditing time: %(audit).2f, Rate: "
811
- "%(audit_rate).2f"
812
- msgstr ""
813
- "Object audit (%(type)s). Since %(start_time)s: Locally: %(passes)d passed, "
814
- "%(quars)d quarantined, %(errors)d errors, files/sec: %(frate).2f, bytes/sec: "
815
- "%(brate).2f, Total time: %(total).2f, Auditing time: %(audit).2f, Rate: "
816
- "%(audit_rate).2f"
817
-
818
- #, python-format
819
- msgid "Object audit stats: %s"
820
- msgstr "Object audit stats: %s"
821
-
822
- #, python-format
823
- msgid "Object reconstruction complete (once). (%.02f minutes)"
824
- msgstr "Object reconstruction complete (once). (%.02f minutes)"
825
-
826
- #, python-format
827
- msgid "Object reconstruction complete. (%.02f minutes)"
828
- msgstr "Object reconstruction complete. (%.02f minutes)"
829
-
830
- #, python-format
831
- msgid "Object replication complete (once). (%.02f minutes)"
832
- msgstr "Object replication complete (once). (%.02f minutes)"
833
-
834
- #, python-format
835
- msgid "Object replication complete. (%.02f minutes)"
836
- msgstr "Object replication complete. (%.02f minutes)"
837
-
838
- #, python-format
839
- msgid "Object servers returned %s mismatched etags"
840
- msgstr "Object servers returned %s mismatched etags"
841
-
842
- #, python-format
843
- msgid "Object update sweep completed: %.02fs"
844
- msgstr "Object update sweep completed: %.02fs"
845
-
846
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
847
- msgstr "Params, queries, and fragments not allowed in X-Container-Sync-To"
848
-
849
- #, python-format
850
- msgid "Partition times: max %(max).4fs, min %(min).4fs, med %(med).4fs"
851
- msgstr "Partition times: max %(max).4fs, min %(min).4fs, med %(med).4fs"
852
-
853
- #, python-format
854
- msgid ""
855
- "Pass beginning for task account %(account)s; %(container_count)s possible "
856
- "containers; %(obj_count)s possible objects"
857
- msgstr ""
858
- "Pass beginning for task account %(account)s; %(container_count)s possible "
859
- "containers; %(obj_count)s possible objects"
860
-
861
- #, python-format
862
- msgid "Pass completed in %(time)ds; %(objects)d objects expired"
863
- msgstr "Pass completed in %(time)ds; %(objects)d objects expired"
864
-
865
- #, python-format
866
- msgid "Pass so far %(time)ds; %(objects)d objects expired"
867
- msgstr "Pass so far %(time)ds; %(objects)d objects expired"
868
-
869
- msgid "Path required in X-Container-Sync-To"
870
- msgstr "Path required in X-Container-Sync-To"
871
-
872
- #, python-format
873
- msgid "Pipeline is \"%s\""
874
- msgstr "Pipeline is \"%s\""
875
-
876
- #, python-format
877
- msgid "Pipeline was modified. New pipeline is \"%s\"."
878
- msgstr "Pipeline was modified. New pipeline is \"%s\"."
879
-
880
- #, python-format
881
- msgid "Problem checking EC fragment %(datadir)s: %(err)s"
882
- msgstr "Problem checking EC fragment %(datadir)s: %(err)s"
883
-
884
- #, python-format
885
- msgid "Problem cleaning up %(datadir)s (%(err)s)"
886
- msgstr "Problem cleaning up %(datadir)s (%(err)s)"
887
-
888
- #, python-format
889
- msgid "Problem cleaning up %s"
890
- msgstr "Problem cleaning up %s"
891
-
892
- #, python-format
893
- msgid "Problem making data file durable %(file)s (%(err)s)"
894
- msgstr "Problem making data file durable %(file)s (%(err)s)"
895
-
896
- #, python-format
897
- msgid "Problem with fragment response: %s"
898
- msgstr "Problem with fragment response: %s"
899
-
900
- #, python-format
901
- msgid "Profiling Error: %s"
902
- msgstr "Profiling Error: %s"
903
-
904
- #, python-format
905
- msgid "Quarantined %(db_dir)s to %(quar_path)s due to %(reason)s"
906
- msgstr "Quarantined %(db_dir)s to %(quar_path)s due to %(reason)s"
907
-
908
- #, python-format
909
- msgid "Quarantined %(hsh_path)s to %(quar_path)s because it is not a directory"
910
- msgstr ""
911
- "Quarantined %(hsh_path)s to %(quar_path)s because it is not a directory"
912
-
913
- #, python-format
914
- msgid ""
915
- "Quarantined %(object_path)s to %(quar_path)s because it is not a directory"
916
- msgstr ""
917
- "Quarantined %(object_path)s to %(quar_path)s because it is not a directory"
918
-
919
- #, python-format
920
- msgid "Quarantining DB %s"
921
- msgstr "Quarantining DB %s"
922
-
923
- #, python-format
924
- msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
925
- msgstr ""
926
- "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
927
-
928
- #, python-format
929
- msgid "Removed %(remove)d dbs"
930
- msgstr "Removed %(remove)d dbs"
931
-
932
- #, python-format
933
- msgid "Removing %s objects"
934
- msgstr "Removing %s objects"
935
-
936
- #, python-format
937
- msgid "Removing partition: %s"
938
- msgstr "Removing partition: %s"
939
-
940
- #, python-format
941
- msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
942
- msgstr "Removing pid file %(pid_file)s with wrong pid %(pid)d"
943
-
944
- #, python-format
945
- msgid "Removing pid file %s with invalid pid"
946
- msgstr "Removing pid file %s with invalid pid"
947
-
948
- #, python-format
949
- msgid "Removing stale pid file %s"
950
- msgstr "Removing stale pid file %s"
951
-
952
- msgid "Replication run OVER"
953
- msgstr "Replication run OVER"
954
-
955
- #, python-format
956
- msgid "Returning 497 because of blacklisting: %s"
957
- msgstr "Returning 497 because of blacklisting: %s"
958
-
959
- #, python-format
960
- msgid ""
961
- "Returning 498 for %(meth)s to %(acc)s/%(cont)s/%(obj)s . Ratelimit (Max "
962
- "Sleep) %(e)s"
963
- msgstr ""
964
- "Returning 498 for %(meth)s to %(acc)s/%(cont)s/%(obj)s . Ratelimit (Max "
965
- "Sleep) %(e)s"
966
-
967
- msgid "Ring change detected. Aborting current reconstruction pass."
968
- msgstr "Ring change detected. Aborting current reconstruction pass."
969
-
970
- msgid "Ring change detected. Aborting current replication pass."
971
- msgstr "Ring change detected. Aborting current replication pass."
972
-
973
- #, python-format
974
- msgid "Running %s once"
975
- msgstr "Running %s once"
976
-
977
- msgid "Running object reconstructor in script mode."
978
- msgstr "Running object reconstructor in script mode."
979
-
980
- msgid "Running object replicator in script mode."
981
- msgstr "Running object replicator in script mode."
982
-
983
- #, python-format
984
- msgid "Signal %(server)s pid: %(pid)s signal: %(signal)s"
985
- msgstr "Signal %(server)s pid: %(pid)s signal: %(signal)s"
986
-
987
- #, python-format
988
- msgid ""
989
- "Since %(time)s: %(sync)s synced [%(delete)s deletes, %(put)s puts], %(skip)s "
990
- "skipped, %(fail)s failed"
991
- msgstr ""
992
- "Since %(time)s: %(sync)s synced [%(delete)s deletes, %(put)s puts], %(skip)s "
993
- "skipped, %(fail)s failed"
994
-
995
- #, python-format
996
- msgid ""
997
- "Since %(time)s: Account audits: %(passed)s passed audit,%(failed)s failed "
998
- "audit"
999
- msgstr ""
1000
- "Since %(time)s: Account audits: %(passed)s passed audit,%(failed)s failed "
1001
- "audit"
1002
-
1003
- #, python-format
1004
- msgid ""
1005
- "Since %(time)s: Container audits: %(pass)s passed audit, %(fail)s failed "
1006
- "audit"
1007
- msgstr ""
1008
- "Since %(time)s: Container audits: %(pass)s passed audit, %(fail)s failed "
1009
- "audit"
1010
-
1011
- #, python-format
1012
- msgid "Skipping %(datadir)s because %(err)s"
1013
- msgstr "Skipping %(datadir)s because %(err)s"
1014
-
1015
- #, python-format
1016
- msgid "Skipping %s as it is not mounted"
1017
- msgstr "Skipping %s as it is not mounted"
1018
-
1019
- #, python-format
1020
- msgid "Starting %s"
1021
- msgstr "Starting %s"
1022
-
1023
- msgid "Starting object reconstruction pass."
1024
- msgstr "Starting object reconstruction pass."
1025
-
1026
- msgid "Starting object reconstructor in daemon mode."
1027
- msgstr "Starting object reconstructor in daemon mode."
1028
-
1029
- msgid "Starting object replication pass."
1030
- msgstr "Starting object replication pass."
1031
-
1032
- msgid "Starting object replicator in daemon mode."
1033
- msgstr "Starting object replicator in daemon mode."
1034
-
1035
- #, python-format
1036
- msgid "Successful rsync of %(src)s at %(dst)s (%(time).03f)"
1037
- msgstr "Successful rsync of %(src)s at %(dst)s (%(time).03f)"
1038
-
1039
- msgid "The file type are forbidden to access!"
1040
- msgstr "The file type are forbidden to access!"
1041
-
1042
- #, python-format
1043
- msgid ""
1044
- "The total %(key)s for the container (%(total)s) does not match the sum of "
1045
- "%(key)s across policies (%(sum)s)"
1046
- msgstr ""
1047
- "The total %(key)s for the container (%(total)s) does not match the sum of "
1048
- "%(key)s across policies (%(sum)s)"
1049
-
1050
- #, python-format
1051
- msgid "Timeout fetching fragments for %r"
1052
- msgstr "Timeout fetching fragments for %r"
1053
-
1054
- #, python-format
1055
- msgid "Trying to %(method)s %(path)s"
1056
- msgstr "Trying to %(method)s %(path)s"
1057
-
1058
- #, python-format
1059
- msgid "Trying to GET %(full_path)s"
1060
- msgstr "Trying to GET %(full_path)s"
1061
-
1062
- #, python-format
1063
- msgid "Trying to get %(status_type)s status of PUT to %(path)s"
1064
- msgstr "Trying to get %(status_type)s status of PUT to %(path)s"
1065
-
1066
- msgid "Trying to read during GET"
1067
- msgstr "Trying to read during GET"
1068
-
1069
- msgid "Trying to send to client"
1070
- msgstr "Trying to send to client"
1071
-
1072
- #, python-format
1073
- msgid "Trying to sync suffixes with %s"
1074
- msgstr "Trying to sync suffixes with %s"
1075
-
1076
- #, python-format
1077
- msgid "Trying to write to %s"
1078
- msgstr "Trying to write to %s"
1079
-
1080
- msgid "UNCAUGHT EXCEPTION"
1081
- msgstr "UNCAUGHT EXCEPTION"
1082
-
1083
- #, python-format
1084
- msgid "Unable to find %(section)s config section in %(conf)s"
1085
- msgstr "Unable to find %(section)s config section in %(conf)s"
1086
-
1087
- #, python-format
1088
- msgid "Unable to load internal client from config: %(conf)r (%(error)s)"
1089
- msgstr "Unable to load internal client from config: %(conf)r (%(error)s)"
1090
-
1091
- #, python-format
1092
- msgid "Unable to locate %s in libc. Leaving as a no-op."
1093
- msgstr "Unable to locate %s in libc. Leaving as a no-op."
1094
-
1095
- #, python-format
1096
- msgid "Unable to locate config for %s"
1097
- msgstr "Unable to locate config for %s"
1098
-
1099
- #, python-format
1100
- msgid "Unable to locate config number %(number)s for %(server)s"
1101
- msgstr "Unable to locate config number %(number)s for %(server)s"
1102
-
1103
- msgid ""
1104
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
1105
- msgstr ""
1106
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
1107
-
1108
- #, python-format
1109
- msgid "Unable to perform fsync() on directory %(dir)s: %(err)s"
1110
- msgstr "Unable to perform fsync() on directory %(dir)s: %(err)s"
1111
-
1112
- #, python-format
1113
- msgid "Unable to read config from %s"
1114
- msgstr "Unable to read config from %s"
1115
-
1116
- #, python-format
1117
- msgid "Unauth %(sync_from)r => %(sync_to)r"
1118
- msgstr "Unauth %(sync_from)r => %(sync_to)r"
1119
-
1120
- msgid "Unhandled exception"
1121
- msgstr "Unhandled exception"
1122
-
1123
- #, python-format
1124
- msgid "Unknown exception trying to GET: %(account)r %(container)r %(object)r"
1125
- msgstr "Unknown exception trying to GET: %(account)r %(container)r %(object)r"
1126
-
1127
- #, python-format
1128
- msgid "Update report failed for %(container)s %(dbfile)s"
1129
- msgstr "Update report failed for %(container)s %(dbfile)s"
1130
-
1131
- #, python-format
1132
- msgid "Update report sent for %(container)s %(dbfile)s"
1133
- msgstr "Update report sent for %(container)s %(dbfile)s"
1134
-
1135
- msgid ""
1136
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
1137
- "termination for a production deployment."
1138
- msgstr ""
1139
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
1140
- "termination for a production deployment."
1141
-
1142
- msgid ""
1143
- "WARNING: Unable to modify I/O scheduling class and priority of process. "
1144
- "Keeping unchanged! Check logs for more info."
1145
- msgstr ""
1146
- "WARNING: Unable to modify I/O scheduling class and priority of process. "
1147
- "Keeping unchanged! Check logs for more info."
1148
-
1149
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
1150
- msgstr "WARNING: Unable to modify file descriptor limit. Running as non-root?"
1151
-
1152
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
1153
- msgstr "WARNING: Unable to modify max process limit. Running as non-root?"
1154
-
1155
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
1156
- msgstr "WARNING: Unable to modify memory limit. Running as non-root?"
1157
-
1158
- msgid ""
1159
- "WARNING: Unable to modify scheduling priority of process. Keeping unchanged! "
1160
- "Check logs for more info. "
1161
- msgstr ""
1162
- "WARNING: Unable to modify scheduling priority of process. Keeping unchanged! "
1163
- "Check logs for more info. "
1164
-
1165
- #, python-format
1166
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
1167
- msgstr "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
1168
-
1169
- #, python-format
1170
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; killing"
1171
- msgstr "Waited %(kill_wait)s seconds for %(server)s to die; killing"
1172
-
1173
- msgid "Warning: Cannot ratelimit without a memcached client"
1174
- msgstr "Warning: Cannot ratelimit without a memcached client"
1175
-
1176
- #, python-format
1177
- msgid "autocreate account %r"
1178
- msgstr "autocreate account %r"
1179
-
1180
- #, python-format
1181
- msgid "method %s is not allowed."
1182
- msgstr "method %s is not allowed."
1183
-
1184
- #, python-format
1185
- msgid "next_part_power set in policy '%s'. Skipping"
1186
- msgstr "next_part_power set in policy '%s'. Skipping"
1187
-
1188
- msgid "no log file found"
1189
- msgstr "no log file found"
1190
-
1191
- msgid "odfpy not installed."
1192
- msgstr "odfpy not installed."
1193
-
1194
- #, python-format
1195
- msgid "plotting results failed due to %s"
1196
- msgstr "plotting results failed due to %s"
1197
-
1198
- msgid "python-matplotlib not installed."
1199
- msgstr "python-matplotlib not installed."
1200
-
1201
- #, python-format
1202
- msgid ""
1203
- "sorting_method is set to '%(method)s', not 'affinity'; %(label)s "
1204
- "read_affinity setting will have no effect."
1205
- msgstr ""
1206
- "sorting_method is set to '%(method)s', not 'affinity'; %(label)s "
1207
- "read_affinity setting will have no effect."