swift 2.23.3__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.3.data/scripts/swift-account-audit → swift/cli/account_audit.py +23 -13
- swift-2.23.3.data/scripts/swift-config → swift/cli/config.py +2 -2
- swift/cli/container_deleter.py +5 -11
- swift-2.23.3.data/scripts/swift-dispersion-populate → swift/cli/dispersion_populate.py +8 -7
- swift/cli/dispersion_report.py +10 -9
- swift-2.23.3.data/scripts/swift-drive-audit → swift/cli/drive_audit.py +63 -21
- swift/cli/form_signature.py +3 -7
- swift-2.23.3.data/scripts/swift-get-nodes → swift/cli/get_nodes.py +8 -2
- swift/cli/info.py +154 -14
- swift/cli/manage_shard_ranges.py +705 -37
- swift-2.23.3.data/scripts/swift-oldies → swift/cli/oldies.py +25 -14
- swift-2.23.3.data/scripts/swift-orphans → swift/cli/orphans.py +7 -3
- swift/cli/recon.py +196 -67
- swift-2.23.3.data/scripts/swift-recon-cron → swift/cli/recon_cron.py +17 -20
- swift-2.23.3.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 +195 -128
- 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 +390 -145
- 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 -95
- 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 +51 -18
- swift/common/middleware/tempauth.py +76 -58
- swift/common/middleware/tempurl.py +191 -173
- 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.3.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} +2163 -2772
- 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 +553 -535
- swift/container/auditor.py +14 -100
- swift/container/backend.py +490 -231
- swift/container/reconciler.py +126 -37
- swift/container/replicator.py +96 -22
- swift/container/server.py +358 -165
- swift/container/sharder.py +1540 -684
- 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 +207 -122
- swift/obj/ssync_receiver.py +145 -85
- swift/obj/ssync_sender.py +113 -54
- swift/obj/updater.py +652 -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 +433 -92
- swift/proxy/controllers/info.py +3 -2
- swift/proxy/controllers/obj.py +1000 -489
- swift/proxy/server.py +185 -112
- {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/AUTHORS +58 -11
- {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/METADATA +51 -56
- swift-2.35.0.dist-info/RECORD +201 -0
- {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/WHEEL +1 -1
- {swift-2.23.3.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.3.data/scripts/swift-account-auditor +0 -23
- swift-2.23.3.data/scripts/swift-account-info +0 -51
- swift-2.23.3.data/scripts/swift-account-reaper +0 -23
- swift-2.23.3.data/scripts/swift-account-replicator +0 -34
- swift-2.23.3.data/scripts/swift-account-server +0 -23
- swift-2.23.3.data/scripts/swift-container-auditor +0 -23
- swift-2.23.3.data/scripts/swift-container-info +0 -55
- swift-2.23.3.data/scripts/swift-container-reconciler +0 -21
- swift-2.23.3.data/scripts/swift-container-replicator +0 -34
- swift-2.23.3.data/scripts/swift-container-sharder +0 -37
- swift-2.23.3.data/scripts/swift-container-sync +0 -23
- swift-2.23.3.data/scripts/swift-container-updater +0 -23
- swift-2.23.3.data/scripts/swift-dispersion-report +0 -24
- swift-2.23.3.data/scripts/swift-form-signature +0 -20
- swift-2.23.3.data/scripts/swift-init +0 -119
- swift-2.23.3.data/scripts/swift-object-auditor +0 -29
- swift-2.23.3.data/scripts/swift-object-expirer +0 -33
- swift-2.23.3.data/scripts/swift-object-info +0 -60
- swift-2.23.3.data/scripts/swift-object-reconstructor +0 -33
- swift-2.23.3.data/scripts/swift-object-relinker +0 -41
- swift-2.23.3.data/scripts/swift-object-replicator +0 -37
- swift-2.23.3.data/scripts/swift-object-server +0 -27
- swift-2.23.3.data/scripts/swift-object-updater +0 -23
- swift-2.23.3.data/scripts/swift-proxy-server +0 -23
- swift-2.23.3.data/scripts/swift-recon +0 -24
- swift-2.23.3.data/scripts/swift-ring-builder +0 -24
- swift-2.23.3.data/scripts/swift-ring-builder-analyzer +0 -22
- swift-2.23.3.data/scripts/swift-ring-composer +0 -22
- swift-2.23.3.dist-info/RECORD +0 -220
- swift-2.23.3.dist-info/pbr.json +0 -1
- {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/LICENSE +0 -0
- {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/top_level.txt +0 -0
@@ -1,881 +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
|
-
# Andre Campos Bezerra <andrecbezerra@gmail.com>, 2015
|
7
|
-
# Lucas Ribeiro <lucasribeiro1990@gmail.com>, 2014
|
8
|
-
# thiagol <thiago@redhat.com>, 2015
|
9
|
-
# Volmar Oliveira Junior <volmar.oliveira.jr@gmail.com>, 2014
|
10
|
-
# Andreas Jaeger <jaegerandi@gmail.com>, 2016. #zanata
|
11
|
-
msgid ""
|
12
|
-
msgstr ""
|
13
|
-
"Project-Id-Version: swift VERSION\n"
|
14
|
-
"Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
|
15
|
-
"POT-Creation-Date: 2019-10-03 19:48+0000\n"
|
16
|
-
"MIME-Version: 1.0\n"
|
17
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
18
|
-
"Content-Transfer-Encoding: 8bit\n"
|
19
|
-
"PO-Revision-Date: 2016-04-12 06:43+0000\n"
|
20
|
-
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
|
21
|
-
"Language: pt_BR\n"
|
22
|
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
23
|
-
"Generated-By: Babel 2.0\n"
|
24
|
-
"X-Generator: Zanata 4.3.3\n"
|
25
|
-
"Language-Team: Portuguese (Brazil)\n"
|
26
|
-
|
27
|
-
msgid ""
|
28
|
-
"\n"
|
29
|
-
"user quit"
|
30
|
-
msgstr ""
|
31
|
-
"\n"
|
32
|
-
"encerramento do usuário"
|
33
|
-
|
34
|
-
#, python-format
|
35
|
-
msgid " - %s"
|
36
|
-
msgstr " - %s"
|
37
|
-
|
38
|
-
#, python-format
|
39
|
-
msgid " - parallel, %s"
|
40
|
-
msgstr " - paralelo, %s"
|
41
|
-
|
42
|
-
#, python-format
|
43
|
-
msgid ""
|
44
|
-
"%(checked)d suffixes checked - %(hashed).2f%% hashed, %(synced).2f%% synced"
|
45
|
-
msgstr ""
|
46
|
-
"%(checked)d sufixos verificados – %(hashed).2f%% de hash, %(synced).2f%% "
|
47
|
-
"sincronizados"
|
48
|
-
|
49
|
-
#, python-format
|
50
|
-
msgid "%(msg)s %(ip)s:%(port)s/%(device)s"
|
51
|
-
msgstr "%(msg)s %(ip)s:%(port)s/%(device)s"
|
52
|
-
|
53
|
-
#, python-format
|
54
|
-
msgid ""
|
55
|
-
"%(replicated)d/%(total)d (%(percentage).2f%%) partitions replicated in "
|
56
|
-
"%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
|
57
|
-
msgstr ""
|
58
|
-
"%(replicated)d/%(total)d (%(percentage).2f%%) partições replicadas em "
|
59
|
-
"%(time).2fs (%(rate).2f/seg, %(remaining)s restantes)"
|
60
|
-
|
61
|
-
#, python-format
|
62
|
-
msgid "%(success)s successes, %(failure)s failures"
|
63
|
-
msgstr "%(success)s sucessos, %(failure)s falhas"
|
64
|
-
|
65
|
-
#, python-format
|
66
|
-
msgid "%(type)s returning 503 for %(statuses)s"
|
67
|
-
msgstr "%(type)s retornando 503 para %(statuses)s"
|
68
|
-
|
69
|
-
#, python-format
|
70
|
-
msgid "%s already started..."
|
71
|
-
msgstr "%s já iniciado..."
|
72
|
-
|
73
|
-
#, python-format
|
74
|
-
msgid "%s does not exist"
|
75
|
-
msgstr "%s não existe"
|
76
|
-
|
77
|
-
#, python-format
|
78
|
-
msgid "%s is not mounted"
|
79
|
-
msgstr "%s não está montado"
|
80
|
-
|
81
|
-
#, python-format
|
82
|
-
msgid "%s responded as unmounted"
|
83
|
-
msgstr "%s respondeu como não montado"
|
84
|
-
|
85
|
-
#, python-format
|
86
|
-
msgid "%s: Connection reset by peer"
|
87
|
-
msgstr "%s: Reconfiguração da conexão por peer"
|
88
|
-
|
89
|
-
msgid "Account"
|
90
|
-
msgstr "Conta"
|
91
|
-
|
92
|
-
#, python-format
|
93
|
-
msgid "Account audit \"once\" mode completed: %.02fs"
|
94
|
-
msgstr "Auditoria de conta em modo \"único\" finalizado: %.02fs"
|
95
|
-
|
96
|
-
#, python-format
|
97
|
-
msgid "Account audit pass completed: %.02fs"
|
98
|
-
msgstr "Passo de auditoria de conta finalizado: %.02fs"
|
99
|
-
|
100
|
-
#, python-format
|
101
|
-
msgid ""
|
102
|
-
"Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
|
103
|
-
msgstr ""
|
104
|
-
"Tentativa de replicação do %(count)d dbs em%(time).5f segundos (%(rate).5f/s)"
|
105
|
-
|
106
|
-
#, python-format
|
107
|
-
msgid "Bad rsync return code: %(ret)d <- %(args)s"
|
108
|
-
msgstr "Código de retorno de ressincronização inválido: %(ret)d <-%(args)s"
|
109
|
-
|
110
|
-
msgid "Begin account audit \"once\" mode"
|
111
|
-
msgstr "Iniciar auditoria de conta em modo \"único\""
|
112
|
-
|
113
|
-
msgid "Begin account audit pass."
|
114
|
-
msgstr "Iniciando passo de auditoria de conta."
|
115
|
-
|
116
|
-
msgid "Begin container audit \"once\" mode"
|
117
|
-
msgstr "Inicie o modo \"único\" da auditoria do contêiner"
|
118
|
-
|
119
|
-
msgid "Begin container audit pass."
|
120
|
-
msgstr "Inicie a aprovação da auditoria do contêiner."
|
121
|
-
|
122
|
-
msgid "Begin container sync \"once\" mode"
|
123
|
-
msgstr "Inicie o modo \"único\" de sincronização do contêiner"
|
124
|
-
|
125
|
-
msgid "Begin container update single threaded sweep"
|
126
|
-
msgstr "Inicie a varredura de encadeamento único da atualização do contêiner"
|
127
|
-
|
128
|
-
msgid "Begin container update sweep"
|
129
|
-
msgstr "Inicie a varredura de atualização do contêiner"
|
130
|
-
|
131
|
-
msgid "Begin object update single threaded sweep"
|
132
|
-
msgstr "Inicie a varredura de encadeamento único da atualização do objeto"
|
133
|
-
|
134
|
-
msgid "Begin object update sweep"
|
135
|
-
msgstr "Inicie a varredura da atualização do objeto"
|
136
|
-
|
137
|
-
msgid "Beginning replication run"
|
138
|
-
msgstr "Começando execução de replicação"
|
139
|
-
|
140
|
-
msgid "Broker error trying to rollback locked connection"
|
141
|
-
msgstr "Erro do Broker ao tentar retroceder a conexão bloqueada"
|
142
|
-
|
143
|
-
#, python-format
|
144
|
-
msgid "Can not access the file %s."
|
145
|
-
msgstr "Não é possível acessar o arquivo %s."
|
146
|
-
|
147
|
-
#, python-format
|
148
|
-
msgid "Can not load profile data from %s."
|
149
|
-
msgstr "Não é possível carregar dados do perfil a partir de %s."
|
150
|
-
|
151
|
-
#, python-format
|
152
|
-
msgid "Client did not read from proxy within %ss"
|
153
|
-
msgstr "O cliente não leu no proxy dentro de %ss"
|
154
|
-
|
155
|
-
msgid "Client disconnected on read"
|
156
|
-
msgstr "Cliente desconectado durante leitura"
|
157
|
-
|
158
|
-
msgid "Client disconnected without sending enough data"
|
159
|
-
msgstr "Cliente desconecatdo sem ter enviado dados suficientes"
|
160
|
-
|
161
|
-
msgid "Client disconnected without sending last chunk"
|
162
|
-
msgstr "Cliente desconectado sem ter enviado o último chunk"
|
163
|
-
|
164
|
-
#, python-format
|
165
|
-
msgid ""
|
166
|
-
"Client path %(client)s does not match path stored in object metadata %(meta)s"
|
167
|
-
msgstr ""
|
168
|
-
"Caminho do cliente %(client)s não corresponde ao caminho armazenado nos "
|
169
|
-
"metadados do objeto %(meta)s"
|
170
|
-
|
171
|
-
msgid ""
|
172
|
-
"Configuration option internal_client_conf_path not defined. Using default "
|
173
|
-
"configuration, See internal-client.conf-sample for options"
|
174
|
-
msgstr ""
|
175
|
-
"Opção de configuração internal_client_conf_path não definida. Usando a "
|
176
|
-
"configuração padrão. Consulte internal-client.conf-sample para obter opções"
|
177
|
-
|
178
|
-
msgid "Connection refused"
|
179
|
-
msgstr "Conexão recusada"
|
180
|
-
|
181
|
-
msgid "Connection timeout"
|
182
|
-
msgstr "Tempo limite de conexão"
|
183
|
-
|
184
|
-
msgid "Container"
|
185
|
-
msgstr "Contêiner"
|
186
|
-
|
187
|
-
#, python-format
|
188
|
-
msgid "Container audit \"once\" mode completed: %.02fs"
|
189
|
-
msgstr "Modo \"único\" da auditoria do contêiner concluído: %.02fs"
|
190
|
-
|
191
|
-
#, python-format
|
192
|
-
msgid "Container audit pass completed: %.02fs"
|
193
|
-
msgstr "Aprovação da auditoria do contêiner concluída: %.02fs"
|
194
|
-
|
195
|
-
#, python-format
|
196
|
-
msgid "Container sync \"once\" mode completed: %.02fs"
|
197
|
-
msgstr "Modo \"único\" de sincronização do contêiner concluído: %.02fs"
|
198
|
-
|
199
|
-
#, python-format
|
200
|
-
msgid ""
|
201
|
-
"Container update single threaded sweep completed: %(elapsed).02fs, "
|
202
|
-
"%(success)s successes, %(fail)s failures, %(no_change)s with no changes"
|
203
|
-
msgstr ""
|
204
|
-
"Varredura de encadeamento único da atualização do contêiner concluída: "
|
205
|
-
"%(elapsed).02fs, %(success)s com êxito, %(fail)s com falha, %(no_change)s "
|
206
|
-
"sem alterações"
|
207
|
-
|
208
|
-
#, python-format
|
209
|
-
msgid "Container update sweep completed: %.02fs"
|
210
|
-
msgstr "Varredura da atualização do contêiner concluída: %.02fs"
|
211
|
-
|
212
|
-
#, python-format
|
213
|
-
msgid ""
|
214
|
-
"Container update sweep of %(path)s completed: %(elapsed).02fs, %(success)s "
|
215
|
-
"successes, %(fail)s failures, %(no_change)s with no changes"
|
216
|
-
msgstr ""
|
217
|
-
"Varredura da atualização do contêiner de %(path)s concluída: "
|
218
|
-
"%(elapsed).02fs, %(success)s com êxito, %(fail)s com falha, %(no_change)s "
|
219
|
-
"sem alterações"
|
220
|
-
|
221
|
-
#, python-format
|
222
|
-
msgid "Data download error: %s"
|
223
|
-
msgstr "Erro ao fazer download de dados: %s"
|
224
|
-
|
225
|
-
#, python-format
|
226
|
-
msgid "ERROR %(db_file)s: %(validate_sync_to_err)s"
|
227
|
-
msgstr "ERRO %(db_file)s: %(validate_sync_to_err)s"
|
228
|
-
|
229
|
-
#, python-format
|
230
|
-
msgid "ERROR %(status)d %(body)s From %(type)s Server"
|
231
|
-
msgstr "ERRO %(status)d %(body)s Do Servidor %(type)s"
|
232
|
-
|
233
|
-
#, python-format
|
234
|
-
msgid "ERROR %(status)d %(body)s From Object Server re: %(path)s"
|
235
|
-
msgstr "ERRO %(status)d %(body)s No Servidor de Objetos re: %(path)s"
|
236
|
-
|
237
|
-
#, python-format
|
238
|
-
msgid "ERROR %(status)d Expect: 100-continue From Object Server"
|
239
|
-
msgstr "ERRO %(status)d Expectativa: 100-continuar Do Servidor de Objeto"
|
240
|
-
|
241
|
-
#, python-format
|
242
|
-
msgid ""
|
243
|
-
"ERROR Account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
244
|
-
"later): Response %(status)s %(reason)s"
|
245
|
-
msgstr ""
|
246
|
-
"ERRO A atualização da conta falhou com %(ip)s:%(port)s/%(device)s (tente "
|
247
|
-
"novamente mais tarde): Resposta %(status)s %(reason)s"
|
248
|
-
|
249
|
-
#, python-format
|
250
|
-
msgid "ERROR Client read timeout (%ss)"
|
251
|
-
msgstr "ERRO Tempo limite de leitura do cliente (%ss)"
|
252
|
-
|
253
|
-
#, python-format
|
254
|
-
msgid ""
|
255
|
-
"ERROR Container update failed (saving for async update later): %(status)d "
|
256
|
-
"response from %(ip)s:%(port)s/%(dev)s"
|
257
|
-
msgstr ""
|
258
|
-
"ERRO A atualização do contêiner falhou (salvando para atualização assíncrona "
|
259
|
-
"posterior): %(status)d resposta do %(ip)s:%(port)s/%(dev)s"
|
260
|
-
|
261
|
-
#, python-format
|
262
|
-
msgid "ERROR Could not get account info %s"
|
263
|
-
msgstr "ERRO Não foi possível recuperar as informações da conta %s"
|
264
|
-
|
265
|
-
#, python-format
|
266
|
-
msgid "ERROR Could not get container info %s"
|
267
|
-
msgstr "ERRO Não foi possível obter informações do contêiner %s"
|
268
|
-
|
269
|
-
#, python-format
|
270
|
-
msgid "ERROR DiskFile %(data_file)s close failure: %(exc)s : %(stack)s"
|
271
|
-
msgstr "ERROR DiskFile %(data_file)s falha ao fechar: %(exc)s : %(stack)s"
|
272
|
-
|
273
|
-
msgid "ERROR Exception causing client disconnect"
|
274
|
-
msgstr "ERRO Exceção causando clientes a desconectar"
|
275
|
-
|
276
|
-
#, python-format
|
277
|
-
msgid "ERROR Exception transferring data to object servers %s"
|
278
|
-
msgstr "ERRO Exceção ao transferir dados para os servidores de objeto %s"
|
279
|
-
|
280
|
-
msgid "ERROR Failed to get my own IPs?"
|
281
|
-
msgstr "ERRO Falha ao pegar meu próprio IPs?"
|
282
|
-
|
283
|
-
msgid "ERROR Insufficient Storage"
|
284
|
-
msgstr "ERRO Capacidade insuficiente"
|
285
|
-
|
286
|
-
#, python-format
|
287
|
-
msgid "ERROR Object %(obj)s failed audit and was quarantined: %(err)s"
|
288
|
-
msgstr "ERRO O objeto %(obj)s falhou ao auditar e ficou em quarentena: %(err)s"
|
289
|
-
|
290
|
-
#, python-format
|
291
|
-
msgid "ERROR Pickle problem, quarantining %s"
|
292
|
-
msgstr "ERRO Problema de seleção, em quarentena %s"
|
293
|
-
|
294
|
-
#, python-format
|
295
|
-
msgid "ERROR Remote drive not mounted %s"
|
296
|
-
msgstr "ERRO Drive remoto não montado %s"
|
297
|
-
|
298
|
-
#, python-format
|
299
|
-
msgid "ERROR Syncing %(db_file)s %(row)s"
|
300
|
-
msgstr "ERRO Sincronizando %(db_file)s %(row)s"
|
301
|
-
|
302
|
-
#, python-format
|
303
|
-
msgid "ERROR Syncing %s"
|
304
|
-
msgstr "ERRO Sincronizando %s"
|
305
|
-
|
306
|
-
#, python-format
|
307
|
-
msgid "ERROR Trying to audit %s"
|
308
|
-
msgstr "ERRO Tentando auditar %s"
|
309
|
-
|
310
|
-
msgid "ERROR Unhandled exception in request"
|
311
|
-
msgstr "ERRO Exceção não manipulada na solicitação"
|
312
|
-
|
313
|
-
#, python-format
|
314
|
-
msgid "ERROR __call__ error with %(method)s %(path)s "
|
315
|
-
msgstr "ERROR __call__ erro com %(method)s %(path)s"
|
316
|
-
|
317
|
-
#, python-format
|
318
|
-
msgid ""
|
319
|
-
"ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
320
|
-
"later)"
|
321
|
-
msgstr ""
|
322
|
-
"ERRO A atualização da conta falhou com %(ip)s:%(port)s/%(device)s (tente "
|
323
|
-
"novamente mais tarde)"
|
324
|
-
|
325
|
-
#, python-format
|
326
|
-
msgid ""
|
327
|
-
"ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
328
|
-
"later): "
|
329
|
-
msgstr ""
|
330
|
-
"ERRO A atualização da conta falhou com %(ip)s:%(port)s/%(device)s (tente "
|
331
|
-
"novamente mais tarde): "
|
332
|
-
|
333
|
-
#, python-format
|
334
|
-
msgid "ERROR async pending file with unexpected name %s"
|
335
|
-
msgstr "ERRO arquivo pendente assíncrono com nome inesperado %s"
|
336
|
-
|
337
|
-
msgid "ERROR auditing"
|
338
|
-
msgstr "Erro auditando"
|
339
|
-
|
340
|
-
#, python-format
|
341
|
-
msgid "ERROR auditing: %s"
|
342
|
-
msgstr "ERRO auditoria: %s"
|
343
|
-
|
344
|
-
#, python-format
|
345
|
-
msgid ""
|
346
|
-
"ERROR container update failed with %(ip)s:%(port)s/%(dev)s (saving for async "
|
347
|
-
"update later)"
|
348
|
-
msgstr ""
|
349
|
-
"ERRO A atualização de contêiner falhou com %(ip)s:%(port)s/%(dev)s (salvando "
|
350
|
-
"para atualização assíncrona posterior)"
|
351
|
-
|
352
|
-
#, python-format
|
353
|
-
msgid "ERROR reading HTTP response from %s"
|
354
|
-
msgstr "ERRO lendo resposta HTTP de %s"
|
355
|
-
|
356
|
-
#, python-format
|
357
|
-
msgid "ERROR reading db %s"
|
358
|
-
msgstr "ERRO lendo db %s"
|
359
|
-
|
360
|
-
#, python-format
|
361
|
-
msgid "ERROR rsync failed with %(code)s: %(args)s"
|
362
|
-
msgstr "ERRO rsync falhou com %(code)s: %(args)s"
|
363
|
-
|
364
|
-
#, python-format
|
365
|
-
msgid "ERROR syncing %(file)s with node %(node)s"
|
366
|
-
msgstr "ERRO sincronizando %(file)s com nodo %(node)s"
|
367
|
-
|
368
|
-
msgid "ERROR trying to replicate"
|
369
|
-
msgstr "ERRO tentando replicar"
|
370
|
-
|
371
|
-
#, python-format
|
372
|
-
msgid "ERROR while trying to clean up %s"
|
373
|
-
msgstr "ERRO enquanto tentaava limpar %s"
|
374
|
-
|
375
|
-
#, python-format
|
376
|
-
msgid "ERROR with %(type)s server %(ip)s:%(port)s/%(device)s re: %(info)s"
|
377
|
-
msgstr "ERRO com %(type)s do servidor %(ip)s:%(port)s/%(device)s re: %(info)s"
|
378
|
-
|
379
|
-
#, python-format
|
380
|
-
msgid "ERROR with loading suppressions from %s: "
|
381
|
-
msgstr "ERRO com as supressões de carregamento a partir de %s: "
|
382
|
-
|
383
|
-
#, python-format
|
384
|
-
msgid "ERROR with remote server %(ip)s:%(port)s/%(device)s"
|
385
|
-
msgstr "ERRO com o servidor remoto %(ip)s:%(port)s/%(device)s"
|
386
|
-
|
387
|
-
#, python-format
|
388
|
-
msgid "ERROR: Failed to get paths to drive partitions: %s"
|
389
|
-
msgstr "ERRO: Falha ao obter caminhos para partições de unidade: %s"
|
390
|
-
|
391
|
-
#, python-format
|
392
|
-
msgid "ERROR: Unable to access %(path)s: %(error)s"
|
393
|
-
msgstr "ERRO: Não é possível acessar %(path)s: %(error)s"
|
394
|
-
|
395
|
-
#, python-format
|
396
|
-
msgid "ERROR: Unable to run auditing: %s"
|
397
|
-
msgstr "ERRO: Não é possível executar a auditoria: %s"
|
398
|
-
|
399
|
-
msgid "Error hashing suffix"
|
400
|
-
msgstr "Erro ao efetuar hash do sufixo"
|
401
|
-
|
402
|
-
msgid "Error listing devices"
|
403
|
-
msgstr "Erro ao listar dispositivos"
|
404
|
-
|
405
|
-
#, python-format
|
406
|
-
msgid "Error on render profiling results: %s"
|
407
|
-
msgstr "Erro na renderização de resultados de criação de perfil: %s"
|
408
|
-
|
409
|
-
msgid "Error parsing recon cache file"
|
410
|
-
msgstr "Erro ao analisar o arquivo de cache de reconhecimento"
|
411
|
-
|
412
|
-
msgid "Error reading recon cache file"
|
413
|
-
msgstr "Erro ao ler o arquivo de cache de reconhecimento"
|
414
|
-
|
415
|
-
msgid "Error reading ringfile"
|
416
|
-
msgstr "Erro na leitura do ringfile"
|
417
|
-
|
418
|
-
msgid "Error reading swift.conf"
|
419
|
-
msgstr "Erro ao ler swift.conf"
|
420
|
-
|
421
|
-
msgid "Error retrieving recon data"
|
422
|
-
msgstr "Erro ao recuperar dados de reconhecimento"
|
423
|
-
|
424
|
-
msgid "Error syncing handoff partition"
|
425
|
-
msgstr "Erro ao sincronizar a partição de handoff"
|
426
|
-
|
427
|
-
msgid "Error syncing partition"
|
428
|
-
msgstr "Erro ao sincronizar partição"
|
429
|
-
|
430
|
-
#, python-format
|
431
|
-
msgid "Error syncing with node: %s"
|
432
|
-
msgstr "Erro ao sincronizar com o nó: %s"
|
433
|
-
|
434
|
-
#, python-format
|
435
|
-
msgid "Error trying to rebuild %(path)s policy#%(policy)d frag#%(frag_index)s"
|
436
|
-
msgstr ""
|
437
|
-
"Erro ao tentar reconstruir %(path)s policy#%(policy)d frag#%(frag_index)s"
|
438
|
-
|
439
|
-
msgid "Error: An error occurred"
|
440
|
-
msgstr "Erro: Ocorreu um erro"
|
441
|
-
|
442
|
-
msgid "Error: missing config path argument"
|
443
|
-
msgstr "Erro: argumento do caminho de configuração ausente"
|
444
|
-
|
445
|
-
#, python-format
|
446
|
-
msgid "Error: unable to locate %s"
|
447
|
-
msgstr "Erro: não é possível localizar %s"
|
448
|
-
|
449
|
-
#, python-format
|
450
|
-
msgid "Exception with %(ip)s:%(port)s/%(device)s"
|
451
|
-
msgstr "Exceção com %(ip)s:%(port)s/%(device)s"
|
452
|
-
|
453
|
-
#, python-format
|
454
|
-
msgid "Expect: 100-continue on %s"
|
455
|
-
msgstr "Expectativa: 100-continuar em %s"
|
456
|
-
|
457
|
-
#, python-format
|
458
|
-
msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
|
459
|
-
msgstr "Cadeia CNAME a seguir para %(given_domain)s para%(found_domain)s"
|
460
|
-
|
461
|
-
msgid "Found configs:"
|
462
|
-
msgstr "Localizados arquivos de configuração:"
|
463
|
-
|
464
|
-
msgid ""
|
465
|
-
"Handoffs first mode still has handoffs remaining. Aborting current "
|
466
|
-
"replication pass."
|
467
|
-
msgstr ""
|
468
|
-
"O primeiro modo de handoffs ainda possui handoffs. Interrompendo a aprovação "
|
469
|
-
"da replicação atual."
|
470
|
-
|
471
|
-
msgid "Host unreachable"
|
472
|
-
msgstr "Destino inalcançável"
|
473
|
-
|
474
|
-
#, python-format
|
475
|
-
msgid "Invalid X-Container-Sync-To format %r"
|
476
|
-
msgstr "Formato X-Container-Sync-To inválido %r"
|
477
|
-
|
478
|
-
#, python-format
|
479
|
-
msgid "Invalid host %r in X-Container-Sync-To"
|
480
|
-
msgstr "Host inválido %r em X-Container-Sync-To"
|
481
|
-
|
482
|
-
#, python-format
|
483
|
-
msgid "Invalid pending entry %(file)s: %(entry)s"
|
484
|
-
msgstr "Entrada pendente inválida %(file)s: %(entry)s"
|
485
|
-
|
486
|
-
#, python-format
|
487
|
-
msgid "Invalid response %(resp)s from %(full_path)s"
|
488
|
-
msgstr "Resposta inválida %(resp)s a partir de %(full_path)s"
|
489
|
-
|
490
|
-
#, python-format
|
491
|
-
msgid "Invalid response %(resp)s from %(ip)s"
|
492
|
-
msgstr "Resposta inválida %(resp)s a partir de %(ip)s"
|
493
|
-
|
494
|
-
#, python-format
|
495
|
-
msgid ""
|
496
|
-
"Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
|
497
|
-
"\"https\"."
|
498
|
-
msgstr ""
|
499
|
-
"Esquema inválido %r em X-Container-Sync-To, deve ser \" // \", \"http\" ou "
|
500
|
-
"\"https\"."
|
501
|
-
|
502
|
-
#, python-format
|
503
|
-
msgid "Killing long-running rsync: %s"
|
504
|
-
msgstr "Eliminando a ressincronização de longa execução: %s"
|
505
|
-
|
506
|
-
msgid "Lockup detected.. killing live coros."
|
507
|
-
msgstr "Bloqueio detectado... eliminando núcleos em tempo real."
|
508
|
-
|
509
|
-
#, python-format
|
510
|
-
msgid "Mapped %(given_domain)s to %(found_domain)s"
|
511
|
-
msgstr "%(given_domain)s mapeado para %(found_domain)s"
|
512
|
-
|
513
|
-
#, python-format
|
514
|
-
msgid "No %s running"
|
515
|
-
msgstr "Nenhum %s rodando"
|
516
|
-
|
517
|
-
#, python-format
|
518
|
-
msgid "No permission to signal PID %d"
|
519
|
-
msgstr "Nenhuma permissão para PID do sinal %d"
|
520
|
-
|
521
|
-
#, python-format
|
522
|
-
msgid "No policy with index %s"
|
523
|
-
msgstr "Nenhuma política com índice %s"
|
524
|
-
|
525
|
-
#, python-format
|
526
|
-
msgid "No realm key for %r"
|
527
|
-
msgstr "Nenhuma chave do domínio para %r"
|
528
|
-
|
529
|
-
#, python-format
|
530
|
-
msgid "Node error limited %(ip)s:%(port)s (%(device)s)"
|
531
|
-
msgstr "Erro de nó limitado %(ip)s:%(port)s (%(device)s)"
|
532
|
-
|
533
|
-
#, python-format
|
534
|
-
msgid "Not enough object servers ack'ed (got %d)"
|
535
|
-
msgstr ""
|
536
|
-
"Insuficiente número de servidores de objeto confirmaram (%d confirmados)"
|
537
|
-
|
538
|
-
#, python-format
|
539
|
-
msgid ""
|
540
|
-
"Not found %(sync_from)r => %(sync_to)r - object "
|
541
|
-
"%(obj_name)r"
|
542
|
-
msgstr ""
|
543
|
-
"Não localizado %(sync_from)r => %(sync_to)r – objeto "
|
544
|
-
"%(obj_name)r"
|
545
|
-
|
546
|
-
#, python-format
|
547
|
-
msgid "Nothing reconstructed for %s seconds."
|
548
|
-
msgstr "Nada foi reconstruído durante %s segundos."
|
549
|
-
|
550
|
-
#, python-format
|
551
|
-
msgid "Nothing replicated for %s seconds."
|
552
|
-
msgstr "Nada foi replicado para %s segundos."
|
553
|
-
|
554
|
-
msgid "Object"
|
555
|
-
msgstr "Objeto"
|
556
|
-
|
557
|
-
msgid "Object PUT"
|
558
|
-
msgstr "PUT de objeto"
|
559
|
-
|
560
|
-
#, python-format
|
561
|
-
msgid "Object PUT returning 202 for 409: %(req_timestamp)s <= %(timestamps)r"
|
562
|
-
msgstr ""
|
563
|
-
"Objeto PUT retornando 202 para a versão 409: %(req_timestamp)s < = "
|
564
|
-
"%(timestamps)r"
|
565
|
-
|
566
|
-
#, python-format
|
567
|
-
msgid "Object PUT returning 412, %(statuses)r"
|
568
|
-
msgstr "PUT de objeto retornando 412, %(statuses)r"
|
569
|
-
|
570
|
-
#, python-format
|
571
|
-
msgid ""
|
572
|
-
"Object audit (%(type)s) \"%(mode)s\" mode completed: %(elapsed).02fs. Total "
|
573
|
-
"quarantined: %(quars)d, Total errors: %(errors)d, Total files/sec: "
|
574
|
-
"%(frate).2f, Total bytes/sec: %(brate).2f, Auditing time: %(audit).2f, Rate: "
|
575
|
-
"%(audit_rate).2f"
|
576
|
-
msgstr ""
|
577
|
-
"Modo \"%(mode)s\" da auditoria de objeto (%(type)s) concluído: "
|
578
|
-
"%(elapsed).02fs. Total em quarentena: %(quars)d, Total de erros: %(errors)d, "
|
579
|
-
"Total de arquivos/seg: %(frate).2f, Total de bytes/seg: %(brate).2f, Tempo "
|
580
|
-
"de auditoria: %(audit).2f, Taxa: %(audit_rate).2f"
|
581
|
-
|
582
|
-
#, python-format
|
583
|
-
msgid ""
|
584
|
-
"Object audit (%(type)s). Since %(start_time)s: Locally: %(passes)d passed, "
|
585
|
-
"%(quars)d quarantined, %(errors)d errors, files/sec: %(frate).2f, bytes/sec: "
|
586
|
-
"%(brate).2f, Total time: %(total).2f, Auditing time: %(audit).2f, Rate: "
|
587
|
-
"%(audit_rate).2f"
|
588
|
-
msgstr ""
|
589
|
-
"Auditoria de objeto (%(type)s). Desde %(start_time)s: Localmente: %(passes)d "
|
590
|
-
"aprovado, %(quars)d em quarentena, %(errors)d erros, arquivos/s: "
|
591
|
-
"%(frate).2f, bytes/seg: %(brate).2f, Tempo total: %(total).2f, Tempo de "
|
592
|
-
"auditoria: %(audit).2f, Taxa: %(audit_rate).2f"
|
593
|
-
|
594
|
-
#, python-format
|
595
|
-
msgid "Object audit stats: %s"
|
596
|
-
msgstr "Estatísticas de auditoria do objeto: %s"
|
597
|
-
|
598
|
-
#, python-format
|
599
|
-
msgid "Object reconstruction complete (once). (%.02f minutes)"
|
600
|
-
msgstr "Reconstrução do objeto concluída (única). (%.02f minutos)"
|
601
|
-
|
602
|
-
#, python-format
|
603
|
-
msgid "Object reconstruction complete. (%.02f minutes)"
|
604
|
-
msgstr "Reconstrução do objeto concluída. (%.02f minutos)"
|
605
|
-
|
606
|
-
#, python-format
|
607
|
-
msgid "Object replication complete (once). (%.02f minutes)"
|
608
|
-
msgstr "Replicação completa do objeto (única). (%.02f minutos)"
|
609
|
-
|
610
|
-
#, python-format
|
611
|
-
msgid "Object replication complete. (%.02f minutes)"
|
612
|
-
msgstr "Replicação completa do objeto. (%.02f minutos)"
|
613
|
-
|
614
|
-
#, python-format
|
615
|
-
msgid "Object servers returned %s mismatched etags"
|
616
|
-
msgstr "Servidores de objeto retornaram %s etags incompatíveis"
|
617
|
-
|
618
|
-
#, python-format
|
619
|
-
msgid "Object update sweep completed: %.02fs"
|
620
|
-
msgstr "Varredura da atualização de objeto concluída: %.02fs"
|
621
|
-
|
622
|
-
msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
|
623
|
-
msgstr ""
|
624
|
-
"Parâmetros, consultas e fragmentos não permitidos em X-Container-Sync-To"
|
625
|
-
|
626
|
-
#, python-format
|
627
|
-
msgid "Partition times: max %(max).4fs, min %(min).4fs, med %(med).4fs"
|
628
|
-
msgstr ""
|
629
|
-
"Tempos de partição: máximo %(max).4fs, mínimo %(min).4fs, médio %(med).4fs"
|
630
|
-
|
631
|
-
msgid "Path required in X-Container-Sync-To"
|
632
|
-
msgstr "Caminho necessário em X-Container-Sync-To"
|
633
|
-
|
634
|
-
#, python-format
|
635
|
-
msgid "Problem cleaning up %s"
|
636
|
-
msgstr "Problema ao limpar %s"
|
637
|
-
|
638
|
-
#, python-format
|
639
|
-
msgid "Profiling Error: %s"
|
640
|
-
msgstr "Erro da Criação de Perfil: %s"
|
641
|
-
|
642
|
-
#, python-format
|
643
|
-
msgid "Quarantined %(hsh_path)s to %(quar_path)s because it is not a directory"
|
644
|
-
msgstr ""
|
645
|
-
"Em quarentena %(hsh_path)s para %(quar_path)s porque ele não é um diretório"
|
646
|
-
|
647
|
-
#, python-format
|
648
|
-
msgid ""
|
649
|
-
"Quarantined %(object_path)s to %(quar_path)s because it is not a directory"
|
650
|
-
msgstr ""
|
651
|
-
"Em quarentena %(object_path)s para %(quar_path)s porque ele não é um "
|
652
|
-
"diretório"
|
653
|
-
|
654
|
-
#, python-format
|
655
|
-
msgid "Quarantining DB %s"
|
656
|
-
msgstr "Quarentenando BD %s"
|
657
|
-
|
658
|
-
#, python-format
|
659
|
-
msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
|
660
|
-
msgstr ""
|
661
|
-
"Log de suspensão do limite de taxa: %(sleep)s para %(account)s/%(container)s/"
|
662
|
-
"%(object)s"
|
663
|
-
|
664
|
-
#, python-format
|
665
|
-
msgid "Removed %(remove)d dbs"
|
666
|
-
msgstr "Dbs %(remove)d removido"
|
667
|
-
|
668
|
-
#, python-format
|
669
|
-
msgid "Removing %s objects"
|
670
|
-
msgstr "Removendo %s objetos"
|
671
|
-
|
672
|
-
#, python-format
|
673
|
-
msgid "Removing partition: %s"
|
674
|
-
msgstr "Removendo partição: %s"
|
675
|
-
|
676
|
-
#, python-format
|
677
|
-
msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
|
678
|
-
msgstr "Removendo arquivo pid %(pid_file)s com pid errado %(pid)d"
|
679
|
-
|
680
|
-
#, python-format
|
681
|
-
msgid "Removing pid file %s with invalid pid"
|
682
|
-
msgstr "Removendo o arquivo pid %s com pid inválido"
|
683
|
-
|
684
|
-
#, python-format
|
685
|
-
msgid "Removing stale pid file %s"
|
686
|
-
msgstr "Removendo o arquivo pid %s antigo"
|
687
|
-
|
688
|
-
msgid "Replication run OVER"
|
689
|
-
msgstr "Execução de replicação TERMINADA"
|
690
|
-
|
691
|
-
#, python-format
|
692
|
-
msgid "Returning 497 because of blacklisting: %s"
|
693
|
-
msgstr "Retornando 497 por causa da listagem negra: %s"
|
694
|
-
|
695
|
-
#, python-format
|
696
|
-
msgid ""
|
697
|
-
"Returning 498 for %(meth)s to %(acc)s/%(cont)s/%(obj)s . Ratelimit (Max "
|
698
|
-
"Sleep) %(e)s"
|
699
|
-
msgstr ""
|
700
|
-
"Retornando 498 para %(meth)s para %(acc)s/%(cont)s/%(obj)s. Limite de taxa "
|
701
|
-
"(Suspensão Máxima) %(e)s"
|
702
|
-
|
703
|
-
msgid "Ring change detected. Aborting current reconstruction pass."
|
704
|
-
msgstr ""
|
705
|
-
"Mudança no anel detectada. Interrompendo a aprovação da recosntrução atual."
|
706
|
-
|
707
|
-
msgid "Ring change detected. Aborting current replication pass."
|
708
|
-
msgstr ""
|
709
|
-
"Alteração do anel detectada. Interrompendo a aprovação da replicação atual."
|
710
|
-
|
711
|
-
#, python-format
|
712
|
-
msgid "Running %s once"
|
713
|
-
msgstr "Executando %s uma vez,"
|
714
|
-
|
715
|
-
msgid "Running object reconstructor in script mode."
|
716
|
-
msgstr "Executando o reconstrutor do objeto no modo de script."
|
717
|
-
|
718
|
-
msgid "Running object replicator in script mode."
|
719
|
-
msgstr "Executando replicador do objeto no modo de script."
|
720
|
-
|
721
|
-
#, python-format
|
722
|
-
msgid ""
|
723
|
-
"Since %(time)s: %(sync)s synced [%(delete)s deletes, %(put)s puts], %(skip)s "
|
724
|
-
"skipped, %(fail)s failed"
|
725
|
-
msgstr ""
|
726
|
-
"Desde %(time)s: %(sync)s sincronizados [%(delete)s exclui, %(put)s coloca], "
|
727
|
-
"%(skip)s ignorados, %(fail)s com falha"
|
728
|
-
|
729
|
-
#, python-format
|
730
|
-
msgid ""
|
731
|
-
"Since %(time)s: Account audits: %(passed)s passed audit,%(failed)s failed "
|
732
|
-
"audit"
|
733
|
-
msgstr ""
|
734
|
-
"Desde %(time)s: Auditoria de contas: %(passed)s auditorias passaram,"
|
735
|
-
"%(failed)s auditorias falharam"
|
736
|
-
|
737
|
-
#, python-format
|
738
|
-
msgid ""
|
739
|
-
"Since %(time)s: Container audits: %(pass)s passed audit, %(fail)s failed "
|
740
|
-
"audit"
|
741
|
-
msgstr ""
|
742
|
-
"Desde %(time)s: As auditorias do contêiner: %(pass)s de auditoria aprovada, "
|
743
|
-
"%(fail)s com falha auditoria"
|
744
|
-
|
745
|
-
#, python-format
|
746
|
-
msgid "Skipping %s as it is not mounted"
|
747
|
-
msgstr "Pulando %s porque não está montado"
|
748
|
-
|
749
|
-
#, python-format
|
750
|
-
msgid "Starting %s"
|
751
|
-
msgstr "Iniciando %s"
|
752
|
-
|
753
|
-
msgid "Starting object reconstruction pass."
|
754
|
-
msgstr "Iniciando a aprovação da reconstrução de objeto."
|
755
|
-
|
756
|
-
msgid "Starting object reconstructor in daemon mode."
|
757
|
-
msgstr "Iniciando o reconstrutor do objeto no modo daemon."
|
758
|
-
|
759
|
-
msgid "Starting object replication pass."
|
760
|
-
msgstr "Iniciando a aprovação da replicação de objeto."
|
761
|
-
|
762
|
-
msgid "Starting object replicator in daemon mode."
|
763
|
-
msgstr "Iniciando o replicador do objeto no modo daemon."
|
764
|
-
|
765
|
-
#, python-format
|
766
|
-
msgid "Successful rsync of %(src)s at %(dst)s (%(time).03f)"
|
767
|
-
msgstr "Ressincronização bem-sucedida de %(src)s em %(dst)s (%(time).03f)"
|
768
|
-
|
769
|
-
msgid "The file type are forbidden to access!"
|
770
|
-
msgstr "O tipo de arquivo é de acesso proibido!"
|
771
|
-
|
772
|
-
#, python-format
|
773
|
-
msgid ""
|
774
|
-
"The total %(key)s for the container (%(total)s) does not match the sum of "
|
775
|
-
"%(key)s across policies (%(sum)s)"
|
776
|
-
msgstr ""
|
777
|
-
"O total %(key)s para o container (%(total)s) não confere com a soma %(key)s "
|
778
|
-
"pelas politicas (%(sum)s)"
|
779
|
-
|
780
|
-
#, python-format
|
781
|
-
msgid "Trying to %(method)s %(path)s"
|
782
|
-
msgstr "Tentando %(method)s %(path)s"
|
783
|
-
|
784
|
-
#, python-format
|
785
|
-
msgid "Trying to GET %(full_path)s"
|
786
|
-
msgstr "Tentando GET %(full_path)s"
|
787
|
-
|
788
|
-
msgid "Trying to read during GET"
|
789
|
-
msgstr "Tentando ler durante GET"
|
790
|
-
|
791
|
-
msgid "Trying to send to client"
|
792
|
-
msgstr "Tentando enviar para o cliente"
|
793
|
-
|
794
|
-
#, python-format
|
795
|
-
msgid "Trying to sync suffixes with %s"
|
796
|
-
msgstr "Tentando sincronizar sufixos com %s"
|
797
|
-
|
798
|
-
#, python-format
|
799
|
-
msgid "Trying to write to %s"
|
800
|
-
msgstr "Tentando escrever para %s"
|
801
|
-
|
802
|
-
msgid "UNCAUGHT EXCEPTION"
|
803
|
-
msgstr "EXCEÇÃO NÃO CAPTURADA"
|
804
|
-
|
805
|
-
#, python-format
|
806
|
-
msgid "Unable to locate %s in libc. Leaving as a no-op."
|
807
|
-
msgstr "Não é possível localizar %s em libc. Saindo como um não operacional."
|
808
|
-
|
809
|
-
#, python-format
|
810
|
-
msgid "Unable to locate config for %s"
|
811
|
-
msgstr "Não é possível localizar configuração para %s"
|
812
|
-
|
813
|
-
msgid ""
|
814
|
-
"Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
|
815
|
-
msgstr ""
|
816
|
-
"Não é possível localizar fallocate, posix_fallocate em libc. Saindo como um "
|
817
|
-
"não operacional."
|
818
|
-
|
819
|
-
#, python-format
|
820
|
-
msgid "Unable to read config from %s"
|
821
|
-
msgstr "Não é possível ler a configuração a partir de %s"
|
822
|
-
|
823
|
-
#, python-format
|
824
|
-
msgid "Unauth %(sync_from)r => %(sync_to)r"
|
825
|
-
msgstr "Não autorizado %(sync_from)r => %(sync_to)r"
|
826
|
-
|
827
|
-
msgid "Unhandled exception"
|
828
|
-
msgstr "Exceção não-tratada"
|
829
|
-
|
830
|
-
#, python-format
|
831
|
-
msgid "Unknown exception trying to GET: %(account)r %(container)r %(object)r"
|
832
|
-
msgstr "Exceção inesperada ao tentar GET: %(account)r %(container)r %(object)r"
|
833
|
-
|
834
|
-
#, python-format
|
835
|
-
msgid "Update report failed for %(container)s %(dbfile)s"
|
836
|
-
msgstr "Atualize o relatório com falha para %(container)s %(dbfile)s"
|
837
|
-
|
838
|
-
#, python-format
|
839
|
-
msgid "Update report sent for %(container)s %(dbfile)s"
|
840
|
-
msgstr "Atualize o relatório enviado para %(container)s %(dbfile)s"
|
841
|
-
|
842
|
-
msgid ""
|
843
|
-
"WARNING: SSL should only be enabled for testing purposes. Use external SSL "
|
844
|
-
"termination for a production deployment."
|
845
|
-
msgstr ""
|
846
|
-
"AVISO: SSL deve ser ativada somente para fins de teste. Use rescisão SSL "
|
847
|
-
"externa para uma implementação de produção."
|
848
|
-
|
849
|
-
msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
|
850
|
-
msgstr ""
|
851
|
-
"AVISO: Não é possível modificar o limite do descritor de arquivo. Executar "
|
852
|
-
"como não raiz?"
|
853
|
-
|
854
|
-
msgid "WARNING: Unable to modify max process limit. Running as non-root?"
|
855
|
-
msgstr ""
|
856
|
-
"AVISO: Não é possível modificar o limite máximo do processo. Executar como "
|
857
|
-
"não raiz?"
|
858
|
-
|
859
|
-
msgid "WARNING: Unable to modify memory limit. Running as non-root?"
|
860
|
-
msgstr ""
|
861
|
-
"AVISO: Não é possível modificar o limite de memória. Executar como não raiz?"
|
862
|
-
|
863
|
-
msgid "Warning: Cannot ratelimit without a memcached client"
|
864
|
-
msgstr "Aviso: Não é possível um limite de taxa sem um cliente memcached"
|
865
|
-
|
866
|
-
#, python-format
|
867
|
-
msgid "method %s is not allowed."
|
868
|
-
msgstr "o método %s não é permitido."
|
869
|
-
|
870
|
-
msgid "no log file found"
|
871
|
-
msgstr "Nenhum arquivo de log encontrado"
|
872
|
-
|
873
|
-
msgid "odfpy not installed."
|
874
|
-
msgstr "odfpy não está instalado."
|
875
|
-
|
876
|
-
#, python-format
|
877
|
-
msgid "plotting results failed due to %s"
|
878
|
-
msgstr "plotar resultados falhou devido a %s"
|
879
|
-
|
880
|
-
msgid "python-matplotlib not installed."
|
881
|
-
msgstr "python-matplotlib não instalado."
|