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
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: swift VERSION\n"
10
10
  "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
11
- "POT-Creation-Date: 2022-05-27 18:57+0000\n"
11
+ "POT-Creation-Date: 2023-06-27 13:31+0000\n"
12
12
  "MIME-Version: 1.0\n"
13
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -20,44 +20,6 @@ msgstr ""
20
20
  "X-Generator: Zanata 4.3.3\n"
21
21
  "Language-Team: Italian\n"
22
22
 
23
- msgid ""
24
- "\n"
25
- "user quit"
26
- msgstr ""
27
- "\n"
28
- "l'utente è uscito"
29
-
30
- #, python-format
31
- msgid "%(success)s successes, %(failure)s failures"
32
- msgstr "%(success)s operazioni con esito positivo, %(failure)s errori"
33
-
34
- #, python-format
35
- msgid "%s already started..."
36
- msgstr "%s già avviato..."
37
-
38
- #, python-format
39
- msgid "%s does not exist"
40
- msgstr "%s non esiste"
41
-
42
- #, python-format
43
- msgid "%s: Connection reset by peer"
44
- msgstr "%s: Connessione reimpostata dal peer"
45
-
46
- #, python-format
47
- msgid ""
48
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
49
- msgstr ""
50
- "È stato eseguito un tentativo di replicare %(count)d dbs in %(time).5f "
51
- "secondi (%(rate).5f/s)"
52
-
53
- msgid "Beginning replication run"
54
- msgstr "Avvio replica"
55
-
56
- msgid "Broker error trying to rollback locked connection"
57
- msgstr ""
58
- "Errore del broker durante il tentativo di eseguire il rollback della "
59
- "connessione bloccata"
60
-
61
23
  #, python-format
62
24
  msgid "Can not access the file %s."
63
25
  msgstr "Impossibile accedere al file %s."
@@ -66,45 +28,10 @@ msgstr "Impossibile accedere al file %s."
66
28
  msgid "Can not load profile data from %s."
67
29
  msgstr "Impossibile caricare i dati del profilo da %s."
68
30
 
69
- msgid "Connection refused"
70
- msgstr "Connessione rifiutata"
71
-
72
- msgid "Connection timeout"
73
- msgstr "Timeout della connessione"
74
-
75
31
  #, python-format
76
32
  msgid "Data download error: %s"
77
33
  msgstr "Errore di download dei dati: %s"
78
34
 
79
- msgid "ERROR Failed to get my own IPs?"
80
- msgstr "ERRORE Impossibile ottenere i propri IP?"
81
-
82
- #, python-format
83
- msgid "ERROR Remote drive not mounted %s"
84
- msgstr "ERRORE Unità remota non montata %s"
85
-
86
- msgid "ERROR auditing"
87
- msgstr "ERRORE durante la verifica"
88
-
89
- #, python-format
90
- msgid "ERROR reading HTTP response from %s"
91
- msgstr "ERRORE durante la lettura della risposta HTTP da %s"
92
-
93
- #, python-format
94
- msgid "ERROR reading db %s"
95
- msgstr "ERRORE durante la lettura del db %s"
96
-
97
- #, python-format
98
- msgid "ERROR rsync failed with %(code)s: %(args)s"
99
- msgstr "ERRORE rsync non riuscito con %(code)s: %(args)s"
100
-
101
- #, python-format
102
- msgid "ERROR syncing %(file)s with node %(node)s"
103
- msgstr "ERRORE durante la sincronizzazione di %(file)s con il nodo %(node)s"
104
-
105
- msgid "ERROR trying to replicate"
106
- msgstr "ERRORE durante il tentativo di eseguire la replica"
107
-
108
35
  msgid "Error listing devices"
109
36
  msgstr "Errore durante l'elenco dei dispositivi"
110
37
 
@@ -132,165 +59,32 @@ msgstr "Errore durante il richiamo dei dati di riconoscimento"
132
59
  msgid "Error: An error occurred"
133
60
  msgstr "Errore: Si è verificato un errore"
134
61
 
135
- msgid "Error: missing config path argument"
136
- msgstr "Errore: Argomento path della configurazione mancante"
137
-
138
- #, python-format
139
- msgid "Error: unable to locate %s"
140
- msgstr "Errore: impossibile individuare %s"
141
-
142
62
  #, python-format
143
63
  msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
144
64
  msgstr ""
145
65
  "Viene seguita la catena CNAME per %(given_domain)s verso %(found_domain)s"
146
66
 
147
- msgid "Found configs:"
148
- msgstr "Configurazioni trovate:"
149
-
150
- msgid "Host unreachable"
151
- msgstr "Host non raggiungibile"
152
-
153
- #, python-format
154
- msgid "Invalid X-Container-Sync-To format %r"
155
- msgstr "Formato X-Container-Sync-To non valido %r"
156
-
157
- #, python-format
158
- msgid "Invalid host %r in X-Container-Sync-To"
159
- msgstr "Host non valido %r in X-Container-Sync-To"
160
-
161
- #, python-format
162
- msgid "Invalid pending entry %(file)s: %(entry)s"
163
- msgstr "Voce in sospeso non valida %(file)s: %(entry)s"
164
-
165
- #, python-format
166
- msgid ""
167
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
168
- "\"https\"."
169
- msgstr ""
170
- "Schema non valido %r in X-Container-Sync-To, deve essere \"//\", \"http\" "
171
- "oppure \"https\"."
172
-
173
67
  #, python-format
174
68
  msgid "Mapped %(given_domain)s to %(found_domain)s"
175
69
  msgstr "%(given_domain)s associato a %(found_domain)s"
176
70
 
177
- #, python-format
178
- msgid "No %s running"
179
- msgstr "Nessun %s in esecuzione"
180
-
181
- #, python-format
182
- msgid "No permission to signal PID %d"
183
- msgstr "Nessuna autorizzazione per la segnalazione del PID %d"
184
-
185
- #, python-format
186
- msgid "No policy with index %s"
187
- msgstr "Nessuna politica con indice %s"
188
-
189
- #, python-format
190
- msgid "No realm key for %r"
191
- msgstr "Nessuna chiave dell'area di autenticazione per %r"
192
-
193
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
194
- msgstr "Parametri, query e frammenti non consentiti in X-Container-Sync-To"
195
-
196
- msgid "Path required in X-Container-Sync-To"
197
- msgstr "Percorso richiesto in X-Container-Sync-To"
198
-
199
71
  #, python-format
200
72
  msgid "Profiling Error: %s"
201
73
  msgstr "Errore di creazione dei profili: %s"
202
74
 
203
- #, python-format
204
- msgid "Quarantining DB %s"
205
- msgstr "Inserimento in quarantena del DB %s"
206
-
207
75
  #, python-format
208
76
  msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
209
77
  msgstr ""
210
78
  "Log di sospensione Ratelimit: %(sleep)s per %(account)s/%(container)s/"
211
79
  "%(object)s"
212
80
 
213
- #, python-format
214
- msgid "Removed %(remove)d dbs"
215
- msgstr "Rimossi %(remove)d dbs"
216
-
217
- #, python-format
218
- msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
219
- msgstr "Rimozione del file pid %(pid_file)s con pid non valido %(pid)d"
220
-
221
- #, python-format
222
- msgid "Removing pid file %s with invalid pid"
223
- msgstr "Rimozione del file pid %s con pid non valido"
224
-
225
- #, python-format
226
- msgid "Removing stale pid file %s"
227
- msgstr "Rimozione del file pid %s obsoleto in corso"
228
-
229
- msgid "Replication run OVER"
230
- msgstr "Esecuzione della replica TERMINATA"
231
-
232
81
  #, python-format
233
82
  msgid "Returning 497 because of blacklisting: %s"
234
83
  msgstr "Viene restituito il codice 497 a causa della blacklist: %s"
235
84
 
236
- #, python-format
237
- msgid "Running %s once"
238
- msgstr "Esecuzione di %s una volta"
239
-
240
- #, python-format
241
- msgid "Skipping %s as it is not mounted"
242
- msgstr "%s viene ignorato perché non è montato"
243
-
244
- #, python-format
245
- msgid "Starting %s"
246
- msgstr "Avvio di %s"
247
-
248
85
  msgid "The file type are forbidden to access!"
249
86
  msgstr "Non è consentito l'accesso a questo tipo di file!"
250
87
 
251
- msgid "UNCAUGHT EXCEPTION"
252
- msgstr "ECCEZIONE NON RILEVATA"
253
-
254
- #, python-format
255
- msgid "Unable to locate %s in libc. Leaving as a no-op."
256
- msgstr "Impossibile individuare %s in libc. Lasciato come no-op."
257
-
258
- #, python-format
259
- msgid "Unable to locate config for %s"
260
- msgstr "Impossibile individuare la configurazione per %s"
261
-
262
- msgid ""
263
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
264
- msgstr ""
265
- "Impossibile individuare fallocate, posix_fallocate in libc. Lasciato come "
266
- "no-op."
267
-
268
- #, python-format
269
- msgid "Unable to read config from %s"
270
- msgstr "Impossibile leggere la configurazione da %s"
271
-
272
- msgid ""
273
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
274
- "termination for a production deployment."
275
- msgstr ""
276
- "AVVERTENZA: SSL deve essere abilitato solo per scopi di test. Utilizzare la "
277
- "terminazione SSL esterna per una distribuzione di produzione."
278
-
279
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
280
- msgstr ""
281
- "AVVERTENZA: Impossibile modificare il limite del descrittore del file. "
282
- "Eseguire come non-root?"
283
-
284
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
285
- msgstr ""
286
- "AVVERTENZA: Impossibile modificare il limite del numero massimo di processi. "
287
- "Eseguire come non-root?"
288
-
289
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
290
- msgstr ""
291
- "AVVERTENZA: Impossibile modificare il limite di memoria. Eseguire come non-"
292
- "root?"
293
-
294
88
  msgid "Warning: Cannot ratelimit without a memcached client"
295
89
  msgstr "Avvertenza: impossibile eseguire ratelimit senza un client memcached"
296
90
 
@@ -10,11 +10,11 @@ msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: swift VERSION\n"
12
12
  "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
13
- "POT-Creation-Date: 2022-05-27 18:57+0000\n"
13
+ "POT-Creation-Date: 2023-06-27 13:31+0000\n"
14
14
  "MIME-Version: 1.0\n"
15
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "PO-Revision-Date: 2018-02-09 05:39+0000\n"
17
+ "PO-Revision-Date: 2018-02-09 01:00+0000\n"
18
18
  "Last-Translator: Shu Muto <shu.mutow@gmail.com>\n"
19
19
  "Language: ja\n"
20
20
  "Plural-Forms: nplurals=1; plural=0;\n"
@@ -22,68 +22,10 @@ msgstr ""
22
22
  "X-Generator: Zanata 4.3.3\n"
23
23
  "Language-Team: Japanese\n"
24
24
 
25
- msgid ""
26
- "\n"
27
- "user quit"
28
- msgstr ""
29
- "\n"
30
- "ユーザー終了"
31
-
32
- #, python-format
33
- msgid "%(server)s #%(number)d not running (%(conf)s)"
34
- msgstr "%(server)s #%(number)d は稼働していません (%(conf)s)"
35
-
36
- #, python-format
37
- msgid "%(server)s (%(pid)s) appears to have stopped"
38
- msgstr "%(server)s (%(pid)s) が停止された可能性があります"
39
-
40
- #, python-format
41
- msgid "%(server)s running (%(pid)s - %(conf)s)"
42
- msgstr "%(server)s 稼働中 (%(pid)s - %(conf)s)"
43
-
44
- #, python-format
45
- msgid "%(server)s running (%(pid)s - %(pid_file)s)"
46
- msgstr "%(server)s 稼働中 (%(pid)s - %(pid_file)s)"
47
-
48
- #, python-format
49
- msgid "%(success)s successes, %(failure)s failures"
50
- msgstr "成功 %(success)s、失敗 %(failure)s"
51
-
52
- #, python-format
53
- msgid "%(type)s: %(value)s"
54
- msgstr "%(type)s: %(value)s"
55
-
56
- #, python-format
57
- msgid "%s already started..."
58
- msgstr "%s は既に開始されています..."
59
-
60
- #, python-format
61
- msgid "%s does not exist"
62
- msgstr "%s が存在しません"
63
-
64
- #, python-format
65
- msgid "%s: Connection reset by peer"
66
- msgstr "%s: 接続がピアによってリセットされました"
67
-
68
- #, python-format
69
- msgid ""
70
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
71
- msgstr "%(time).5f 秒で %(count)d 個の DB の複製を試行しました (%(rate).5f/s)"
72
-
73
- #, python-format
74
- msgid "Audit Failed for %(path)s: %(err)s"
75
- msgstr "%(path)s の監査が失敗しました: %(err)s"
76
-
77
25
  #, python-format
78
26
  msgid "Bad key for %(name)r: %(err)s"
79
27
  msgstr "%(name)r のキーが不正です: %(err)s"
80
28
 
81
- msgid "Beginning replication run"
82
- msgstr "複製の実行を開始中"
83
-
84
- msgid "Broker error trying to rollback locked connection"
85
- msgstr "ロック済み接続のロールバックを試行中のブローカーエラー"
86
-
87
29
  #, python-format
88
30
  msgid "Can not access the file %s."
89
31
  msgstr "ファイル %s にアクセスできません。"
@@ -92,16 +34,6 @@ msgstr "ファイル %s にアクセスできません。"
92
34
  msgid "Can not load profile data from %s."
93
35
  msgstr "プロファイルデータを %s からロードできません。"
94
36
 
95
- msgid "Connection refused"
96
- msgstr "接続が拒否されました"
97
-
98
- msgid "Connection timeout"
99
- msgstr "接続がタイムアウトになりました"
100
-
101
- #, python-format
102
- msgid "Could not load %(conf)r: %(error)s"
103
- msgstr "%(conf)r をロードできませんでした: %(error)s"
104
-
105
37
  #, python-format
106
38
  msgid "Data download error: %s"
107
39
  msgstr "データダウンロードエラー: %s"
@@ -109,50 +41,9 @@ msgstr "データダウンロードエラー: %s"
109
41
  msgid "Did not get a keys dict"
110
42
  msgstr "キーの辞書を取得できませんでした。"
111
43
 
112
- msgid "ERROR Failed to get my own IPs?"
113
- msgstr "エラー: 自分の IP の取得に失敗?"
114
-
115
- #, python-format
116
- msgid "ERROR Remote drive not mounted %s"
117
- msgstr "エラー: リモートドライブに %s がマウントされていません"
118
-
119
- #, python-format
120
- msgid ""
121
- "ERROR There are not enough handoff nodes to reach replica count for "
122
- "partition %s"
123
- msgstr ""
124
- "エラー パーティション %s のレプリカ数に達するための handoff ノードが不足して"
125
- "います。"
126
-
127
- msgid "ERROR auditing"
128
- msgstr "監査エラー"
129
-
130
44
  msgid "ERROR get_keys() missing callback"
131
45
  msgstr "エラー get_keys() コールバックがありません"
132
46
 
133
- #, python-format
134
- msgid "ERROR reading HTTP response from %s"
135
- msgstr "%s からの HTTP 応答の読み取りエラー"
136
-
137
- #, python-format
138
- msgid "ERROR reading db %s"
139
- msgstr "DB %s の読み取りエラー"
140
-
141
- #, python-format
142
- msgid "ERROR rsync failed with %(code)s: %(args)s"
143
- msgstr "エラー: %(code)s との再同期に失敗しました: %(args)s"
144
-
145
- #, python-format
146
- msgid "ERROR syncing %(file)s with node %(node)s"
147
- msgstr "ノード %(node)s との %(file)s の同期エラー"
148
-
149
- msgid "ERROR trying to replicate"
150
- msgstr "複製の試行エラー"
151
-
152
- #, python-format
153
- msgid "Error in %(conf)r with mtime_check_interval: %(error)s"
154
- msgstr "mtime_check_interval で %(conf)r にエラーがあります: %(error)s"
155
-
156
47
  msgid "Error listing devices"
157
48
  msgstr "デバイスのリストエラー"
158
49
 
@@ -175,53 +66,13 @@ msgstr "swift.conf の読み取りエラー"
175
66
  msgid "Error retrieving recon data"
176
67
  msgstr "再構成データの取得エラー"
177
68
 
178
- #, python-format
179
- msgid "Error sending UDP message to %(target)r: %(err)s"
180
- msgstr "%(target)r への UDP メッセージ送信エラー: %(err)s"
181
-
182
69
  msgid "Error: An error occurred"
183
70
  msgstr "エラー: エラーが発生しました"
184
71
 
185
- msgid "Error: missing config path argument"
186
- msgstr "エラー: 構成パス引数がありません"
187
-
188
- #, python-format
189
- msgid "Error: unable to locate %s"
190
- msgstr "エラー: %s が見つかりません"
191
-
192
72
  #, python-format
193
73
  msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
194
74
  msgstr "%(given_domain)s から %(found_domain)s へ CNAME チェーンをフォロー中"
195
75
 
196
- msgid "Found configs:"
197
- msgstr "構成が見つかりました:"
198
-
199
- msgid "Host unreachable"
200
- msgstr "ホストが到達不能です"
201
-
202
- #, python-format
203
- msgid "Invalid X-Container-Sync-To format %r"
204
- msgstr "X-Container-Sync-To 形式 %r が無効です"
205
-
206
- #, python-format
207
- msgid "Invalid host %r in X-Container-Sync-To"
208
- msgstr "無効なホスト %r が X-Container-Sync-To にあります"
209
-
210
- #, python-format
211
- msgid "Invalid pending entry %(file)s: %(entry)s"
212
- msgstr "無効な保留中項目 %(file)s: %(entry)s"
213
-
214
- #, python-format
215
- msgid ""
216
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
217
- "\"https\"."
218
- msgstr ""
219
- "無効なスキーム %r が X-Container-Sync-To にあります。「//」、「http」、"
220
- "「https」のいずれかでなければなりません。"
221
-
222
- msgid "Invalid swift_bytes"
223
- msgstr "無効な swift_bytes"
224
-
225
76
  #, python-format
226
77
  msgid "Mapped %(given_domain)s to %(found_domain)s"
227
78
  msgstr "%(given_domain)s が %(found_domain)s にマップされました"
@@ -230,149 +81,22 @@ msgstr "%(given_domain)s が %(found_domain)s にマップされました"
230
81
  msgid "Missing key for %r"
231
82
  msgstr "%r にキーがありません。"
232
83
 
233
- #, python-format
234
- msgid "No %s running"
235
- msgstr "%s が実行されていません"
236
-
237
- #, python-format
238
- msgid "No cluster endpoint for %(realm)r %(cluster)r"
239
- msgstr "%(realm)r %(cluster)r のエンドポイントクラスターがありません"
240
-
241
- #, python-format
242
- msgid "No permission to signal PID %d"
243
- msgstr "PID %d にシグナル通知する許可がありません"
244
-
245
- #, python-format
246
- msgid "No policy with index %s"
247
- msgstr "インデックス %s のポリシーはありません"
248
-
249
- #, python-format
250
- msgid "No realm key for %r"
251
- msgstr "%r のレルムキーがありません"
252
-
253
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
254
- msgstr ""
255
- "パラメーター、照会、およびフラグメントは X-Container-Sync-To で許可されていま"
256
- "せん"
257
-
258
- msgid "Path required in X-Container-Sync-To"
259
- msgstr "X-Container-Sync-To にパスが必要です"
260
-
261
84
  #, python-format
262
85
  msgid "Profiling Error: %s"
263
86
  msgstr "プロファイル作成エラー: %s"
264
87
 
265
- #, python-format
266
- msgid "Quarantining DB %s"
267
- msgstr "DB %s の検疫中"
268
-
269
88
  #, python-format
270
89
  msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
271
90
  msgstr ""
272
91
  "Ratelimit スリープログ: %(account)s/%(container)s/%(object)s の %(sleep)s"
273
92
 
274
- #, python-format
275
- msgid "Removed %(remove)d dbs"
276
- msgstr "%(remove)d 個の DB が削除されました"
277
-
278
- #, python-format
279
- msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
280
- msgstr "正しくない pid %(pid)d の pid ファイル %(pid_file)s を削除中"
281
-
282
- #, python-format
283
- msgid "Removing pid file %s with invalid pid"
284
- msgstr "無効な pid の pid ファイル %s を削除中"
285
-
286
- #, python-format
287
- msgid "Removing stale pid file %s"
288
- msgstr "失効した pid ファイル %s を削除中"
289
-
290
- msgid "Replication run OVER"
291
- msgstr "複製の実行が終了しました"
292
-
293
93
  #, python-format
294
94
  msgid "Returning 497 because of blacklisting: %s"
295
95
  msgstr "ブラックリスティングのため 497 を返しています: %s"
296
96
 
297
- #, python-format
298
- msgid "Running %s once"
299
- msgstr "%s を 1 回実行中"
300
-
301
- #, python-format
302
- msgid "Signal %(server)s pid: %(pid)s signal: %(signal)s"
303
- msgstr "%(server)s pid: %(pid)s へのシグナル: %(signal)s"
304
-
305
- #, python-format
306
- msgid "Skipping %(datadir)s because %(err)s"
307
- msgstr "%(err)s のため %(datadir)s をスキップします"
308
-
309
- #, python-format
310
- msgid "Skipping %s as it is not mounted"
311
- msgstr "マウントされていないため、 %s をスキップします"
312
-
313
- #, python-format
314
- msgid "Starting %s"
315
- msgstr "%s を開始しています"
316
-
317
97
  msgid "The file type are forbidden to access!"
318
98
  msgstr "このファイルタイプにはアクセスが禁止されています"
319
99
 
320
- msgid "UNCAUGHT EXCEPTION"
321
- msgstr "キャッチされていない例外"
322
-
323
- #, python-format
324
- msgid "Unable to find %(section)s config section in %(conf)s"
325
- msgstr "%(section)s 構成セクションが %(conf)s に見つかりません"
326
-
327
- #, python-format
328
- msgid "Unable to locate %s in libc. Leaving as a no-op."
329
- msgstr "%s が libc に見つかりません。no-op として終了します。"
330
-
331
- #, python-format
332
- msgid "Unable to locate config for %s"
333
- msgstr "%s の設定が見つかりません"
334
-
335
- #, python-format
336
- msgid "Unable to locate config number %(number)s for %(server)s"
337
- msgstr "%(server)s の設定番号 %(number)s が見つかりません"
338
-
339
- msgid ""
340
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
341
- msgstr ""
342
- "fallocate、posix_fallocate が libc に見つかりません。no-op として終了します。"
343
-
344
- #, python-format
345
- msgid "Unable to perform fsync() on directory %(dir)s: %(err)s"
346
- msgstr "ディレクトリー %(dir)s で fsync() を実行できません: %(err)s"
347
-
348
- #, python-format
349
- msgid "Unable to read config from %s"
350
- msgstr "構成を %s から読み取ることができません"
351
-
352
- msgid ""
353
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
354
- "termination for a production deployment."
355
- msgstr ""
356
- "警告: SSL を有効にするのはテスト目的のみでなければなりません。製品のデプロイ"
357
- "には外部 SSL 終端を使用してください。"
358
-
359
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
360
- msgstr "警告: ファイル記述子制限を変更できません。非ルートとして実行しますか?"
361
-
362
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
363
- msgstr "警告: 最大処理限界を変更できません。非ルートとして実行しますか?"
364
-
365
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
366
- msgstr "警告: メモリー制限を変更できません。非ルートとして実行しますか?"
367
-
368
- #, python-format
369
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
370
- msgstr "%(kill_wait)s 秒間、%(server)s の停止を待機しました。中止します"
371
-
372
- #, python-format
373
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; killing"
374
- msgstr "%(kill_wait)s 秒間、%(server)s の停止を待機しました。強制終了します"
375
-
376
100
  msgid "Warning: Cannot ratelimit without a memcached client"
377
101
  msgstr "警告: memcached クライアントなしで ratelimit を行うことはできません"
378
102