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.
- swift/__init__.py +29 -50
- swift/account/auditor.py +21 -118
- swift/account/backend.py +33 -28
- swift/account/reaper.py +37 -28
- swift/account/replicator.py +22 -0
- swift/account/server.py +60 -26
- swift/account/utils.py +28 -11
- swift-2.23.2.data/scripts/swift-account-audit → swift/cli/account_audit.py +23 -13
- swift-2.23.2.data/scripts/swift-config → swift/cli/config.py +2 -2
- swift/cli/container_deleter.py +5 -11
- swift-2.23.2.data/scripts/swift-dispersion-populate → swift/cli/dispersion_populate.py +8 -7
- swift/cli/dispersion_report.py +10 -9
- swift-2.23.2.data/scripts/swift-drive-audit → swift/cli/drive_audit.py +63 -21
- swift/cli/form_signature.py +3 -7
- swift-2.23.2.data/scripts/swift-get-nodes → swift/cli/get_nodes.py +8 -2
- swift/cli/info.py +183 -29
- swift/cli/manage_shard_ranges.py +708 -37
- swift-2.23.2.data/scripts/swift-oldies → swift/cli/oldies.py +25 -14
- swift-2.23.2.data/scripts/swift-orphans → swift/cli/orphans.py +7 -3
- swift/cli/recon.py +196 -67
- swift-2.23.2.data/scripts/swift-recon-cron → swift/cli/recon_cron.py +17 -20
- swift-2.23.2.data/scripts/swift-reconciler-enqueue → swift/cli/reconciler_enqueue.py +2 -3
- swift/cli/relinker.py +807 -126
- swift/cli/reload.py +135 -0
- swift/cli/ringbuilder.py +217 -20
- swift/cli/ringcomposer.py +0 -1
- swift/cli/shard-info.py +4 -3
- swift/common/base_storage_server.py +9 -20
- swift/common/bufferedhttp.py +48 -74
- swift/common/constraints.py +20 -15
- swift/common/container_sync_realms.py +9 -11
- swift/common/daemon.py +25 -8
- swift/common/db.py +198 -127
- swift/common/db_auditor.py +168 -0
- swift/common/db_replicator.py +95 -55
- swift/common/digest.py +141 -0
- swift/common/direct_client.py +144 -33
- swift/common/error_limiter.py +93 -0
- swift/common/exceptions.py +25 -1
- swift/common/header_key_dict.py +2 -9
- swift/common/http_protocol.py +373 -0
- swift/common/internal_client.py +129 -59
- swift/common/linkat.py +3 -4
- swift/common/manager.py +284 -67
- swift/common/memcached.py +396 -147
- swift/common/middleware/__init__.py +4 -0
- swift/common/middleware/account_quotas.py +211 -46
- swift/common/middleware/acl.py +3 -8
- swift/common/middleware/backend_ratelimit.py +230 -0
- swift/common/middleware/bulk.py +22 -34
- swift/common/middleware/catch_errors.py +1 -3
- swift/common/middleware/cname_lookup.py +6 -11
- swift/common/middleware/container_quotas.py +1 -1
- swift/common/middleware/container_sync.py +39 -17
- swift/common/middleware/copy.py +12 -0
- swift/common/middleware/crossdomain.py +22 -9
- swift/common/middleware/crypto/__init__.py +2 -1
- swift/common/middleware/crypto/crypto_utils.py +11 -15
- swift/common/middleware/crypto/decrypter.py +28 -11
- swift/common/middleware/crypto/encrypter.py +12 -17
- swift/common/middleware/crypto/keymaster.py +8 -15
- swift/common/middleware/crypto/kms_keymaster.py +2 -1
- swift/common/middleware/dlo.py +15 -11
- swift/common/middleware/domain_remap.py +5 -4
- swift/common/middleware/etag_quoter.py +128 -0
- swift/common/middleware/formpost.py +73 -70
- swift/common/middleware/gatekeeper.py +8 -1
- swift/common/middleware/keystoneauth.py +33 -3
- swift/common/middleware/list_endpoints.py +4 -4
- swift/common/middleware/listing_formats.py +85 -49
- swift/common/middleware/memcache.py +4 -81
- swift/common/middleware/name_check.py +3 -2
- swift/common/middleware/proxy_logging.py +160 -92
- swift/common/middleware/ratelimit.py +17 -10
- swift/common/middleware/read_only.py +6 -4
- swift/common/middleware/recon.py +59 -22
- swift/common/middleware/s3api/acl_handlers.py +25 -3
- swift/common/middleware/s3api/acl_utils.py +6 -1
- swift/common/middleware/s3api/controllers/__init__.py +6 -0
- swift/common/middleware/s3api/controllers/acl.py +3 -2
- swift/common/middleware/s3api/controllers/bucket.py +242 -137
- swift/common/middleware/s3api/controllers/logging.py +2 -2
- swift/common/middleware/s3api/controllers/multi_delete.py +43 -20
- swift/common/middleware/s3api/controllers/multi_upload.py +219 -133
- swift/common/middleware/s3api/controllers/obj.py +112 -8
- swift/common/middleware/s3api/controllers/object_lock.py +44 -0
- swift/common/middleware/s3api/controllers/s3_acl.py +2 -2
- swift/common/middleware/s3api/controllers/tagging.py +57 -0
- swift/common/middleware/s3api/controllers/versioning.py +36 -7
- swift/common/middleware/s3api/etree.py +22 -9
- swift/common/middleware/s3api/exception.py +0 -4
- swift/common/middleware/s3api/s3api.py +113 -41
- swift/common/middleware/s3api/s3request.py +384 -218
- swift/common/middleware/s3api/s3response.py +126 -23
- swift/common/middleware/s3api/s3token.py +16 -17
- swift/common/middleware/s3api/schema/delete.rng +1 -1
- swift/common/middleware/s3api/subresource.py +7 -10
- swift/common/middleware/s3api/utils.py +27 -10
- swift/common/middleware/slo.py +665 -358
- swift/common/middleware/staticweb.py +64 -37
- swift/common/middleware/symlink.py +52 -19
- swift/common/middleware/tempauth.py +76 -58
- swift/common/middleware/tempurl.py +192 -174
- swift/common/middleware/versioned_writes/__init__.py +51 -0
- swift/common/middleware/{versioned_writes.py → versioned_writes/legacy.py} +27 -26
- swift/common/middleware/versioned_writes/object_versioning.py +1482 -0
- swift/common/middleware/x_profile/exceptions.py +1 -4
- swift/common/middleware/x_profile/html_viewer.py +18 -19
- swift/common/middleware/x_profile/profile_model.py +1 -2
- swift/common/middleware/xprofile.py +10 -10
- swift-2.23.2.data/scripts/swift-container-server → swift/common/recon.py +13 -8
- swift/common/registry.py +147 -0
- swift/common/request_helpers.py +324 -57
- swift/common/ring/builder.py +67 -25
- swift/common/ring/composite_builder.py +1 -1
- swift/common/ring/ring.py +177 -51
- swift/common/ring/utils.py +1 -1
- swift/common/splice.py +10 -6
- swift/common/statsd_client.py +205 -0
- swift/common/storage_policy.py +49 -44
- swift/common/swob.py +86 -102
- swift/common/{utils.py → utils/__init__.py} +2191 -2762
- swift/common/utils/base.py +131 -0
- swift/common/utils/config.py +433 -0
- swift/common/utils/ipaddrs.py +256 -0
- swift/common/utils/libc.py +345 -0
- swift/common/utils/logs.py +859 -0
- swift/common/utils/timestamp.py +412 -0
- swift/common/wsgi.py +555 -536
- swift/container/auditor.py +14 -100
- swift/container/backend.py +552 -227
- swift/container/reconciler.py +126 -37
- swift/container/replicator.py +96 -22
- swift/container/server.py +397 -176
- swift/container/sharder.py +1580 -639
- swift/container/sync.py +94 -88
- swift/container/updater.py +53 -32
- swift/obj/auditor.py +153 -35
- swift/obj/diskfile.py +466 -217
- swift/obj/expirer.py +406 -124
- swift/obj/mem_diskfile.py +7 -4
- swift/obj/mem_server.py +1 -0
- swift/obj/reconstructor.py +523 -262
- swift/obj/replicator.py +249 -188
- swift/obj/server.py +213 -122
- swift/obj/ssync_receiver.py +145 -85
- swift/obj/ssync_sender.py +113 -54
- swift/obj/updater.py +653 -139
- swift/obj/watchers/__init__.py +0 -0
- swift/obj/watchers/dark_data.py +213 -0
- swift/proxy/controllers/account.py +11 -11
- swift/proxy/controllers/base.py +848 -604
- swift/proxy/controllers/container.py +452 -86
- swift/proxy/controllers/info.py +3 -2
- swift/proxy/controllers/obj.py +1009 -490
- swift/proxy/server.py +185 -112
- swift-2.35.0.dist-info/AUTHORS +501 -0
- swift-2.35.0.dist-info/LICENSE +202 -0
- {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/METADATA +52 -61
- swift-2.35.0.dist-info/RECORD +201 -0
- {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/WHEEL +1 -1
- {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/entry_points.txt +43 -0
- swift-2.35.0.dist-info/pbr.json +1 -0
- swift/locale/de/LC_MESSAGES/swift.po +0 -1216
- swift/locale/en_GB/LC_MESSAGES/swift.po +0 -1207
- swift/locale/es/LC_MESSAGES/swift.po +0 -1085
- swift/locale/fr/LC_MESSAGES/swift.po +0 -909
- swift/locale/it/LC_MESSAGES/swift.po +0 -894
- swift/locale/ja/LC_MESSAGES/swift.po +0 -965
- swift/locale/ko_KR/LC_MESSAGES/swift.po +0 -964
- swift/locale/pt_BR/LC_MESSAGES/swift.po +0 -881
- swift/locale/ru/LC_MESSAGES/swift.po +0 -891
- swift/locale/tr_TR/LC_MESSAGES/swift.po +0 -832
- swift/locale/zh_CN/LC_MESSAGES/swift.po +0 -833
- swift/locale/zh_TW/LC_MESSAGES/swift.po +0 -838
- swift-2.23.2.data/scripts/swift-account-auditor +0 -23
- swift-2.23.2.data/scripts/swift-account-info +0 -51
- swift-2.23.2.data/scripts/swift-account-reaper +0 -23
- swift-2.23.2.data/scripts/swift-account-replicator +0 -34
- swift-2.23.2.data/scripts/swift-account-server +0 -23
- swift-2.23.2.data/scripts/swift-container-auditor +0 -23
- swift-2.23.2.data/scripts/swift-container-info +0 -51
- swift-2.23.2.data/scripts/swift-container-reconciler +0 -21
- swift-2.23.2.data/scripts/swift-container-replicator +0 -34
- swift-2.23.2.data/scripts/swift-container-sharder +0 -33
- swift-2.23.2.data/scripts/swift-container-sync +0 -23
- swift-2.23.2.data/scripts/swift-container-updater +0 -23
- swift-2.23.2.data/scripts/swift-dispersion-report +0 -24
- swift-2.23.2.data/scripts/swift-form-signature +0 -20
- swift-2.23.2.data/scripts/swift-init +0 -119
- swift-2.23.2.data/scripts/swift-object-auditor +0 -29
- swift-2.23.2.data/scripts/swift-object-expirer +0 -33
- swift-2.23.2.data/scripts/swift-object-info +0 -60
- swift-2.23.2.data/scripts/swift-object-reconstructor +0 -33
- swift-2.23.2.data/scripts/swift-object-relinker +0 -41
- swift-2.23.2.data/scripts/swift-object-replicator +0 -37
- swift-2.23.2.data/scripts/swift-object-server +0 -27
- swift-2.23.2.data/scripts/swift-object-updater +0 -23
- swift-2.23.2.data/scripts/swift-proxy-server +0 -23
- swift-2.23.2.data/scripts/swift-recon +0 -24
- swift-2.23.2.data/scripts/swift-ring-builder +0 -24
- swift-2.23.2.data/scripts/swift-ring-builder-analyzer +0 -22
- swift-2.23.2.data/scripts/swift-ring-composer +0 -22
- swift-2.23.2.dist-info/DESCRIPTION.rst +0 -166
- swift-2.23.2.dist-info/RECORD +0 -220
- swift-2.23.2.dist-info/metadata.json +0 -1
- swift-2.23.2.dist-info/pbr.json +0 -1
- {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/top_level.txt +0 -0
@@ -1,894 +0,0 @@
|
|
1
|
-
# Translations template for swift.
|
2
|
-
# Copyright (C) 2015 ORGANIZATION
|
3
|
-
# This file is distributed under the same license as the swift project.
|
4
|
-
#
|
5
|
-
# Translators:
|
6
|
-
# Andreas Jaeger <jaegerandi@gmail.com>, 2016. #zanata
|
7
|
-
msgid ""
|
8
|
-
msgstr ""
|
9
|
-
"Project-Id-Version: swift VERSION\n"
|
10
|
-
"Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
|
11
|
-
"POT-Creation-Date: 2019-10-03 19:48+0000\n"
|
12
|
-
"MIME-Version: 1.0\n"
|
13
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14
|
-
"Content-Transfer-Encoding: 8bit\n"
|
15
|
-
"PO-Revision-Date: 2016-04-12 06:42+0000\n"
|
16
|
-
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
|
17
|
-
"Language: it\n"
|
18
|
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19
|
-
"Generated-By: Babel 2.0\n"
|
20
|
-
"X-Generator: Zanata 4.3.3\n"
|
21
|
-
"Language-Team: Italian\n"
|
22
|
-
|
23
|
-
msgid ""
|
24
|
-
"\n"
|
25
|
-
"user quit"
|
26
|
-
msgstr ""
|
27
|
-
"\n"
|
28
|
-
"l'utente è uscito"
|
29
|
-
|
30
|
-
#, python-format
|
31
|
-
msgid " - %s"
|
32
|
-
msgstr " - %s"
|
33
|
-
|
34
|
-
#, python-format
|
35
|
-
msgid " - parallel, %s"
|
36
|
-
msgstr " - parallelo, %s"
|
37
|
-
|
38
|
-
#, python-format
|
39
|
-
msgid ""
|
40
|
-
"%(checked)d suffixes checked - %(hashed).2f%% hashed, %(synced).2f%% synced"
|
41
|
-
msgstr ""
|
42
|
-
"%(checked)d suffissi controllati - %(hashed).2f%% con hash, %(synced).2f%% "
|
43
|
-
"sincronizzati"
|
44
|
-
|
45
|
-
#, python-format
|
46
|
-
msgid "%(msg)s %(ip)s:%(port)s/%(device)s"
|
47
|
-
msgstr "%(msg)s %(ip)s:%(port)s/%(device)s"
|
48
|
-
|
49
|
-
#, python-format
|
50
|
-
msgid ""
|
51
|
-
"%(replicated)d/%(total)d (%(percentage).2f%%) partitions replicated in "
|
52
|
-
"%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
|
53
|
-
msgstr ""
|
54
|
-
"%(replicated)d/%(total)d (%(percentage).2f%%) partizioni replicate in "
|
55
|
-
"%(time).2fs (%(rate).2f/sec, %(remaining)s rimanenti)"
|
56
|
-
|
57
|
-
#, python-format
|
58
|
-
msgid "%(success)s successes, %(failure)s failures"
|
59
|
-
msgstr "%(success)s operazioni con esito positivo, %(failure)s errori"
|
60
|
-
|
61
|
-
#, python-format
|
62
|
-
msgid "%(type)s returning 503 for %(statuses)s"
|
63
|
-
msgstr "%(type)s restituisce 503 per %(statuses)s"
|
64
|
-
|
65
|
-
#, python-format
|
66
|
-
msgid "%s already started..."
|
67
|
-
msgstr "%s già avviato..."
|
68
|
-
|
69
|
-
#, python-format
|
70
|
-
msgid "%s does not exist"
|
71
|
-
msgstr "%s non esiste"
|
72
|
-
|
73
|
-
#, python-format
|
74
|
-
msgid "%s is not mounted"
|
75
|
-
msgstr "%s non è montato"
|
76
|
-
|
77
|
-
#, python-format
|
78
|
-
msgid "%s responded as unmounted"
|
79
|
-
msgstr "%s ha risposto come smontato"
|
80
|
-
|
81
|
-
#, python-format
|
82
|
-
msgid "%s: Connection reset by peer"
|
83
|
-
msgstr "%s: Connessione reimpostata dal peer"
|
84
|
-
|
85
|
-
msgid "Account"
|
86
|
-
msgstr "Conto"
|
87
|
-
|
88
|
-
#, python-format
|
89
|
-
msgid "Account audit \"once\" mode completed: %.02fs"
|
90
|
-
msgstr "Modalità \"once\" verifica account completata: %.02fs"
|
91
|
-
|
92
|
-
#, python-format
|
93
|
-
msgid "Account audit pass completed: %.02fs"
|
94
|
-
msgstr "Trasmissione verifica account completata: %.02fs"
|
95
|
-
|
96
|
-
#, python-format
|
97
|
-
msgid ""
|
98
|
-
"Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
|
99
|
-
msgstr ""
|
100
|
-
"È stato eseguito un tentativo di replicare %(count)d dbs in %(time).5f "
|
101
|
-
"secondi (%(rate).5f/s)"
|
102
|
-
|
103
|
-
#, python-format
|
104
|
-
msgid "Bad rsync return code: %(ret)d <- %(args)s"
|
105
|
-
msgstr "Codice di ritorno rsync errato: %(ret)d <- %(args)s"
|
106
|
-
|
107
|
-
msgid "Begin account audit \"once\" mode"
|
108
|
-
msgstr "Avvio modalità \"once\" verifica account"
|
109
|
-
|
110
|
-
msgid "Begin account audit pass."
|
111
|
-
msgstr "Avvio trasmissione verifica account."
|
112
|
-
|
113
|
-
msgid "Begin container audit \"once\" mode"
|
114
|
-
msgstr "Avvio modalità \"once\" verifica contenitore"
|
115
|
-
|
116
|
-
msgid "Begin container audit pass."
|
117
|
-
msgstr "Avvio trasmissione verifica contenitore."
|
118
|
-
|
119
|
-
msgid "Begin container sync \"once\" mode"
|
120
|
-
msgstr "Avvio della modalità \"once\" di sincronizzazione contenitore"
|
121
|
-
|
122
|
-
msgid "Begin container update single threaded sweep"
|
123
|
-
msgstr "Avvio pulizia a singolo thread aggiornamento contenitore"
|
124
|
-
|
125
|
-
msgid "Begin container update sweep"
|
126
|
-
msgstr "Avvio pulizia aggiornamento contenitore"
|
127
|
-
|
128
|
-
msgid "Begin object update single threaded sweep"
|
129
|
-
msgstr "Avvio pulizia a singolo thread aggiornamento oggetto"
|
130
|
-
|
131
|
-
msgid "Begin object update sweep"
|
132
|
-
msgstr "Avvio pulizia aggiornamento oggetto"
|
133
|
-
|
134
|
-
msgid "Beginning replication run"
|
135
|
-
msgstr "Avvio replica"
|
136
|
-
|
137
|
-
msgid "Broker error trying to rollback locked connection"
|
138
|
-
msgstr ""
|
139
|
-
"Errore del broker durante il tentativo di eseguire il rollback della "
|
140
|
-
"connessione bloccata"
|
141
|
-
|
142
|
-
#, python-format
|
143
|
-
msgid "Can not access the file %s."
|
144
|
-
msgstr "Impossibile accedere al file %s."
|
145
|
-
|
146
|
-
#, python-format
|
147
|
-
msgid "Can not load profile data from %s."
|
148
|
-
msgstr "Impossibile caricare i dati del profilo da %s."
|
149
|
-
|
150
|
-
#, python-format
|
151
|
-
msgid "Client did not read from proxy within %ss"
|
152
|
-
msgstr "Il client non ha eseguito la lettura dal proxy in %ss"
|
153
|
-
|
154
|
-
msgid "Client disconnected on read"
|
155
|
-
msgstr "Client scollegato alla lettura"
|
156
|
-
|
157
|
-
msgid "Client disconnected without sending enough data"
|
158
|
-
msgstr "Client disconnesso senza inviare dati sufficienti"
|
159
|
-
|
160
|
-
msgid "Client disconnected without sending last chunk"
|
161
|
-
msgstr "Client disconnesso senza inviare l'ultima porzione"
|
162
|
-
|
163
|
-
#, python-format
|
164
|
-
msgid ""
|
165
|
-
"Client path %(client)s does not match path stored in object metadata %(meta)s"
|
166
|
-
msgstr ""
|
167
|
-
"Il percorso del client %(client)s non corrisponde al percorso memorizzato "
|
168
|
-
"nei metadati dell'oggetto %(meta)s"
|
169
|
-
|
170
|
-
msgid ""
|
171
|
-
"Configuration option internal_client_conf_path not defined. Using default "
|
172
|
-
"configuration, See internal-client.conf-sample for options"
|
173
|
-
msgstr ""
|
174
|
-
"Opzione di configurazione internal_client_conf_path non definita. Viene "
|
175
|
-
"utilizzata la configurazione predefinita, vedere l'esempio internal-client."
|
176
|
-
"conf-sample per le opzioni"
|
177
|
-
|
178
|
-
msgid "Connection refused"
|
179
|
-
msgstr "Connessione rifiutata"
|
180
|
-
|
181
|
-
msgid "Connection timeout"
|
182
|
-
msgstr "Timeout della connessione"
|
183
|
-
|
184
|
-
msgid "Container"
|
185
|
-
msgstr "Contenitore"
|
186
|
-
|
187
|
-
#, python-format
|
188
|
-
msgid "Container audit \"once\" mode completed: %.02fs"
|
189
|
-
msgstr "Modalità \"once\" verifica contenitore completata: %.02fs"
|
190
|
-
|
191
|
-
#, python-format
|
192
|
-
msgid "Container audit pass completed: %.02fs"
|
193
|
-
msgstr "Trasmissione verifica contenitore completata: %.02fs"
|
194
|
-
|
195
|
-
#, python-format
|
196
|
-
msgid "Container sync \"once\" mode completed: %.02fs"
|
197
|
-
msgstr ""
|
198
|
-
"Modalità \"once\" di sincronizzazione del contenitore completata: %.02fs"
|
199
|
-
|
200
|
-
#, python-format
|
201
|
-
msgid ""
|
202
|
-
"Container update single threaded sweep completed: %(elapsed).02fs, "
|
203
|
-
"%(success)s successes, %(fail)s failures, %(no_change)s with no changes"
|
204
|
-
msgstr ""
|
205
|
-
"Pulizia a singolo thread aggiornamento contenitore completata: "
|
206
|
-
"%(elapsed).02fs, %(success)s operazioni con esito positivo, %(fail)s errori, "
|
207
|
-
"%(no_change)s senza modifiche"
|
208
|
-
|
209
|
-
#, python-format
|
210
|
-
msgid "Container update sweep completed: %.02fs"
|
211
|
-
msgstr "Pulizia aggiornamento contenitore completata: %.02fs"
|
212
|
-
|
213
|
-
#, python-format
|
214
|
-
msgid ""
|
215
|
-
"Container update sweep of %(path)s completed: %(elapsed).02fs, %(success)s "
|
216
|
-
"successes, %(fail)s failures, %(no_change)s with no changes"
|
217
|
-
msgstr ""
|
218
|
-
"Pulizia aggiornamento contenitore di %(path)s completata: %(elapsed).02fs, "
|
219
|
-
"%(success)s operazioni con esito positivo, %(fail)s errori, %(no_change)s "
|
220
|
-
"senza modifiche"
|
221
|
-
|
222
|
-
#, python-format
|
223
|
-
msgid "Data download error: %s"
|
224
|
-
msgstr "Errore di download dei dati: %s"
|
225
|
-
|
226
|
-
#, python-format
|
227
|
-
msgid "ERROR %(db_file)s: %(validate_sync_to_err)s"
|
228
|
-
msgstr "ERRORE %(db_file)s: %(validate_sync_to_err)s"
|
229
|
-
|
230
|
-
#, python-format
|
231
|
-
msgid "ERROR %(status)d %(body)s From %(type)s Server"
|
232
|
-
msgstr "ERRORE %(status)d %(body)s dal server %(type)s"
|
233
|
-
|
234
|
-
#, python-format
|
235
|
-
msgid "ERROR %(status)d %(body)s From Object Server re: %(path)s"
|
236
|
-
msgstr "ERRORE %(status)d %(body)s Dal server degli oggetti re: %(path)s"
|
237
|
-
|
238
|
-
#, python-format
|
239
|
-
msgid "ERROR %(status)d Expect: 100-continue From Object Server"
|
240
|
-
msgstr "ERRORE %(status)d Previsto: 100-continue dal server degli oggetti"
|
241
|
-
|
242
|
-
#, python-format
|
243
|
-
msgid ""
|
244
|
-
"ERROR Account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
245
|
-
"later): Response %(status)s %(reason)s"
|
246
|
-
msgstr ""
|
247
|
-
"ERRORE Aggiornamento dell'account non riuscito con %(ip)s:%(port)s/"
|
248
|
-
"%(device)s (verrà eseguito un nuovo tentativo successivamente): Risposta "
|
249
|
-
"%(status)s %(reason)s"
|
250
|
-
|
251
|
-
#, python-format
|
252
|
-
msgid "ERROR Client read timeout (%ss)"
|
253
|
-
msgstr "ERRORE Timeout di lettura del client (%ss)"
|
254
|
-
|
255
|
-
#, python-format
|
256
|
-
msgid ""
|
257
|
-
"ERROR Container update failed (saving for async update later): %(status)d "
|
258
|
-
"response from %(ip)s:%(port)s/%(dev)s"
|
259
|
-
msgstr ""
|
260
|
-
"ERRORE Aggiornamento del contenitore non riuscito (salvataggio per "
|
261
|
-
"l'aggiornamento asincrono successivamente): %(status)d risposta da %(ip)s:"
|
262
|
-
"%(port)s/%(dev)s"
|
263
|
-
|
264
|
-
#, python-format
|
265
|
-
msgid "ERROR Could not get account info %s"
|
266
|
-
msgstr "ERRORE Impossibile ottenere le informazioni sull'account %s"
|
267
|
-
|
268
|
-
#, python-format
|
269
|
-
msgid "ERROR Could not get container info %s"
|
270
|
-
msgstr "ERRORE Impossibile ottenere le informazioni sul contenitore %s"
|
271
|
-
|
272
|
-
#, python-format
|
273
|
-
msgid "ERROR DiskFile %(data_file)s close failure: %(exc)s : %(stack)s"
|
274
|
-
msgstr "ERRORE Errore di chiusura DiskFile %(data_file)s: %(exc)s : %(stack)s"
|
275
|
-
|
276
|
-
msgid "ERROR Exception causing client disconnect"
|
277
|
-
msgstr "ERRORE Eccezione che causa la disconnessione del client"
|
278
|
-
|
279
|
-
#, python-format
|
280
|
-
msgid "ERROR Exception transferring data to object servers %s"
|
281
|
-
msgstr ""
|
282
|
-
"ERRORE Eccezione durante il trasferimento di dati nel server degli oggetti %s"
|
283
|
-
|
284
|
-
msgid "ERROR Failed to get my own IPs?"
|
285
|
-
msgstr "ERRORE Impossibile ottenere i propri IP?"
|
286
|
-
|
287
|
-
msgid "ERROR Insufficient Storage"
|
288
|
-
msgstr "ERRORE Memoria insufficiente"
|
289
|
-
|
290
|
-
#, python-format
|
291
|
-
msgid "ERROR Object %(obj)s failed audit and was quarantined: %(err)s"
|
292
|
-
msgstr ""
|
293
|
-
"ERRORE L'oggetto %(obj)s non ha superato la verifica ed è stato inserito "
|
294
|
-
"nella quarantena: %(err)s"
|
295
|
-
|
296
|
-
#, python-format
|
297
|
-
msgid "ERROR Pickle problem, quarantining %s"
|
298
|
-
msgstr "ERRORE Problema relativo a pickle, inserimento di %s nella quarantena"
|
299
|
-
|
300
|
-
#, python-format
|
301
|
-
msgid "ERROR Remote drive not mounted %s"
|
302
|
-
msgstr "ERRORE Unità remota non montata %s"
|
303
|
-
|
304
|
-
#, python-format
|
305
|
-
msgid "ERROR Syncing %(db_file)s %(row)s"
|
306
|
-
msgstr "ERRORE durante la sincronizzazione di %(db_file)s %(row)s"
|
307
|
-
|
308
|
-
#, python-format
|
309
|
-
msgid "ERROR Syncing %s"
|
310
|
-
msgstr "ERRORE durante la sincronizzazione di %s"
|
311
|
-
|
312
|
-
#, python-format
|
313
|
-
msgid "ERROR Trying to audit %s"
|
314
|
-
msgstr "ERRORE durante il tentativo di eseguire la verifica %s"
|
315
|
-
|
316
|
-
msgid "ERROR Unhandled exception in request"
|
317
|
-
msgstr "ERRORE Eccezione non gestita nella richiesta"
|
318
|
-
|
319
|
-
#, python-format
|
320
|
-
msgid "ERROR __call__ error with %(method)s %(path)s "
|
321
|
-
msgstr "ERRORE errore __call__ con %(method)s %(path)s "
|
322
|
-
|
323
|
-
#, python-format
|
324
|
-
msgid ""
|
325
|
-
"ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
326
|
-
"later)"
|
327
|
-
msgstr ""
|
328
|
-
"ERRORE aggiornamento dell'account non riuscito con %(ip)s:%(port)s/"
|
329
|
-
"%(device)s (verrà eseguito un nuovo tentativo successivamente)"
|
330
|
-
|
331
|
-
#, python-format
|
332
|
-
msgid ""
|
333
|
-
"ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
334
|
-
"later): "
|
335
|
-
msgstr ""
|
336
|
-
"ERRORE aggiornamento dell'account non riuscito con %(ip)s:%(port)s/"
|
337
|
-
"%(device)s (verrà eseguito un nuovo tentativo successivamente): "
|
338
|
-
|
339
|
-
#, python-format
|
340
|
-
msgid "ERROR async pending file with unexpected name %s"
|
341
|
-
msgstr "ERRORE file in sospeso asincrono con nome non previsto %s"
|
342
|
-
|
343
|
-
msgid "ERROR auditing"
|
344
|
-
msgstr "ERRORE durante la verifica"
|
345
|
-
|
346
|
-
#, python-format
|
347
|
-
msgid "ERROR auditing: %s"
|
348
|
-
msgstr "ERRORE durante la verifica: %s"
|
349
|
-
|
350
|
-
#, python-format
|
351
|
-
msgid ""
|
352
|
-
"ERROR container update failed with %(ip)s:%(port)s/%(dev)s (saving for async "
|
353
|
-
"update later)"
|
354
|
-
msgstr ""
|
355
|
-
"ERRORE aggiornamento del contenitore non riuscito con %(ip)s:%(port)s/"
|
356
|
-
"%(dev)s (salvataggio per aggiornamento asincrono successivamente)"
|
357
|
-
|
358
|
-
#, python-format
|
359
|
-
msgid "ERROR reading HTTP response from %s"
|
360
|
-
msgstr "ERRORE durante la lettura della risposta HTTP da %s"
|
361
|
-
|
362
|
-
#, python-format
|
363
|
-
msgid "ERROR reading db %s"
|
364
|
-
msgstr "ERRORE durante la lettura del db %s"
|
365
|
-
|
366
|
-
#, python-format
|
367
|
-
msgid "ERROR rsync failed with %(code)s: %(args)s"
|
368
|
-
msgstr "ERRORE rsync non riuscito con %(code)s: %(args)s"
|
369
|
-
|
370
|
-
#, python-format
|
371
|
-
msgid "ERROR syncing %(file)s with node %(node)s"
|
372
|
-
msgstr "ERRORE durante la sincronizzazione di %(file)s con il nodo %(node)s"
|
373
|
-
|
374
|
-
msgid "ERROR trying to replicate"
|
375
|
-
msgstr "ERRORE durante il tentativo di eseguire la replica"
|
376
|
-
|
377
|
-
#, python-format
|
378
|
-
msgid "ERROR while trying to clean up %s"
|
379
|
-
msgstr "ERRORE durante il tentativo di ripulire %s"
|
380
|
-
|
381
|
-
#, python-format
|
382
|
-
msgid "ERROR with %(type)s server %(ip)s:%(port)s/%(device)s re: %(info)s"
|
383
|
-
msgstr ""
|
384
|
-
"ERRORE relativo al server %(type)s %(ip)s:%(port)s/%(device)s re: %(info)s"
|
385
|
-
|
386
|
-
#, python-format
|
387
|
-
msgid "ERROR with loading suppressions from %s: "
|
388
|
-
msgstr "ERRORE relativo al caricamento delle eliminazioni da %s: "
|
389
|
-
|
390
|
-
#, python-format
|
391
|
-
msgid "ERROR with remote server %(ip)s:%(port)s/%(device)s"
|
392
|
-
msgstr "ERRORE relativo al server remoto %(ip)s:%(port)s/%(device)s"
|
393
|
-
|
394
|
-
#, python-format
|
395
|
-
msgid "ERROR: Failed to get paths to drive partitions: %s"
|
396
|
-
msgstr "ERRORE: Impossibile ottenere i percorsi per gestire le partizioni: %s"
|
397
|
-
|
398
|
-
#, python-format
|
399
|
-
msgid "ERROR: Unable to access %(path)s: %(error)s"
|
400
|
-
msgstr "ERRORE: Impossibile accedere a %(path)s: %(error)s"
|
401
|
-
|
402
|
-
#, python-format
|
403
|
-
msgid "ERROR: Unable to run auditing: %s"
|
404
|
-
msgstr "ERRORE: Impossibile eseguire la verifica: %s"
|
405
|
-
|
406
|
-
msgid "Error hashing suffix"
|
407
|
-
msgstr "Errore durante l'hash del suffisso"
|
408
|
-
|
409
|
-
msgid "Error listing devices"
|
410
|
-
msgstr "Errore durante l'elenco dei dispositivi"
|
411
|
-
|
412
|
-
#, python-format
|
413
|
-
msgid "Error on render profiling results: %s"
|
414
|
-
msgstr ""
|
415
|
-
"Errore durante la visualizzazione dei risultati della creazione dei profili: "
|
416
|
-
"%s"
|
417
|
-
|
418
|
-
msgid "Error parsing recon cache file"
|
419
|
-
msgstr "Errore durante l'analisi del file della cache di riconoscimento"
|
420
|
-
|
421
|
-
msgid "Error reading recon cache file"
|
422
|
-
msgstr "Errore durante la lettura del file della cache di riconoscimento"
|
423
|
-
|
424
|
-
msgid "Error reading ringfile"
|
425
|
-
msgstr "Errore durante la lettura del ringfile"
|
426
|
-
|
427
|
-
msgid "Error reading swift.conf"
|
428
|
-
msgstr "Errore durante la lettura di swift.conf"
|
429
|
-
|
430
|
-
msgid "Error retrieving recon data"
|
431
|
-
msgstr "Errore durante il richiamo dei dati di riconoscimento"
|
432
|
-
|
433
|
-
msgid "Error syncing handoff partition"
|
434
|
-
msgstr "Errore durante la sincronizzazione della partizione di passaggio"
|
435
|
-
|
436
|
-
msgid "Error syncing partition"
|
437
|
-
msgstr "Errore durante la sincronizzazione della partizione"
|
438
|
-
|
439
|
-
#, python-format
|
440
|
-
msgid "Error syncing with node: %s"
|
441
|
-
msgstr "Errore durante la sincronizzazione con il nodo: %s"
|
442
|
-
|
443
|
-
#, python-format
|
444
|
-
msgid "Error trying to rebuild %(path)s policy#%(policy)d frag#%(frag_index)s"
|
445
|
-
msgstr ""
|
446
|
-
"Errore nel tentativo di ricreare %(path)s policy#%(policy)d frag#"
|
447
|
-
"%(frag_index)s"
|
448
|
-
|
449
|
-
msgid "Error: An error occurred"
|
450
|
-
msgstr "Errore: Si è verificato un errore"
|
451
|
-
|
452
|
-
msgid "Error: missing config path argument"
|
453
|
-
msgstr "Errore: Argomento path della configurazione mancante"
|
454
|
-
|
455
|
-
#, python-format
|
456
|
-
msgid "Error: unable to locate %s"
|
457
|
-
msgstr "Errore: impossibile individuare %s"
|
458
|
-
|
459
|
-
#, python-format
|
460
|
-
msgid "Exception with %(ip)s:%(port)s/%(device)s"
|
461
|
-
msgstr "Eccezione relativa a %(ip)s:%(port)s/%(device)s"
|
462
|
-
|
463
|
-
#, python-format
|
464
|
-
msgid "Expect: 100-continue on %s"
|
465
|
-
msgstr "Previsto: 100-continue su %s"
|
466
|
-
|
467
|
-
#, python-format
|
468
|
-
msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
|
469
|
-
msgstr ""
|
470
|
-
"Viene seguita la catena CNAME per %(given_domain)s verso %(found_domain)s"
|
471
|
-
|
472
|
-
msgid "Found configs:"
|
473
|
-
msgstr "Configurazioni trovate:"
|
474
|
-
|
475
|
-
msgid ""
|
476
|
-
"Handoffs first mode still has handoffs remaining. Aborting current "
|
477
|
-
"replication pass."
|
478
|
-
msgstr ""
|
479
|
-
"Nella prima modalità di passaggio ci sono ancora passaggi restanti. "
|
480
|
-
"Interruzione del passaggio di replica corrente."
|
481
|
-
|
482
|
-
msgid "Host unreachable"
|
483
|
-
msgstr "Host non raggiungibile"
|
484
|
-
|
485
|
-
#, python-format
|
486
|
-
msgid "Invalid X-Container-Sync-To format %r"
|
487
|
-
msgstr "Formato X-Container-Sync-To non valido %r"
|
488
|
-
|
489
|
-
#, python-format
|
490
|
-
msgid "Invalid host %r in X-Container-Sync-To"
|
491
|
-
msgstr "Host non valido %r in X-Container-Sync-To"
|
492
|
-
|
493
|
-
#, python-format
|
494
|
-
msgid "Invalid pending entry %(file)s: %(entry)s"
|
495
|
-
msgstr "Voce in sospeso non valida %(file)s: %(entry)s"
|
496
|
-
|
497
|
-
#, python-format
|
498
|
-
msgid "Invalid response %(resp)s from %(full_path)s"
|
499
|
-
msgstr "Risposta non valida %(resp)s da %(full_path)s"
|
500
|
-
|
501
|
-
#, python-format
|
502
|
-
msgid "Invalid response %(resp)s from %(ip)s"
|
503
|
-
msgstr "Risposta non valida %(resp)s da %(ip)s"
|
504
|
-
|
505
|
-
#, python-format
|
506
|
-
msgid ""
|
507
|
-
"Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
|
508
|
-
"\"https\"."
|
509
|
-
msgstr ""
|
510
|
-
"Schema non valido %r in X-Container-Sync-To, deve essere \"//\", \"http\" "
|
511
|
-
"oppure \"https\"."
|
512
|
-
|
513
|
-
#, python-format
|
514
|
-
msgid "Killing long-running rsync: %s"
|
515
|
-
msgstr "Chiusura rsync ad elaborazione prolungata: %s"
|
516
|
-
|
517
|
-
msgid "Lockup detected.. killing live coros."
|
518
|
-
msgstr "Blocco rilevato... chiusura dei coros attivi."
|
519
|
-
|
520
|
-
#, python-format
|
521
|
-
msgid "Mapped %(given_domain)s to %(found_domain)s"
|
522
|
-
msgstr "%(given_domain)s associato a %(found_domain)s"
|
523
|
-
|
524
|
-
#, python-format
|
525
|
-
msgid "No %s running"
|
526
|
-
msgstr "Nessun %s in esecuzione"
|
527
|
-
|
528
|
-
#, python-format
|
529
|
-
msgid "No permission to signal PID %d"
|
530
|
-
msgstr "Nessuna autorizzazione per la segnalazione del PID %d"
|
531
|
-
|
532
|
-
#, python-format
|
533
|
-
msgid "No policy with index %s"
|
534
|
-
msgstr "Nessuna politica con indice %s"
|
535
|
-
|
536
|
-
#, python-format
|
537
|
-
msgid "No realm key for %r"
|
538
|
-
msgstr "Nessuna chiave dell'area di autenticazione per %r"
|
539
|
-
|
540
|
-
#, python-format
|
541
|
-
msgid "Node error limited %(ip)s:%(port)s (%(device)s)"
|
542
|
-
msgstr "Errore del nodo limitato %(ip)s:%(port)s (%(device)s)"
|
543
|
-
|
544
|
-
#, python-format
|
545
|
-
msgid "Not enough object servers ack'ed (got %d)"
|
546
|
-
msgstr "Server degli oggetti riconosciuti non sufficienti (got %d)"
|
547
|
-
|
548
|
-
#, python-format
|
549
|
-
msgid ""
|
550
|
-
"Not found %(sync_from)r => %(sync_to)r - object "
|
551
|
-
"%(obj_name)r"
|
552
|
-
msgstr "%(sync_from)r => %(sync_to)r non trovato - oggetto %(obj_name)r"
|
553
|
-
|
554
|
-
#, python-format
|
555
|
-
msgid "Nothing reconstructed for %s seconds."
|
556
|
-
msgstr "Nessun elemento ricostruito per %s secondi."
|
557
|
-
|
558
|
-
#, python-format
|
559
|
-
msgid "Nothing replicated for %s seconds."
|
560
|
-
msgstr "Nessun elemento replicato per %s secondi."
|
561
|
-
|
562
|
-
msgid "Object"
|
563
|
-
msgstr "Oggetto"
|
564
|
-
|
565
|
-
msgid "Object PUT"
|
566
|
-
msgstr "PUT dell'oggetto"
|
567
|
-
|
568
|
-
#, python-format
|
569
|
-
msgid "Object PUT returning 202 for 409: %(req_timestamp)s <= %(timestamps)r"
|
570
|
-
msgstr ""
|
571
|
-
"Il PUT dell'oggetto ha restituito 202 per 409: %(req_timestamp)s <= "
|
572
|
-
"%(timestamps)r"
|
573
|
-
|
574
|
-
#, python-format
|
575
|
-
msgid "Object PUT returning 412, %(statuses)r"
|
576
|
-
msgstr "Il PUT dell'oggetto ha restituito 412, %(statuses)r"
|
577
|
-
|
578
|
-
#, python-format
|
579
|
-
msgid ""
|
580
|
-
"Object audit (%(type)s) \"%(mode)s\" mode completed: %(elapsed).02fs. Total "
|
581
|
-
"quarantined: %(quars)d, Total errors: %(errors)d, Total files/sec: "
|
582
|
-
"%(frate).2f, Total bytes/sec: %(brate).2f, Auditing time: %(audit).2f, Rate: "
|
583
|
-
"%(audit_rate).2f"
|
584
|
-
msgstr ""
|
585
|
-
"Modalità \"%(mode)s\" (%(type)s) verifica oggetto completata: "
|
586
|
-
"%(elapsed).02fs. Totale in quarantena: %(quars)d, Totale errori: %(errors)d, "
|
587
|
-
"Totale file/sec: %(frate).2f, Totale byte/sec: %(brate).2f, Tempo verifica: "
|
588
|
-
"%(audit).2f, Velocità: %(audit_rate).2f"
|
589
|
-
|
590
|
-
#, python-format
|
591
|
-
msgid ""
|
592
|
-
"Object audit (%(type)s). Since %(start_time)s: Locally: %(passes)d passed, "
|
593
|
-
"%(quars)d quarantined, %(errors)d errors, files/sec: %(frate).2f, bytes/sec: "
|
594
|
-
"%(brate).2f, Total time: %(total).2f, Auditing time: %(audit).2f, Rate: "
|
595
|
-
"%(audit_rate).2f"
|
596
|
-
msgstr ""
|
597
|
-
"Verifica oggetto (%(type)s). A partire da %(start_time)s: In locale: "
|
598
|
-
"%(passes)d passati, %(quars)d in quarantena, %(errors)d errori file/sec: "
|
599
|
-
"%(frate).2f , byte/sec: %(brate).2f, Tempo totale: %(total).2f, Tempo "
|
600
|
-
"verifica: %(audit).2f, Velocità: %(audit_rate).2f"
|
601
|
-
|
602
|
-
#, python-format
|
603
|
-
msgid "Object audit stats: %s"
|
604
|
-
msgstr "Statistiche verifica oggetto: %s"
|
605
|
-
|
606
|
-
#, python-format
|
607
|
-
msgid "Object reconstruction complete (once). (%.02f minutes)"
|
608
|
-
msgstr "Ricostruzione dell'oggetto completata (una volta). (%.02f minuti)"
|
609
|
-
|
610
|
-
#, python-format
|
611
|
-
msgid "Object reconstruction complete. (%.02f minutes)"
|
612
|
-
msgstr "Ricostruzione dell'oggetto completata. (%.02f minuti)"
|
613
|
-
|
614
|
-
#, python-format
|
615
|
-
msgid "Object replication complete (once). (%.02f minutes)"
|
616
|
-
msgstr "Replica dell'oggetto completata (una volta). (%.02f minuti)"
|
617
|
-
|
618
|
-
#, python-format
|
619
|
-
msgid "Object replication complete. (%.02f minutes)"
|
620
|
-
msgstr "Replica dell'oggetto completata. (%.02f minuti)"
|
621
|
-
|
622
|
-
#, python-format
|
623
|
-
msgid "Object servers returned %s mismatched etags"
|
624
|
-
msgstr "I server dell'oggetto hanno restituito %s etag senza corrispondenza"
|
625
|
-
|
626
|
-
#, python-format
|
627
|
-
msgid "Object update sweep completed: %.02fs"
|
628
|
-
msgstr "Pulizia aggiornamento oggetto completata: %.02fs"
|
629
|
-
|
630
|
-
msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
|
631
|
-
msgstr "Parametri, query e frammenti non consentiti in X-Container-Sync-To"
|
632
|
-
|
633
|
-
#, python-format
|
634
|
-
msgid "Partition times: max %(max).4fs, min %(min).4fs, med %(med).4fs"
|
635
|
-
msgstr "Tempi partizione: max %(max).4fs, min %(min).4fs, med %(med).4fs"
|
636
|
-
|
637
|
-
msgid "Path required in X-Container-Sync-To"
|
638
|
-
msgstr "Percorso richiesto in X-Container-Sync-To"
|
639
|
-
|
640
|
-
#, python-format
|
641
|
-
msgid "Problem cleaning up %s"
|
642
|
-
msgstr "Problema durante la ripulitura di %s"
|
643
|
-
|
644
|
-
#, python-format
|
645
|
-
msgid "Profiling Error: %s"
|
646
|
-
msgstr "Errore di creazione dei profili: %s"
|
647
|
-
|
648
|
-
#, python-format
|
649
|
-
msgid "Quarantined %(hsh_path)s to %(quar_path)s because it is not a directory"
|
650
|
-
msgstr ""
|
651
|
-
"%(hsh_path)s inserito in quarantena in %(quar_path)s perché non è una "
|
652
|
-
"directory"
|
653
|
-
|
654
|
-
#, python-format
|
655
|
-
msgid ""
|
656
|
-
"Quarantined %(object_path)s to %(quar_path)s because it is not a directory"
|
657
|
-
msgstr ""
|
658
|
-
"%(object_path)s inserito in quarantena in %(quar_path)s perché non è una "
|
659
|
-
"directory"
|
660
|
-
|
661
|
-
#, python-format
|
662
|
-
msgid "Quarantining DB %s"
|
663
|
-
msgstr "Inserimento in quarantena del DB %s"
|
664
|
-
|
665
|
-
#, python-format
|
666
|
-
msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
|
667
|
-
msgstr ""
|
668
|
-
"Log di sospensione Ratelimit: %(sleep)s per %(account)s/%(container)s/"
|
669
|
-
"%(object)s"
|
670
|
-
|
671
|
-
#, python-format
|
672
|
-
msgid "Removed %(remove)d dbs"
|
673
|
-
msgstr "Rimossi %(remove)d dbs"
|
674
|
-
|
675
|
-
#, python-format
|
676
|
-
msgid "Removing %s objects"
|
677
|
-
msgstr "Rimozione di oggetti %s"
|
678
|
-
|
679
|
-
#, python-format
|
680
|
-
msgid "Removing partition: %s"
|
681
|
-
msgstr "Rimozione della partizione: %s"
|
682
|
-
|
683
|
-
#, python-format
|
684
|
-
msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
|
685
|
-
msgstr "Rimozione del file pid %(pid_file)s con pid non valido %(pid)d"
|
686
|
-
|
687
|
-
#, python-format
|
688
|
-
msgid "Removing pid file %s with invalid pid"
|
689
|
-
msgstr "Rimozione del file pid %s con pid non valido"
|
690
|
-
|
691
|
-
#, python-format
|
692
|
-
msgid "Removing stale pid file %s"
|
693
|
-
msgstr "Rimozione del file pid %s obsoleto in corso"
|
694
|
-
|
695
|
-
msgid "Replication run OVER"
|
696
|
-
msgstr "Esecuzione della replica TERMINATA"
|
697
|
-
|
698
|
-
#, python-format
|
699
|
-
msgid "Returning 497 because of blacklisting: %s"
|
700
|
-
msgstr "Viene restituito il codice 497 a causa della blacklist: %s"
|
701
|
-
|
702
|
-
#, python-format
|
703
|
-
msgid ""
|
704
|
-
"Returning 498 for %(meth)s to %(acc)s/%(cont)s/%(obj)s . Ratelimit (Max "
|
705
|
-
"Sleep) %(e)s"
|
706
|
-
msgstr ""
|
707
|
-
"Viene restituito 498 per %(meth)s a %(acc)s/%(cont)s/%(obj)s . Ratelimit "
|
708
|
-
"(numero massimo sospensioni) %(e)s"
|
709
|
-
|
710
|
-
msgid "Ring change detected. Aborting current reconstruction pass."
|
711
|
-
msgstr ""
|
712
|
-
"Modifica ring rilevata. Interruzione della trasmissione della ricostruzione "
|
713
|
-
"corrente."
|
714
|
-
|
715
|
-
msgid "Ring change detected. Aborting current replication pass."
|
716
|
-
msgstr ""
|
717
|
-
"Modifica ring rilevata. Interruzione della trasmissione della replica "
|
718
|
-
"corrente."
|
719
|
-
|
720
|
-
#, python-format
|
721
|
-
msgid "Running %s once"
|
722
|
-
msgstr "Esecuzione di %s una volta"
|
723
|
-
|
724
|
-
msgid "Running object reconstructor in script mode."
|
725
|
-
msgstr ""
|
726
|
-
"Esecuzione del programma di ricostruzione dell'oggetto in modalità script."
|
727
|
-
|
728
|
-
msgid "Running object replicator in script mode."
|
729
|
-
msgstr "Esecuzione del programma di replica dell'oggetto in modalità script."
|
730
|
-
|
731
|
-
#, python-format
|
732
|
-
msgid ""
|
733
|
-
"Since %(time)s: %(sync)s synced [%(delete)s deletes, %(put)s puts], %(skip)s "
|
734
|
-
"skipped, %(fail)s failed"
|
735
|
-
msgstr ""
|
736
|
-
"A partire da %(time)s: %(sync)s sincronizzati [%(delete)s eliminazioni, "
|
737
|
-
"%(put)s inserimenti], %(skip)s ignorati, %(fail)s non riusciti"
|
738
|
-
|
739
|
-
#, python-format
|
740
|
-
msgid ""
|
741
|
-
"Since %(time)s: Account audits: %(passed)s passed audit,%(failed)s failed "
|
742
|
-
"audit"
|
743
|
-
msgstr ""
|
744
|
-
"A partire da %(time)s: Verifiche account: %(passed)s verifiche superate, "
|
745
|
-
"%(failed)s verifiche non superate"
|
746
|
-
|
747
|
-
#, python-format
|
748
|
-
msgid ""
|
749
|
-
"Since %(time)s: Container audits: %(pass)s passed audit, %(fail)s failed "
|
750
|
-
"audit"
|
751
|
-
msgstr ""
|
752
|
-
"A partire da %(time)s: Verifiche contenitore: %(pass)s verifiche superate, "
|
753
|
-
"%(fail)s verifiche non superate"
|
754
|
-
|
755
|
-
#, python-format
|
756
|
-
msgid "Skipping %s as it is not mounted"
|
757
|
-
msgstr "%s viene ignorato perché non è montato"
|
758
|
-
|
759
|
-
#, python-format
|
760
|
-
msgid "Starting %s"
|
761
|
-
msgstr "Avvio di %s"
|
762
|
-
|
763
|
-
msgid "Starting object reconstruction pass."
|
764
|
-
msgstr "Avvio della trasmissione della ricostruzione dell'oggetto."
|
765
|
-
|
766
|
-
msgid "Starting object reconstructor in daemon mode."
|
767
|
-
msgstr "Avvio del programma di ricostruzione dell'oggetto in modalità daemon."
|
768
|
-
|
769
|
-
msgid "Starting object replication pass."
|
770
|
-
msgstr "Avvio della trasmissione della replica dell'oggetto."
|
771
|
-
|
772
|
-
msgid "Starting object replicator in daemon mode."
|
773
|
-
msgstr "Avvio del programma di replica dell'oggetto in modalità daemon."
|
774
|
-
|
775
|
-
#, python-format
|
776
|
-
msgid "Successful rsync of %(src)s at %(dst)s (%(time).03f)"
|
777
|
-
msgstr "Rsync di %(src)s eseguito correttamente su %(dst)s (%(time).03f)"
|
778
|
-
|
779
|
-
msgid "The file type are forbidden to access!"
|
780
|
-
msgstr "Non è consentito l'accesso a questo tipo di file!"
|
781
|
-
|
782
|
-
#, python-format
|
783
|
-
msgid ""
|
784
|
-
"The total %(key)s for the container (%(total)s) does not match the sum of "
|
785
|
-
"%(key)s across policies (%(sum)s)"
|
786
|
-
msgstr ""
|
787
|
-
"Il numero totale di %(key)s per il contenitore (%(total)s) non corrisponde "
|
788
|
-
"alla somma di %(key)s tra le politiche (%(sum)s)"
|
789
|
-
|
790
|
-
#, python-format
|
791
|
-
msgid "Trying to %(method)s %(path)s"
|
792
|
-
msgstr "Tentativo di %(method)s %(path)s"
|
793
|
-
|
794
|
-
#, python-format
|
795
|
-
msgid "Trying to GET %(full_path)s"
|
796
|
-
msgstr "Tentativo di eseguire GET %(full_path)s"
|
797
|
-
|
798
|
-
msgid "Trying to read during GET"
|
799
|
-
msgstr "Tentativo di lettura durante GET"
|
800
|
-
|
801
|
-
msgid "Trying to send to client"
|
802
|
-
msgstr "Tentativo di invio al client"
|
803
|
-
|
804
|
-
#, python-format
|
805
|
-
msgid "Trying to sync suffixes with %s"
|
806
|
-
msgstr "Tentativo di sincronizzazione dei suffissi con %s"
|
807
|
-
|
808
|
-
#, python-format
|
809
|
-
msgid "Trying to write to %s"
|
810
|
-
msgstr "Tentativo di scrittura in %s"
|
811
|
-
|
812
|
-
msgid "UNCAUGHT EXCEPTION"
|
813
|
-
msgstr "ECCEZIONE NON RILEVATA"
|
814
|
-
|
815
|
-
#, python-format
|
816
|
-
msgid "Unable to locate %s in libc. Leaving as a no-op."
|
817
|
-
msgstr "Impossibile individuare %s in libc. Lasciato come no-op."
|
818
|
-
|
819
|
-
#, python-format
|
820
|
-
msgid "Unable to locate config for %s"
|
821
|
-
msgstr "Impossibile individuare la configurazione per %s"
|
822
|
-
|
823
|
-
msgid ""
|
824
|
-
"Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
|
825
|
-
msgstr ""
|
826
|
-
"Impossibile individuare fallocate, posix_fallocate in libc. Lasciato come "
|
827
|
-
"no-op."
|
828
|
-
|
829
|
-
#, python-format
|
830
|
-
msgid "Unable to read config from %s"
|
831
|
-
msgstr "Impossibile leggere la configurazione da %s"
|
832
|
-
|
833
|
-
#, python-format
|
834
|
-
msgid "Unauth %(sync_from)r => %(sync_to)r"
|
835
|
-
msgstr "%(sync_from)r => %(sync_to)r non autorizzato"
|
836
|
-
|
837
|
-
msgid "Unhandled exception"
|
838
|
-
msgstr "Eccezione non gestita"
|
839
|
-
|
840
|
-
#, python-format
|
841
|
-
msgid "Unknown exception trying to GET: %(account)r %(container)r %(object)r"
|
842
|
-
msgstr ""
|
843
|
-
"Eccezione imprevista nel tentativo di eseguire GET: %(account)r "
|
844
|
-
"%(container)r %(object)r"
|
845
|
-
|
846
|
-
#, python-format
|
847
|
-
msgid "Update report failed for %(container)s %(dbfile)s"
|
848
|
-
msgstr "Report di aggiornamento non riuscito per %(container)s %(dbfile)s"
|
849
|
-
|
850
|
-
#, python-format
|
851
|
-
msgid "Update report sent for %(container)s %(dbfile)s"
|
852
|
-
msgstr "Report di aggiornamento inviato per %(container)s %(dbfile)s"
|
853
|
-
|
854
|
-
msgid ""
|
855
|
-
"WARNING: SSL should only be enabled for testing purposes. Use external SSL "
|
856
|
-
"termination for a production deployment."
|
857
|
-
msgstr ""
|
858
|
-
"AVVERTENZA: SSL deve essere abilitato solo per scopi di test. Utilizzare la "
|
859
|
-
"terminazione SSL esterna per una distribuzione di produzione."
|
860
|
-
|
861
|
-
msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
|
862
|
-
msgstr ""
|
863
|
-
"AVVERTENZA: Impossibile modificare il limite del descrittore del file. "
|
864
|
-
"Eseguire come non-root?"
|
865
|
-
|
866
|
-
msgid "WARNING: Unable to modify max process limit. Running as non-root?"
|
867
|
-
msgstr ""
|
868
|
-
"AVVERTENZA: Impossibile modificare il limite del numero massimo di processi. "
|
869
|
-
"Eseguire come non-root?"
|
870
|
-
|
871
|
-
msgid "WARNING: Unable to modify memory limit. Running as non-root?"
|
872
|
-
msgstr ""
|
873
|
-
"AVVERTENZA: Impossibile modificare il limite di memoria. Eseguire come non-"
|
874
|
-
"root?"
|
875
|
-
|
876
|
-
msgid "Warning: Cannot ratelimit without a memcached client"
|
877
|
-
msgstr "Avvertenza: impossibile eseguire ratelimit senza un client memcached"
|
878
|
-
|
879
|
-
#, python-format
|
880
|
-
msgid "method %s is not allowed."
|
881
|
-
msgstr "il metodo %s non è consentito."
|
882
|
-
|
883
|
-
msgid "no log file found"
|
884
|
-
msgstr "nessun file di log trovato"
|
885
|
-
|
886
|
-
msgid "odfpy not installed."
|
887
|
-
msgstr "odfpy non installato."
|
888
|
-
|
889
|
-
#, python-format
|
890
|
-
msgid "plotting results failed due to %s"
|
891
|
-
msgstr "tracciamento dei risultati non riuscito a causa di %s"
|
892
|
-
|
893
|
-
msgid "python-matplotlib not installed."
|
894
|
-
msgstr "python-matplotlib non installato."
|