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
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: swift VERSION\n"
14
14
  "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
15
- "POT-Creation-Date: 2022-05-27 18:57+0000\n"
15
+ "POT-Creation-Date: 2023-06-27 13:31+0000\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
@@ -24,72 +24,10 @@ msgstr ""
24
24
  "X-Generator: Zanata 4.3.3\n"
25
25
  "Language-Team: German\n"
26
26
 
27
- msgid ""
28
- "\n"
29
- "user quit"
30
- msgstr ""
31
- "\n"
32
- "Durch Benutzer beendet"
33
-
34
- #, python-format
35
- msgid "%(server)s #%(number)d not running (%(conf)s)"
36
- msgstr "%(server)s #%(number)d wird nicht ausgeführt (%(conf)s)"
37
-
38
- #, python-format
39
- msgid "%(server)s (%(pid)s) appears to have stopped"
40
- msgstr "%(server)s (%(pid)s) scheinbar gestoppt"
41
-
42
- #, python-format
43
- msgid "%(server)s running (%(pid)s - %(conf)s)"
44
- msgstr "%(server)s wird ausgeführt (%(pid)s - %(conf)s)"
45
-
46
- #, python-format
47
- msgid "%(server)s running (%(pid)s - %(pid_file)s)"
48
- msgstr "%(server)s wird ausgeführt (%(pid)s - %(pid_file)s)"
49
-
50
- #, python-format
51
- msgid "%(success)s successes, %(failure)s failures"
52
- msgstr "%(success)s Erfolge, %(failure)s Fehlschläge"
53
-
54
- #, python-format
55
- msgid "%(type)s: %(value)s"
56
- msgstr "%(type)s: %(value)s"
57
-
58
- #, python-format
59
- msgid "%s already started..."
60
- msgstr "%s bereits gestartet..."
61
-
62
- #, python-format
63
- msgid "%s does not exist"
64
- msgstr "%s existiert nicht"
65
-
66
- #, python-format
67
- msgid "%s: Connection reset by peer"
68
- msgstr "%s: Verbindung zurückgesetzt durch Peer"
69
-
70
- #, python-format
71
- msgid ""
72
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
73
- msgstr ""
74
- "Versuch, %(count)d Datenbanken in %(time).5f Sekunden zu replizieren "
75
- "(%(rate).5f/s)"
76
-
77
- #, python-format
78
- msgid "Audit Failed for %(path)s: %(err)s"
79
- msgstr "Prüfung fehlgeschlagen für %(path)s: %(err)s"
80
-
81
27
  #, python-format
82
28
  msgid "Bad key for %(name)r: %(err)s"
83
29
  msgstr "Schlechter Schlüssel für %(name)r: %(err)s"
84
30
 
85
- msgid "Beginning replication run"
86
- msgstr "Replizierungsdurchlauf wird gestartet"
87
-
88
- msgid "Broker error trying to rollback locked connection"
89
- msgstr ""
90
- "Brokerfehler beim Versuch, für eine gesperrte Verbindung ein Rollback "
91
- "durchzuführen"
92
-
93
31
  #, python-format
94
32
  msgid "Can not access the file %s."
95
33
  msgstr "Kann nicht auf die Datei %s zugreifen."
@@ -98,60 +36,10 @@ msgstr "Kann nicht auf die Datei %s zugreifen."
98
36
  msgid "Can not load profile data from %s."
99
37
  msgstr "Die Profildaten von %s können nicht geladen werden."
100
38
 
101
- msgid "Connection refused"
102
- msgstr "Verbindung abgelehnt"
103
-
104
- msgid "Connection reset"
105
- msgstr "Verbindung zurückgesetzt"
106
-
107
- msgid "Connection timeout"
108
- msgstr "Verbindungszeitüberschreitung"
109
-
110
- #, python-format
111
- msgid ""
112
- "Could not bind to %(addr)s:%(port)s after trying for %(timeout)s seconds"
113
- msgstr ""
114
- "Keine Bindung an %(addr)s:%(port)s möglich nach Versuch über %(timeout)s "
115
- "Sekunden"
116
-
117
- #, python-format
118
- msgid "Could not load %(conf)r: %(error)s"
119
- msgstr "%(conf)r konnte nicht geladen werden: %(error)s"
120
-
121
39
  #, python-format
122
40
  msgid "Data download error: %s"
123
41
  msgstr "Fehler beim Downloaden von Daten: %s"
124
42
 
125
- msgid "ERROR Failed to get my own IPs?"
126
- msgstr "FEHLER Eigene IPs konnten nicht abgerufen werden?"
127
-
128
- #, python-format
129
- msgid "ERROR Remote drive not mounted %s"
130
- msgstr "FEHLER Entferntes Laufwerk nicht eingehängt %s"
131
-
132
- msgid "ERROR auditing"
133
- msgstr "FEHLER bei der Prüfung"
134
-
135
- #, python-format
136
- msgid "ERROR reading HTTP response from %s"
137
- msgstr "FEHLER beim Lesen der HTTP-Antwort von %s"
138
-
139
- #, python-format
140
- msgid "ERROR reading db %s"
141
- msgstr "FEHLER beim Lesen der Datenbank %s"
142
-
143
- #, python-format
144
- msgid "ERROR rsync failed with %(code)s: %(args)s"
145
- msgstr "FEHLER rsync fehlgeschlagen mit %(code)s: %(args)s"
146
-
147
- #, python-format
148
- msgid "ERROR syncing %(file)s with node %(node)s"
149
- msgstr ""
150
- "FEHLER beim Synchronisieren von %(file)s Dateien mit dem Knoten %(node)s"
151
-
152
- msgid "ERROR trying to replicate"
153
- msgstr "FEHLER beim Versuch zu replizieren"
154
-
155
43
  #, python-format
156
44
  msgid "Error decrypting %(resp_type)s: %(reason)s"
157
45
  msgstr "Fehler beim Entschlüsseln %(resp_type)s: %(reason)s"
@@ -168,10 +56,6 @@ msgstr "Fehler beim Entschlüsseln des header %(header)s: %(error)s"
168
56
  msgid "Error decrypting object: %s"
169
57
  msgstr "Fehler beim Entschlüsseln object: %s"
170
58
 
171
- #, python-format
172
- msgid "Error in %(conf)r with mtime_check_interval: %(error)s"
173
- msgstr "Fehler in %(conf)r mit mtime_check_interval: %(error)s"
174
-
175
59
  msgid "Error listing devices"
176
60
  msgstr "Fehler beim Auflisten der Geräte"
177
61
 
@@ -194,53 +78,13 @@ msgstr "Fehler beim Lesen der swift.conf"
194
78
  msgid "Error retrieving recon data"
195
79
  msgstr "Fehler beim Abrufen der recon-Daten"
196
80
 
197
- #, python-format
198
- msgid "Error sending UDP message to %(target)r: %(err)s"
199
- msgstr "Fehler beim Senden von UDP Nachricht zu %(target)r: %(err)s"
200
-
201
81
  msgid "Error: An error occurred"
202
82
  msgstr "Fehler: Ein Fehler ist aufgetreten"
203
83
 
204
- msgid "Error: missing config path argument"
205
- msgstr "Fehler: fehlendes Konfigurationspfadargument"
206
-
207
- #, python-format
208
- msgid "Error: unable to locate %s"
209
- msgstr "Fehler: %s kann nicht lokalisiert werden"
210
-
211
84
  #, python-format
212
85
  msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
213
86
  msgstr "CNAME-Kette für %(given_domain)s bis %(found_domain)s wird gefolgt"
214
87
 
215
- msgid "Found configs:"
216
- msgstr "Gefundene Konfigurationen:"
217
-
218
- msgid "Host unreachable"
219
- msgstr "Host nicht erreichbar"
220
-
221
- #, python-format
222
- msgid "Invalid X-Container-Sync-To format %r"
223
- msgstr "Ungültiges X-Container-Sync-To-Format %r"
224
-
225
- #, python-format
226
- msgid "Invalid host %r in X-Container-Sync-To"
227
- msgstr "Ungültiger Host %r in X-Container-Sync-To"
228
-
229
- #, python-format
230
- msgid "Invalid pending entry %(file)s: %(entry)s"
231
- msgstr "Ungültiger ausstehender Eintrag %(file)s: %(entry)s"
232
-
233
- #, python-format
234
- msgid ""
235
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
236
- "\"https\"."
237
- msgstr ""
238
- "Ungültiges Schema %r in X-Container-Sync-To, muss \"//\", \"http\" oder "
239
- "\"https\" sein."
240
-
241
- msgid "Invalid swift_bytes"
242
- msgstr "Ungültige swift_bytes"
243
-
244
88
  #, python-format
245
89
  msgid "Mapped %(given_domain)s to %(found_domain)s"
246
90
  msgstr "%(given_domain)s zugeordnet zu %(found_domain)s"
@@ -249,186 +93,23 @@ msgstr "%(given_domain)s zugeordnet zu %(found_domain)s"
249
93
  msgid "Missing key for %r"
250
94
  msgstr "Fehlender Schlüssel für %r"
251
95
 
252
- msgid "Network unreachable"
253
- msgstr "Netzwerk nicht erreichbar"
254
-
255
- #, python-format
256
- msgid "No %s running"
257
- msgstr "Kein %s läuft"
258
-
259
- #, python-format
260
- msgid "No cluster endpoint for %(realm)r %(cluster)r"
261
- msgstr "Kein Cluster-Endpunkt für %(realm)r %(cluster)r"
262
-
263
- #, python-format
264
- msgid "No permission to signal PID %d"
265
- msgstr "Keine Berechtigung zu Signal-Programmkennung %d"
266
-
267
- #, python-format
268
- msgid "No policy with index %s"
269
- msgstr "Keine Richtlinie mit Index %s"
270
-
271
- #, python-format
272
- msgid "No realm key for %r"
273
- msgstr "Kein Bereichsschlüssel für %r"
274
-
275
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
276
- msgstr ""
277
- "Parameter, Abfragen und Fragmente nicht zulässig in X-Container-Sync-To"
278
-
279
- msgid "Path required in X-Container-Sync-To"
280
- msgstr "Pfad in X-Container-Sync-To ist erforderlich"
281
-
282
96
  #, python-format
283
97
  msgid "Profiling Error: %s"
284
98
  msgstr "Fehler bei der Profilerstellung: %s"
285
99
 
286
- #, python-format
287
- msgid "Quarantined %(db_dir)s to %(quar_path)s due to %(reason)s"
288
- msgstr ""
289
- "%(db_dir)s nach %(quar_path)s aufgrund von %(reason)s in Quarantäne "
290
- "verschoben."
291
-
292
- #, python-format
293
- msgid "Quarantining DB %s"
294
- msgstr "Datenbank %s wird unter Quarantäne gestellt"
295
-
296
100
  #, python-format
297
101
  msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
298
102
  msgstr ""
299
103
  "Inaktivitätsprotokoll für Geschwindigkeitsbegrenzung: %(sleep)s für "
300
104
  "%(account)s/%(container)s/%(object)s"
301
105
 
302
- #, python-format
303
- msgid "Removed %(remove)d dbs"
304
- msgstr "%(remove)d Datenbanken entfernt"
305
-
306
- #, python-format
307
- msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
308
- msgstr "PID-Datei %(pid_file)s mit falscher PID %(pid)d wird entfernt"
309
-
310
- #, python-format
311
- msgid "Removing pid file %s with invalid pid"
312
- msgstr "PID-Datei %s mit ungültiger PID wird entfernt."
313
-
314
- #, python-format
315
- msgid "Removing stale pid file %s"
316
- msgstr "Veraltete PID-Datei %s wird entfernt"
317
-
318
- msgid "Replication run OVER"
319
- msgstr "Replizierungsdurchlauf ABGESCHLOSSEN"
320
-
321
106
  #, python-format
322
107
  msgid "Returning 497 because of blacklisting: %s"
323
108
  msgstr "497 wird aufgrund von Blacklisting zurückgegeben: %s"
324
109
 
325
- #, python-format
326
- msgid "Running %s once"
327
- msgstr "%s läuft einmal"
328
-
329
- #, python-format
330
- msgid "Signal %(server)s pid: %(pid)s signal: %(signal)s"
331
- msgstr "Signal %(server)s PID: %(pid)s Signal: %(signal)s"
332
-
333
- #, python-format
334
- msgid "Skipping %(datadir)s because %(err)s"
335
- msgstr "Überspringe %(datadir)s aufgrund %(err)s"
336
-
337
- #, python-format
338
- msgid "Skipping %s as it is not mounted"
339
- msgstr "%s wird übersprungen, weil es nicht eingehängt ist"
340
-
341
- #, python-format
342
- msgid "Starting %s"
343
- msgstr "%s wird gestartet"
344
-
345
110
  msgid "The file type are forbidden to access!"
346
111
  msgstr "Auf den Dateityp darf nicht zugegriffen werden!"
347
112
 
348
- msgid "UNCAUGHT EXCEPTION"
349
- msgstr "NICHT ABGEFANGENE AUSNAHME"
350
-
351
- #, python-format
352
- msgid "Unable to find %(section)s config section in %(conf)s"
353
- msgstr ""
354
- "%(section)s-Konfigurationsabschnitt in %(conf)s kann nicht gefunden werden"
355
-
356
- #, python-format
357
- msgid "Unable to locate %s in libc. Leaving as a no-op."
358
- msgstr ""
359
- "%s konnte nicht in libc gefunden werden. Wird als Nullbefehl verlassen."
360
-
361
- #, python-format
362
- msgid "Unable to locate config for %s"
363
- msgstr "Konfiguration für %s wurde nicht gefunden."
364
-
365
- #, python-format
366
- msgid "Unable to locate config number %(number)s for %(server)s"
367
- msgstr "Konfigurationsnummer %(number)s für %(server)s wurde nicht gefunden."
368
-
369
- msgid ""
370
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
371
- msgstr ""
372
- "fallocate, posix_fallocate konnte nicht in libc gefunden werden. Wird als "
373
- "Nullbefehl verlassen."
374
-
375
- #, python-format
376
- msgid "Unable to perform fsync() on directory %(dir)s: %(err)s"
377
- msgstr "fsync() kann für Verzeichnis %(dir)s nicht ausgeführt werden: %(err)s"
378
-
379
- #, python-format
380
- msgid "Unable to read config from %s"
381
- msgstr "Konfiguration aus %s kann nicht gelesen werden"
382
-
383
- msgid ""
384
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
385
- "termination for a production deployment."
386
- msgstr ""
387
- "WARNUNG: SSL sollte nur zu Testzwecken aktiviert werden. Verwenden Sie die "
388
- "externe SSL-Beendigung für eine Implementierung in der Produktionsumgebung."
389
-
390
- msgid ""
391
- "WARNING: Unable to modify I/O scheduling class and priority of process. "
392
- "Keeping unchanged! Check logs for more info."
393
- msgstr ""
394
- "WARNUNG: I/O Planungsklasse und Priorität des Prozesses können nicht "
395
- "geändert werden. Es werden keine Änderungen vorgenommen! Überprüfen Sie die "
396
- "Log-Dateien für mehr Informationen."
397
-
398
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
399
- msgstr ""
400
- "WARNUNG: Grenzwert für Dateideskriptoren kann nicht geändert werden. Wird "
401
- "nicht als Root ausgeführt?"
402
-
403
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
404
- msgstr ""
405
- "WARNUNG: Grenzwert für maximale Verarbeitung kann nicht geändert werden. "
406
- "Wird nicht als Root ausgeführt?"
407
-
408
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
409
- msgstr ""
410
- "WARNUNG: Grenzwert für Speicher kann nicht geändert werden. Wird nicht als "
411
- "Root ausgeführt?"
412
-
413
- msgid ""
414
- "WARNING: Unable to modify scheduling priority of process. Keeping unchanged! "
415
- "Check logs for more info. "
416
- msgstr ""
417
- "WARNUNG: Priorität der Planung des Prozesses kann nicht geändert werden. Es "
418
- "wird keine Änderung vorgenommen! Überprüfen Sie die Log-Dateien für mehr "
419
- "Informationen."
420
-
421
- #, python-format
422
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
423
- msgstr ""
424
- "Hat %(kill_wait)s Sekunden für %(server)s zum Erlöschen gewartet; Gibt auf"
425
-
426
- #, python-format
427
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; killing"
428
- msgstr ""
429
- "Hat %(kill_wait)s Sekunden für %(server)s zum Erlöschen gewartet. Wird "
430
- "abgebrochen."
431
-
432
113
  msgid "Warning: Cannot ratelimit without a memcached client"
433
114
  msgstr ""
434
115
  "Warnung: Geschwindigkeitsbegrenzung kann nicht ohne memcached-Client "