swift 2.31.1__py2.py3-none-any.whl → 2.32.1__py2.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 (104) hide show
  1. swift/cli/info.py +9 -2
  2. swift/cli/ringbuilder.py +5 -1
  3. swift/common/container_sync_realms.py +6 -7
  4. swift/common/daemon.py +7 -3
  5. swift/common/db.py +22 -7
  6. swift/common/db_replicator.py +19 -20
  7. swift/common/direct_client.py +63 -14
  8. swift/common/internal_client.py +24 -3
  9. swift/common/manager.py +43 -44
  10. swift/common/memcached.py +168 -74
  11. swift/common/middleware/__init__.py +4 -0
  12. swift/common/middleware/account_quotas.py +98 -40
  13. swift/common/middleware/backend_ratelimit.py +6 -4
  14. swift/common/middleware/crossdomain.py +21 -8
  15. swift/common/middleware/listing_formats.py +26 -38
  16. swift/common/middleware/proxy_logging.py +12 -9
  17. swift/common/middleware/s3api/controllers/bucket.py +8 -2
  18. swift/common/middleware/s3api/s3api.py +9 -4
  19. swift/common/middleware/s3api/s3request.py +32 -24
  20. swift/common/middleware/s3api/s3response.py +10 -1
  21. swift/common/middleware/tempauth.py +9 -10
  22. swift/common/middleware/versioned_writes/__init__.py +0 -3
  23. swift/common/middleware/versioned_writes/object_versioning.py +22 -5
  24. swift/common/middleware/x_profile/html_viewer.py +1 -1
  25. swift/common/middleware/xprofile.py +5 -0
  26. swift/common/request_helpers.py +1 -2
  27. swift/common/ring/ring.py +22 -19
  28. swift/common/swob.py +2 -1
  29. swift/common/{utils.py → utils/__init__.py} +610 -1146
  30. swift/common/utils/ipaddrs.py +256 -0
  31. swift/common/utils/libc.py +345 -0
  32. swift/common/utils/timestamp.py +399 -0
  33. swift/common/wsgi.py +70 -39
  34. swift/container/backend.py +106 -38
  35. swift/container/server.py +11 -2
  36. swift/container/sharder.py +34 -15
  37. swift/locale/de/LC_MESSAGES/swift.po +1 -320
  38. swift/locale/en_GB/LC_MESSAGES/swift.po +1 -347
  39. swift/locale/es/LC_MESSAGES/swift.po +1 -279
  40. swift/locale/fr/LC_MESSAGES/swift.po +1 -209
  41. swift/locale/it/LC_MESSAGES/swift.po +1 -207
  42. swift/locale/ja/LC_MESSAGES/swift.po +2 -278
  43. swift/locale/ko_KR/LC_MESSAGES/swift.po +3 -303
  44. swift/locale/pt_BR/LC_MESSAGES/swift.po +1 -204
  45. swift/locale/ru/LC_MESSAGES/swift.po +1 -203
  46. swift/locale/tr_TR/LC_MESSAGES/swift.po +1 -192
  47. swift/locale/zh_CN/LC_MESSAGES/swift.po +1 -192
  48. swift/locale/zh_TW/LC_MESSAGES/swift.po +1 -193
  49. swift/obj/diskfile.py +19 -6
  50. swift/obj/server.py +20 -6
  51. swift/obj/ssync_receiver.py +19 -9
  52. swift/obj/ssync_sender.py +10 -10
  53. swift/proxy/controllers/account.py +7 -7
  54. swift/proxy/controllers/base.py +374 -366
  55. swift/proxy/controllers/container.py +112 -53
  56. swift/proxy/controllers/obj.py +254 -390
  57. swift/proxy/server.py +3 -8
  58. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-server +1 -1
  59. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-server +1 -1
  60. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-drive-audit +45 -14
  61. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-server +1 -1
  62. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-proxy-server +1 -1
  63. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/AUTHORS +4 -0
  64. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/METADATA +32 -35
  65. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/RECORD +103 -100
  66. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/WHEEL +1 -1
  67. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/entry_points.txt +0 -1
  68. swift-2.32.1.dist-info/pbr.json +1 -0
  69. swift-2.31.1.dist-info/pbr.json +0 -1
  70. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-audit +0 -0
  71. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-auditor +0 -0
  72. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-info +0 -0
  73. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-reaper +0 -0
  74. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-replicator +0 -0
  75. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-config +0 -0
  76. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-auditor +0 -0
  77. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-info +0 -0
  78. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-reconciler +0 -0
  79. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-replicator +0 -0
  80. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-sharder +0 -0
  81. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-sync +0 -0
  82. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-updater +0 -0
  83. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-dispersion-populate +0 -0
  84. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-dispersion-report +0 -0
  85. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-form-signature +0 -0
  86. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-get-nodes +0 -0
  87. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-init +0 -0
  88. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-auditor +0 -0
  89. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-expirer +0 -0
  90. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-info +0 -0
  91. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-reconstructor +0 -0
  92. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-relinker +0 -0
  93. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-replicator +0 -0
  94. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-updater +0 -0
  95. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-oldies +0 -0
  96. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-orphans +0 -0
  97. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-recon +0 -0
  98. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-recon-cron +0 -0
  99. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-reconciler-enqueue +0 -0
  100. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-ring-builder +0 -0
  101. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-ring-builder-analyzer +0 -0
  102. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-ring-composer +0 -0
  103. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/LICENSE +0 -0
  104. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/top_level.txt +0 -0
@@ -3,15 +3,13 @@
3
3
  # This file is distributed under the same license as the swift project.
4
4
  #
5
5
  # Translators:
6
- # Andi Chandler <andi@gowling.com>, 2016. #zanata
7
6
  # Andi Chandler <andi@gowling.com>, 2018. #zanata
8
- # Andi Chandler <andi@gowling.com>, 2019. #zanata
9
7
  # Andi Chandler <andi@gowling.com>, 2022. #zanata
10
8
  msgid ""
11
9
  msgstr ""
12
10
  "Project-Id-Version: swift VERSION\n"
13
11
  "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
14
- "POT-Creation-Date: 2022-05-27 18:57+0000\n"
12
+ "POT-Creation-Date: 2023-06-27 13:31+0000\n"
15
13
  "MIME-Version: 1.0\n"
16
14
  "Content-Type: text/plain; charset=UTF-8\n"
17
15
  "Content-Transfer-Encoding: 8bit\n"
@@ -23,86 +21,10 @@ msgstr ""
23
21
  "X-Generator: Zanata 4.3.3\n"
24
22
  "Language-Team: English (United Kingdom)\n"
25
23
 
26
- msgid ""
27
- "\n"
28
- "user quit"
29
- msgstr ""
30
- "\n"
31
- "user quit"
32
-
33
- #, python-format
34
- msgid "%(server)s #%(number)d not running (%(conf)s)"
35
- msgstr "%(server)s #%(number)d not running (%(conf)s)"
36
-
37
- #, python-format
38
- msgid "%(server)s (%(pid)s) appears to have stopped"
39
- msgstr "%(server)s (%(pid)s) appears to have stopped"
40
-
41
- #, python-format
42
- msgid "%(server)s running (%(pid)s - %(conf)s)"
43
- msgstr "%(server)s running (%(pid)s - %(conf)s)"
44
-
45
- #, python-format
46
- msgid "%(server)s running (%(pid)s - %(pid_file)s)"
47
- msgstr "%(server)s running (%(pid)s - %(pid_file)s)"
48
-
49
- #, python-format
50
- msgid "%(server_type)s audit \"once\" mode completed: %(elapsed).02fs"
51
- msgstr "%(server_type)s audit \"once\" mode completed: %(elapsed).02fs"
52
-
53
- #, python-format
54
- msgid "%(server_type)s audit pass completed: %(elapsed).02fs"
55
- msgstr "%(server_type)s audit pass completed: %(elapsed).02fs"
56
-
57
- #, python-format
58
- msgid "%(success)s successes, %(failure)s failures"
59
- msgstr "%(success)s successes, %(failure)s failures"
60
-
61
- #, python-format
62
- msgid "%(type)s: %(value)s"
63
- msgstr "%(type)s: %(value)s"
64
-
65
- #, python-format
66
- msgid "%s already started..."
67
- msgstr "%s already started..."
68
-
69
- #, python-format
70
- msgid "%s does not exist"
71
- msgstr "%s does not exist"
72
-
73
- #, python-format
74
- msgid "%s: Connection reset by peer"
75
- msgstr "%s: Connection reset by peer"
76
-
77
- #, python-format
78
- msgid ""
79
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
80
- msgstr ""
81
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
82
-
83
- #, python-format
84
- msgid "Audit Failed for %(path)s: %(err)s"
85
- msgstr "Audit Failed for %(path)s: %(err)s"
86
-
87
24
  #, python-format
88
25
  msgid "Bad key for %(name)r: %(err)s"
89
26
  msgstr "Bad key for %(name)r: %(err)s"
90
27
 
91
- msgid "Begin {} audit \"once\" mode"
92
- msgstr "Begin {} audit \"once\" mode"
93
-
94
- msgid "Begin {} audit pass."
95
- msgstr "Begin {} audit pass."
96
-
97
- msgid "Beginning replication run"
98
- msgstr "Beginning replication run"
99
-
100
- msgid "Broken pipe"
101
- msgstr "Broken pipe"
102
-
103
- msgid "Broker error trying to rollback locked connection"
104
- msgstr "Broker error trying to rollback locked connection"
105
-
106
28
  #, python-format
107
29
  msgid "Can not access the file %s."
108
30
  msgstr "Can not access the file %s."
@@ -111,25 +33,6 @@ msgstr "Can not access the file %s."
111
33
  msgid "Can not load profile data from %s."
112
34
  msgstr "Can not load profile data from %s."
113
35
 
114
- msgid "Connection refused"
115
- msgstr "Connection refused"
116
-
117
- msgid "Connection reset"
118
- msgstr "Connection reset"
119
-
120
- msgid "Connection timeout"
121
- msgstr "Connection timeout"
122
-
123
- #, python-format
124
- msgid ""
125
- "Could not bind to %(addr)s:%(port)s after trying for %(timeout)s seconds"
126
- msgstr ""
127
- "Could not bind to %(addr)s:%(port)s after trying for %(timeout)s seconds"
128
-
129
- #, python-format
130
- msgid "Could not load %(conf)r: %(error)s"
131
- msgstr "Could not load %(conf)r: %(error)s"
132
-
133
36
  #, python-format
134
37
  msgid "Data download error: %s"
135
38
  msgstr "Data download error: %s"
@@ -137,50 +40,9 @@ msgstr "Data download error: %s"
137
40
  msgid "Did not get a keys dict"
138
41
  msgstr "Did not get a keys dict"
139
42
 
140
- #, python-format
141
- msgid "ERROR Could not get %(server_type)s info %(path)s"
142
- msgstr "ERROR Could not get %(server_type)s info %(path)s"
143
-
144
- msgid "ERROR Failed to get my own IPs?"
145
- msgstr "ERROR Failed to get my own IPs?"
146
-
147
- #, python-format
148
- msgid "ERROR Remote drive not mounted %s"
149
- msgstr "ERROR Remote drive not mounted %s"
150
-
151
- #, python-format
152
- msgid ""
153
- "ERROR There are not enough handoff nodes to reach replica count for "
154
- "partition %s"
155
- msgstr ""
156
- "ERROR There are not enough hand-off nodes to reach replica count for "
157
- "partition %s"
158
-
159
- msgid "ERROR auditing"
160
- msgstr "ERROR auditing"
161
-
162
43
  msgid "ERROR get_keys() missing callback"
163
44
  msgstr "ERROR get_keys() missing callback"
164
45
 
165
- #, python-format
166
- msgid "ERROR reading HTTP response from %s"
167
- msgstr "ERROR reading HTTP response from %s"
168
-
169
- #, python-format
170
- msgid "ERROR reading db %s"
171
- msgstr "ERROR reading db %s"
172
-
173
- #, python-format
174
- msgid "ERROR rsync failed with %(code)s: %(args)s"
175
- msgstr "ERROR rsync failed with %(code)s: %(args)s"
176
-
177
- #, python-format
178
- msgid "ERROR syncing %(file)s with node %(node)s"
179
- msgstr "ERROR syncing %(file)s with node %(node)s"
180
-
181
- msgid "ERROR trying to replicate"
182
- msgstr "ERROR trying to replicate"
183
-
184
46
  #, python-format
185
47
  msgid "Error decrypting %(resp_type)s: %(reason)s"
186
48
  msgstr "Error decrypting %(resp_type)s: %(reason)s"
@@ -197,10 +59,6 @@ msgstr "Error decrypting header %(header)s: %(error)s"
197
59
  msgid "Error decrypting object: %s"
198
60
  msgstr "Error decrypting object: %s"
199
61
 
200
- #, python-format
201
- msgid "Error in %(conf)r with mtime_check_interval: %(error)s"
202
- msgstr "Error in %(conf)r with mtime_check_interval: %(error)s"
203
-
204
62
  msgid "Error listing devices"
205
63
  msgstr "Error listing devices"
206
64
 
@@ -223,53 +81,13 @@ msgstr "Error reading swift.conf"
223
81
  msgid "Error retrieving recon data"
224
82
  msgstr "Error retrieving recon data"
225
83
 
226
- #, python-format
227
- msgid "Error sending UDP message to %(target)r: %(err)s"
228
- msgstr "Error sending UDP message to %(target)r: %(err)s"
229
-
230
84
  msgid "Error: An error occurred"
231
85
  msgstr "Error: An error occurred"
232
86
 
233
- msgid "Error: missing config path argument"
234
- msgstr "Error: missing config path argument"
235
-
236
- #, python-format
237
- msgid "Error: unable to locate %s"
238
- msgstr "Error: unable to locate %s"
239
-
240
87
  #, python-format
241
88
  msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
242
89
  msgstr "Following CNAME chain for %(given_domain)s to %(found_domain)s"
243
90
 
244
- msgid "Found configs:"
245
- msgstr "Found configs:"
246
-
247
- msgid "Host unreachable"
248
- msgstr "Host unreachable"
249
-
250
- #, python-format
251
- msgid "Invalid X-Container-Sync-To format %r"
252
- msgstr "Invalid X-Container-Sync-To format %r"
253
-
254
- #, python-format
255
- msgid "Invalid host %r in X-Container-Sync-To"
256
- msgstr "Invalid host %r in X-Container-Sync-To"
257
-
258
- #, python-format
259
- msgid "Invalid pending entry %(file)s: %(entry)s"
260
- msgstr "Invalid pending entry %(file)s: %(entry)s"
261
-
262
- #, python-format
263
- msgid ""
264
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
265
- "\"https\"."
266
- msgstr ""
267
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
268
- "\"https\"."
269
-
270
- msgid "Invalid swift_bytes"
271
- msgstr "Invalid swift_bytes"
272
-
273
91
  #, python-format
274
92
  msgid "Mapped %(given_domain)s to %(found_domain)s"
275
93
  msgstr "Mapped %(given_domain)s to %(found_domain)s"
@@ -278,74 +96,15 @@ msgstr "Mapped %(given_domain)s to %(found_domain)s"
278
96
  msgid "Missing key for %r"
279
97
  msgstr "Missing key for %r"
280
98
 
281
- msgid "More than one part in a single-part response?"
282
- msgstr "More than one part in a single-part response?"
283
-
284
- msgid "Network unreachable"
285
- msgstr "Network unreachable"
286
-
287
- #, python-format
288
- msgid "No %s running"
289
- msgstr "No %s running"
290
-
291
- #, python-format
292
- msgid "No cluster endpoint for %(realm)r %(cluster)r"
293
- msgstr "No cluster endpoint for %(realm)r %(cluster)r"
294
-
295
- #, python-format
296
- msgid "No permission to signal PID %d"
297
- msgstr "No permission to signal PID %d"
298
-
299
- #, python-format
300
- msgid "No policy with index %s"
301
- msgstr "No policy with index %s"
302
-
303
- #, python-format
304
- msgid "No realm key for %r"
305
- msgstr "No realm key for %r"
306
-
307
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
308
- msgstr "Params, queries, and fragments not allowed in X-Container-Sync-To"
309
-
310
- msgid "Path required in X-Container-Sync-To"
311
- msgstr "Path required in X-Container-Sync-To"
312
-
313
99
  #, python-format
314
100
  msgid "Profiling Error: %s"
315
101
  msgstr "Profiling Error: %s"
316
102
 
317
- #, python-format
318
- msgid "Quarantined %(db_dir)s to %(quar_path)s due to %(reason)s"
319
- msgstr "Quarantined %(db_dir)s to %(quar_path)s due to %(reason)s"
320
-
321
- #, python-format
322
- msgid "Quarantining DB %s"
323
- msgstr "Quarantining DB %s"
324
-
325
103
  #, python-format
326
104
  msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
327
105
  msgstr ""
328
106
  "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
329
107
 
330
- #, python-format
331
- msgid "Removed %(remove)d dbs"
332
- msgstr "Removed %(remove)d dbs"
333
-
334
- #, python-format
335
- msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
336
- msgstr "Removing pid file %(pid_file)s with wrong pid %(pid)d"
337
-
338
- #, python-format
339
- msgid "Removing pid file %s with invalid pid"
340
- msgstr "Removing pid file %s with invalid pid"
341
-
342
- #, python-format
343
- msgid "Removing stale pid file %s"
344
- msgstr "Removing stale pid file %s"
345
-
346
- msgid "Replication run OVER"
347
- msgstr "Replication run OVER"
348
-
349
108
  #, python-format
350
109
  msgid "Returning 497 because of blacklisting: %s"
351
110
  msgstr "Returning 497 because of blacklisting: %s"
@@ -354,114 +113,9 @@ msgstr "Returning 497 because of blacklisting: %s"
354
113
  msgid "Returning 498 for %(meth)s to %(path)s. Ratelimit (Max Sleep) %(e)s"
355
114
  msgstr "Returning 498 for %(meth)s to %(path)s. Ratelimit (Max Sleep) %(e)s"
356
115
 
357
- #, python-format
358
- msgid "Running %s once"
359
- msgstr "Running %s once"
360
-
361
- #, python-format
362
- msgid "Signal %(server)s pid: %(pid)s signal: %(signal)s"
363
- msgstr "Signal %(server)s pid: %(pid)s signal: %(signal)s"
364
-
365
- #, python-format
366
- msgid ""
367
- "Since %(time)s: %(server_type)s audits: %(pass)s passed audit, %(fail)s "
368
- "failed audit"
369
- msgstr ""
370
- "Since %(time)s: %(server_type)s audits: %(pass)s passed audit, %(fail)s "
371
- "failed audit"
372
-
373
- #, python-format
374
- msgid "Skipping %(datadir)s because %(err)s"
375
- msgstr "Skipping %(datadir)s because %(err)s"
376
-
377
- #, python-format
378
- msgid "Skipping %s as it is not mounted"
379
- msgstr "Skipping %s as it is not mounted"
380
-
381
- #, python-format
382
- msgid "Starting %s"
383
- msgstr "Starting %s"
384
-
385
116
  msgid "The file type are forbidden to access!"
386
117
  msgstr "The file type are forbidden to access!"
387
118
 
388
- msgid "UNCAUGHT EXCEPTION"
389
- msgstr "UNCAUGHT EXCEPTION"
390
-
391
- #, python-format
392
- msgid "Unable to find %(section)s config section in %(conf)s"
393
- msgstr "Unable to find %(section)s config section in %(conf)s"
394
-
395
- #, python-format
396
- msgid "Unable to locate %s in libc. Leaving as a no-op."
397
- msgstr "Unable to locate %s in libc. Leaving as a no-op."
398
-
399
- #, python-format
400
- msgid "Unable to locate config for %s"
401
- msgstr "Unable to locate config for %s"
402
-
403
- #, python-format
404
- msgid "Unable to locate config number %(number)s for %(server)s"
405
- msgstr "Unable to locate config number %(number)s for %(server)s"
406
-
407
- msgid ""
408
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
409
- msgstr ""
410
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
411
-
412
- #, python-format
413
- msgid "Unable to perform fsync() on directory %(dir)s: %(err)s"
414
- msgstr "Unable to perform fsync() on directory %(dir)s: %(err)s"
415
-
416
- #, python-format
417
- msgid "Unable to read config from %s"
418
- msgstr "Unable to read config from %s"
419
-
420
- msgid ""
421
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
422
- "termination for a production deployment."
423
- msgstr ""
424
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
425
- "termination for a production deployment."
426
-
427
- msgid ""
428
- "WARNING: Unable to modify I/O scheduling class and priority of process. "
429
- "Keeping unchanged! Check logs for more info."
430
- msgstr ""
431
- "WARNING: Unable to modify I/O scheduling class and priority of process. "
432
- "Keeping unchanged! Check logs for more info."
433
-
434
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
435
- msgstr "WARNING: Unable to modify file descriptor limit. Running as non-root?"
436
-
437
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
438
- msgstr "WARNING: Unable to modify max process limit. Running as non-root?"
439
-
440
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
441
- msgstr "WARNING: Unable to modify memory limit. Running as non-root?"
442
-
443
- msgid ""
444
- "WARNING: Unable to modify scheduling priority of process. Keeping unchanged! "
445
- "Check logs for more info. "
446
- msgstr ""
447
- "WARNING: Unable to modify scheduling priority of process. Keeping unchanged! "
448
- "Check logs for more info. "
449
-
450
- msgid ""
451
- "WARNING: object-expirer.conf is deprecated. Move object-expirers' "
452
- "configuration into object-server.conf."
453
- msgstr ""
454
- "WARNING: object-expirer.conf is deprecated. Move object-expirers' "
455
- "configuration into object-server.conf."
456
-
457
- #, python-format
458
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
459
- msgstr "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
460
-
461
- #, python-format
462
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; killing"
463
- msgstr "Waited %(kill_wait)s seconds for %(server)s to die; killing"
464
-
465
119
  msgid "Warning: Cannot ratelimit without a memcached client"
466
120
  msgstr "Warning: Cannot ratelimit without a memcached client"
467
121