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,965 +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
|
-
# Sasuke(Kyohei MORIYAMA) <>, 2015
|
7
|
-
# Andreas Jaeger <jaegerandi@gmail.com>, 2016. #zanata
|
8
|
-
# Shu Muto <shu.mutow@gmail.com>, 2018. #zanata
|
9
|
-
msgid ""
|
10
|
-
msgstr ""
|
11
|
-
"Project-Id-Version: swift VERSION\n"
|
12
|
-
"Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
|
13
|
-
"POT-Creation-Date: 2019-10-03 19:48+0000\n"
|
14
|
-
"MIME-Version: 1.0\n"
|
15
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
16
|
-
"Content-Transfer-Encoding: 8bit\n"
|
17
|
-
"PO-Revision-Date: 2018-02-09 05:39+0000\n"
|
18
|
-
"Last-Translator: Shu Muto <shu.mutow@gmail.com>\n"
|
19
|
-
"Language: ja\n"
|
20
|
-
"Plural-Forms: nplurals=1; plural=0;\n"
|
21
|
-
"Generated-By: Babel 2.0\n"
|
22
|
-
"X-Generator: Zanata 4.3.3\n"
|
23
|
-
"Language-Team: Japanese\n"
|
24
|
-
|
25
|
-
msgid ""
|
26
|
-
"\n"
|
27
|
-
"user quit"
|
28
|
-
msgstr ""
|
29
|
-
"\n"
|
30
|
-
"ユーザー終了"
|
31
|
-
|
32
|
-
#, python-format
|
33
|
-
msgid " - %s"
|
34
|
-
msgstr " - %s"
|
35
|
-
|
36
|
-
#, python-format
|
37
|
-
msgid " - parallel, %s"
|
38
|
-
msgstr " - パラレル、%s"
|
39
|
-
|
40
|
-
#, python-format
|
41
|
-
msgid ""
|
42
|
-
"%(checked)d suffixes checked - %(hashed).2f%% hashed, %(synced).2f%% synced"
|
43
|
-
msgstr ""
|
44
|
-
"%(checked)d サフィックスが検査されました - ハッシュ済み %(hashed).2f%%、同期"
|
45
|
-
"済み %(synced).2f%%"
|
46
|
-
|
47
|
-
#, python-format
|
48
|
-
msgid "%(msg)s %(ip)s:%(port)s/%(device)s"
|
49
|
-
msgstr "%(msg)s %(ip)s:%(port)s/%(device)s"
|
50
|
-
|
51
|
-
#, python-format
|
52
|
-
msgid ""
|
53
|
-
"%(replicated)d/%(total)d (%(percentage).2f%%) partitions replicated in "
|
54
|
-
"%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
|
55
|
-
msgstr ""
|
56
|
-
"%(replicated)d/%(total)d (%(percentage).2f%%) パーティションが%(time).2fs で"
|
57
|
-
"複製されました (%(rate).2f/秒、残り %(remaining)s)"
|
58
|
-
|
59
|
-
#, python-format
|
60
|
-
msgid "%(server)s #%(number)d not running (%(conf)s)"
|
61
|
-
msgstr "%(server)s #%(number)d は稼働していません (%(conf)s)"
|
62
|
-
|
63
|
-
#, python-format
|
64
|
-
msgid "%(server)s (%(pid)s) appears to have stopped"
|
65
|
-
msgstr "%(server)s (%(pid)s) が停止された可能性があります"
|
66
|
-
|
67
|
-
#, python-format
|
68
|
-
msgid "%(server)s running (%(pid)s - %(conf)s)"
|
69
|
-
msgstr "%(server)s 稼働中 (%(pid)s - %(conf)s)"
|
70
|
-
|
71
|
-
#, python-format
|
72
|
-
msgid "%(server)s running (%(pid)s - %(pid_file)s)"
|
73
|
-
msgstr "%(server)s 稼働中 (%(pid)s - %(pid_file)s)"
|
74
|
-
|
75
|
-
#, python-format
|
76
|
-
msgid "%(success)s successes, %(failure)s failures"
|
77
|
-
msgstr "成功 %(success)s、失敗 %(failure)s"
|
78
|
-
|
79
|
-
#, python-format
|
80
|
-
msgid "%(type)s returning 503 for %(statuses)s"
|
81
|
-
msgstr "%(type)s が %(statuses)s について 503 を返しています"
|
82
|
-
|
83
|
-
#, python-format
|
84
|
-
msgid "%(type)s: %(value)s"
|
85
|
-
msgstr "%(type)s: %(value)s"
|
86
|
-
|
87
|
-
#, python-format
|
88
|
-
msgid "%s already started..."
|
89
|
-
msgstr "%s は既に開始されています..."
|
90
|
-
|
91
|
-
#, python-format
|
92
|
-
msgid "%s does not exist"
|
93
|
-
msgstr "%s が存在しません"
|
94
|
-
|
95
|
-
#, python-format
|
96
|
-
msgid "%s is not mounted"
|
97
|
-
msgstr "%s がマウントされていません"
|
98
|
-
|
99
|
-
#, python-format
|
100
|
-
msgid "%s responded as unmounted"
|
101
|
-
msgstr "%s はアンマウントとして応答しました"
|
102
|
-
|
103
|
-
#, python-format
|
104
|
-
msgid "%s: Connection reset by peer"
|
105
|
-
msgstr "%s: 接続がピアによってリセットされました"
|
106
|
-
|
107
|
-
msgid "Account"
|
108
|
-
msgstr "アカウント"
|
109
|
-
|
110
|
-
#, python-format
|
111
|
-
msgid "Account audit \"once\" mode completed: %.02fs"
|
112
|
-
msgstr "アカウント監査 \"once\" モードが完了しました: %.02fs"
|
113
|
-
|
114
|
-
#, python-format
|
115
|
-
msgid "Account audit pass completed: %.02fs"
|
116
|
-
msgstr "アカウント監査の処理が完了しました: %.02fs"
|
117
|
-
|
118
|
-
#, python-format
|
119
|
-
msgid ""
|
120
|
-
"Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
|
121
|
-
msgstr "%(time).5f 秒で %(count)d 個の DB の複製を試行しました (%(rate).5f/s)"
|
122
|
-
|
123
|
-
#, python-format
|
124
|
-
msgid "Audit Failed for %(path)s: %(err)s"
|
125
|
-
msgstr "%(path)s の監査が失敗しました: %(err)s"
|
126
|
-
|
127
|
-
#, python-format
|
128
|
-
msgid "Audit passed for %s"
|
129
|
-
msgstr "%s の監査が合格しました。"
|
130
|
-
|
131
|
-
#, python-format
|
132
|
-
msgid "Bad key for %(name)r: %(err)s"
|
133
|
-
msgstr "%(name)r のキーが不正です: %(err)s"
|
134
|
-
|
135
|
-
#, python-format
|
136
|
-
msgid "Bad rsync return code: %(ret)d <- %(args)s"
|
137
|
-
msgstr "正しくない再同期戻りコード: %(ret)d <- %(args)s"
|
138
|
-
|
139
|
-
msgid "Begin account audit \"once\" mode"
|
140
|
-
msgstr "アカウント監査 \"once\" モードの開始"
|
141
|
-
|
142
|
-
msgid "Begin account audit pass."
|
143
|
-
msgstr "アカウント監査パスを開始します。"
|
144
|
-
|
145
|
-
msgid "Begin container audit \"once\" mode"
|
146
|
-
msgstr "コンテナー監査「once」モードの開始"
|
147
|
-
|
148
|
-
msgid "Begin container audit pass."
|
149
|
-
msgstr "コンテナー監査パスを開始します。"
|
150
|
-
|
151
|
-
msgid "Begin container sync \"once\" mode"
|
152
|
-
msgstr "コンテナー同期「once」モードの開始"
|
153
|
-
|
154
|
-
msgid "Begin container update single threaded sweep"
|
155
|
-
msgstr "コンテナー更新単一スレッド化スイープの開始"
|
156
|
-
|
157
|
-
msgid "Begin container update sweep"
|
158
|
-
msgstr "コンテナー更新スイープの開始"
|
159
|
-
|
160
|
-
msgid "Begin object update single threaded sweep"
|
161
|
-
msgstr "オブジェクト更新単一スレッド化スイープの開始"
|
162
|
-
|
163
|
-
msgid "Begin object update sweep"
|
164
|
-
msgstr "オブジェクト更新スイープの開始"
|
165
|
-
|
166
|
-
msgid "Beginning replication run"
|
167
|
-
msgstr "複製の実行を開始中"
|
168
|
-
|
169
|
-
msgid "Broker error trying to rollback locked connection"
|
170
|
-
msgstr "ロック済み接続のロールバックを試行中のブローカーエラー"
|
171
|
-
|
172
|
-
#, python-format
|
173
|
-
msgid "Can not access the file %s."
|
174
|
-
msgstr "ファイル %s にアクセスできません。"
|
175
|
-
|
176
|
-
#, python-format
|
177
|
-
msgid "Can not load profile data from %s."
|
178
|
-
msgstr "プロファイルデータを %s からロードできません。"
|
179
|
-
|
180
|
-
#, python-format
|
181
|
-
msgid "Client did not read from proxy within %ss"
|
182
|
-
msgstr "クライアントは %s 内のプロキシーからの読み取りを行いませんでした"
|
183
|
-
|
184
|
-
msgid "Client disconnected on read"
|
185
|
-
msgstr "クライアントが読み取り時に切断されました"
|
186
|
-
|
187
|
-
msgid "Client disconnected without sending enough data"
|
188
|
-
msgstr "十分なデータを送信せずにクライアントが切断されました"
|
189
|
-
|
190
|
-
msgid "Client disconnected without sending last chunk"
|
191
|
-
msgstr "最後のチャンクを送信せずにクライアントが切断されました"
|
192
|
-
|
193
|
-
#, python-format
|
194
|
-
msgid ""
|
195
|
-
"Client path %(client)s does not match path stored in object metadata %(meta)s"
|
196
|
-
msgstr ""
|
197
|
-
"クライアントパス %(client)s はオブジェクトメタデータ %(meta)s に保管されたパ"
|
198
|
-
"スに一致しません"
|
199
|
-
|
200
|
-
msgid ""
|
201
|
-
"Configuration option internal_client_conf_path not defined. Using default "
|
202
|
-
"configuration, See internal-client.conf-sample for options"
|
203
|
-
msgstr ""
|
204
|
-
"設定オプション internal_client_conf_path が定義されていません。デフォルト設定"
|
205
|
-
"を使用しています。オプションについては internal-client.conf-sample を参照して"
|
206
|
-
"ください"
|
207
|
-
|
208
|
-
msgid "Connection refused"
|
209
|
-
msgstr "接続が拒否されました"
|
210
|
-
|
211
|
-
msgid "Connection timeout"
|
212
|
-
msgstr "接続がタイムアウトになりました"
|
213
|
-
|
214
|
-
msgid "Container"
|
215
|
-
msgstr "コンテナー"
|
216
|
-
|
217
|
-
#, python-format
|
218
|
-
msgid "Container audit \"once\" mode completed: %.02fs"
|
219
|
-
msgstr "コンテナー監査「once」モードが完了しました: %.02fs"
|
220
|
-
|
221
|
-
#, python-format
|
222
|
-
msgid "Container audit pass completed: %.02fs"
|
223
|
-
msgstr "コンテナー監査の処理が完了しました: %.02fs"
|
224
|
-
|
225
|
-
#, python-format
|
226
|
-
msgid "Container sync \"once\" mode completed: %.02fs"
|
227
|
-
msgstr "コンテナー同期「once」モードが完了しました: %.02fs"
|
228
|
-
|
229
|
-
#, python-format
|
230
|
-
msgid ""
|
231
|
-
"Container update single threaded sweep completed: %(elapsed).02fs, "
|
232
|
-
"%(success)s successes, %(fail)s failures, %(no_change)s with no changes"
|
233
|
-
msgstr ""
|
234
|
-
"コンテナー更新単一スレッド化スイープが完了しました: %(elapsed).02fs、成功 "
|
235
|
-
"%(success)s、失敗 %(fail)s、未変更 %(no_change)s"
|
236
|
-
|
237
|
-
#, python-format
|
238
|
-
msgid "Container update sweep completed: %.02fs"
|
239
|
-
msgstr "コンテナー更新スイープが完了しました: %.02fs"
|
240
|
-
|
241
|
-
#, python-format
|
242
|
-
msgid ""
|
243
|
-
"Container update sweep of %(path)s completed: %(elapsed).02fs, %(success)s "
|
244
|
-
"successes, %(fail)s failures, %(no_change)s with no changes"
|
245
|
-
msgstr ""
|
246
|
-
"%(path)s のコンテナー更新スイープが完了しました: %(elapsed).02fs、成功 "
|
247
|
-
"%(success)s、失敗 %(fail)s、未変更 %(no_change)s"
|
248
|
-
|
249
|
-
#, python-format
|
250
|
-
msgid "Could not load %(conf)r: %(error)s"
|
251
|
-
msgstr "%(conf)r をロードできませんでした: %(error)s"
|
252
|
-
|
253
|
-
#, python-format
|
254
|
-
msgid "Data download error: %s"
|
255
|
-
msgstr "データダウンロードエラー: %s"
|
256
|
-
|
257
|
-
msgid "Did not get a keys dict"
|
258
|
-
msgstr "キーの辞書を取得できませんでした。"
|
259
|
-
|
260
|
-
#, python-format
|
261
|
-
msgid "ERROR %(db_file)s: %(validate_sync_to_err)s"
|
262
|
-
msgstr "エラー %(db_file)s: %(validate_sync_to_err)s"
|
263
|
-
|
264
|
-
#, python-format
|
265
|
-
msgid "ERROR %(status)d %(body)s From %(type)s Server"
|
266
|
-
msgstr "エラー %(status)d: %(type)s サーバーからの %(body)s"
|
267
|
-
|
268
|
-
#, python-format
|
269
|
-
msgid "ERROR %(status)d %(body)s From Object Server re: %(path)s"
|
270
|
-
msgstr "エラー %(status)d: オブジェクトサーバーからの %(body)s、re: %(path)s"
|
271
|
-
|
272
|
-
#, python-format
|
273
|
-
msgid "ERROR %(status)d Expect: 100-continue From Object Server"
|
274
|
-
msgstr "エラー %(status)d: 予期: オブジェクトサーバーからの 100-continue"
|
275
|
-
|
276
|
-
#, python-format
|
277
|
-
msgid ""
|
278
|
-
"ERROR Account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
279
|
-
"later): Response %(status)s %(reason)s"
|
280
|
-
msgstr ""
|
281
|
-
"エラー: アカウント更新が %(ip)s:%(port)s/%(device)s で失敗しました(後で再試行"
|
282
|
-
"されます): 応答 %(status)s %(reason)s"
|
283
|
-
|
284
|
-
#, python-format
|
285
|
-
msgid "ERROR Client read timeout (%ss)"
|
286
|
-
msgstr "エラー: クライアント読み取りがタイムアウトになりました (%ss)"
|
287
|
-
|
288
|
-
#, python-format
|
289
|
-
msgid ""
|
290
|
-
"ERROR Container update failed (saving for async update later): %(status)d "
|
291
|
-
"response from %(ip)s:%(port)s/%(dev)s"
|
292
|
-
msgstr ""
|
293
|
-
"エラー: コンテナー更新に失敗しました (後の非同期更新のために保存中): %(ip)s:"
|
294
|
-
"%(port)s/%(dev)s からの %(status)d 応答"
|
295
|
-
|
296
|
-
#, python-format
|
297
|
-
msgid "ERROR Could not get account info %s"
|
298
|
-
msgstr "ERROR アカウント情報 %s が取得できませんでした"
|
299
|
-
|
300
|
-
#, python-format
|
301
|
-
msgid "ERROR Could not get container info %s"
|
302
|
-
msgstr "エラー: コンテナー情報 %s を取得できませんでした"
|
303
|
-
|
304
|
-
#, python-format
|
305
|
-
msgid "ERROR DiskFile %(data_file)s close failure: %(exc)s : %(stack)s"
|
306
|
-
msgstr ""
|
307
|
-
"エラー: DiskFile %(data_file)s を閉じることができません: %(exc)s : %(stack)s"
|
308
|
-
|
309
|
-
msgid "ERROR Exception causing client disconnect"
|
310
|
-
msgstr "エラー: 例外によりクライアントが切断されています"
|
311
|
-
|
312
|
-
#, python-format
|
313
|
-
msgid "ERROR Exception transferring data to object servers %s"
|
314
|
-
msgstr "エラー: オブジェクトサーバー %s へのデータ転送で例外が発生しました"
|
315
|
-
|
316
|
-
msgid "ERROR Failed to get my own IPs?"
|
317
|
-
msgstr "エラー: 自分の IP の取得に失敗?"
|
318
|
-
|
319
|
-
msgid "ERROR Insufficient Storage"
|
320
|
-
msgstr "エラー: ストレージが不足しています"
|
321
|
-
|
322
|
-
#, python-format
|
323
|
-
msgid "ERROR Object %(obj)s failed audit and was quarantined: %(err)s"
|
324
|
-
msgstr "エラー: オブジェクト %(obj)s は監査に失敗し、検疫されました: %(err)s"
|
325
|
-
|
326
|
-
#, python-format
|
327
|
-
msgid "ERROR Pickle problem, quarantining %s"
|
328
|
-
msgstr "エラー: ピックルの問題、%s を検疫します"
|
329
|
-
|
330
|
-
#, python-format
|
331
|
-
msgid "ERROR Remote drive not mounted %s"
|
332
|
-
msgstr "エラー: リモートドライブに %s がマウントされていません"
|
333
|
-
|
334
|
-
#, python-format
|
335
|
-
msgid "ERROR Syncing %(db_file)s %(row)s"
|
336
|
-
msgstr "%(db_file)s %(row)s の同期エラー"
|
337
|
-
|
338
|
-
#, python-format
|
339
|
-
msgid "ERROR Syncing %s"
|
340
|
-
msgstr "%s の同期エラー"
|
341
|
-
|
342
|
-
#, python-format
|
343
|
-
msgid ""
|
344
|
-
"ERROR There are not enough handoff nodes to reach replica count for "
|
345
|
-
"partition %s"
|
346
|
-
msgstr ""
|
347
|
-
"エラー パーティション %s のレプリカ数に達するための handoff ノードが不足して"
|
348
|
-
"います。"
|
349
|
-
|
350
|
-
#, python-format
|
351
|
-
msgid "ERROR Trying to audit %s"
|
352
|
-
msgstr "%s の監査を試行中にエラーが発生しました"
|
353
|
-
|
354
|
-
msgid "ERROR Unhandled exception in request"
|
355
|
-
msgstr "エラー: 要求で未処理例外が発生しました"
|
356
|
-
|
357
|
-
#, python-format
|
358
|
-
msgid "ERROR __call__ error with %(method)s %(path)s "
|
359
|
-
msgstr "エラー: %(method)s %(path)s での __call__ エラー"
|
360
|
-
|
361
|
-
#, python-format
|
362
|
-
msgid ""
|
363
|
-
"ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
364
|
-
"later)"
|
365
|
-
msgstr ""
|
366
|
-
"エラー: アカウント更新が %(ip)s:%(port)s/%(device)s で失敗しました(後で再試行"
|
367
|
-
"されます)"
|
368
|
-
|
369
|
-
#, python-format
|
370
|
-
msgid ""
|
371
|
-
"ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
372
|
-
"later): "
|
373
|
-
msgstr ""
|
374
|
-
"エラー: アカウント更新が %(ip)s:%(port)s/%(device)s で失敗しました(後で再試行"
|
375
|
-
"されます): "
|
376
|
-
|
377
|
-
#, python-format
|
378
|
-
msgid "ERROR async pending file with unexpected name %s"
|
379
|
-
msgstr "エラー: 予期しない名前 %s を持つファイルを非同期保留中"
|
380
|
-
|
381
|
-
msgid "ERROR auditing"
|
382
|
-
msgstr "監査エラー"
|
383
|
-
|
384
|
-
#, python-format
|
385
|
-
msgid "ERROR auditing: %s"
|
386
|
-
msgstr "監査エラー: %s"
|
387
|
-
|
388
|
-
#, python-format
|
389
|
-
msgid ""
|
390
|
-
"ERROR container update failed with %(ip)s:%(port)s/%(dev)s (saving for async "
|
391
|
-
"update later)"
|
392
|
-
msgstr ""
|
393
|
-
"エラー: コンテナー更新が %(ip)s:%(port)s/%(dev)s で失敗しました (後の非同期更"
|
394
|
-
"新のために保存中)"
|
395
|
-
|
396
|
-
msgid "ERROR get_keys() missing callback"
|
397
|
-
msgstr "エラー get_keys() コールバックがありません"
|
398
|
-
|
399
|
-
#, python-format
|
400
|
-
msgid "ERROR reading HTTP response from %s"
|
401
|
-
msgstr "%s からの HTTP 応答の読み取りエラー"
|
402
|
-
|
403
|
-
#, python-format
|
404
|
-
msgid "ERROR reading db %s"
|
405
|
-
msgstr "DB %s の読み取りエラー"
|
406
|
-
|
407
|
-
#, python-format
|
408
|
-
msgid "ERROR rsync failed with %(code)s: %(args)s"
|
409
|
-
msgstr "エラー: %(code)s との再同期に失敗しました: %(args)s"
|
410
|
-
|
411
|
-
#, python-format
|
412
|
-
msgid "ERROR syncing %(file)s with node %(node)s"
|
413
|
-
msgstr "ノード %(node)s との %(file)s の同期エラー"
|
414
|
-
|
415
|
-
msgid "ERROR trying to replicate"
|
416
|
-
msgstr "複製の試行エラー"
|
417
|
-
|
418
|
-
#, python-format
|
419
|
-
msgid "ERROR while trying to clean up %s"
|
420
|
-
msgstr "%s のクリーンアップを試行中にエラーが発生しました"
|
421
|
-
|
422
|
-
#, python-format
|
423
|
-
msgid "ERROR with %(type)s server %(ip)s:%(port)s/%(device)s re: %(info)s"
|
424
|
-
msgstr ""
|
425
|
-
"%(type)s サーバー %(ip)s:%(port)s/%(device)s でのエラー、返された値: %(info)s"
|
426
|
-
|
427
|
-
#, python-format
|
428
|
-
msgid "ERROR with loading suppressions from %s: "
|
429
|
-
msgstr "%s からの抑止のロードでエラーが発生しました: "
|
430
|
-
|
431
|
-
#, python-format
|
432
|
-
msgid "ERROR with remote server %(ip)s:%(port)s/%(device)s"
|
433
|
-
msgstr "リモートサーバー %(ip)s:%(port)s/%(device)s でのエラー"
|
434
|
-
|
435
|
-
#, python-format
|
436
|
-
msgid "ERROR: Failed to get paths to drive partitions: %s"
|
437
|
-
msgstr "エラー: ドライブパーティションに対するパスの取得に失敗しました: %s"
|
438
|
-
|
439
|
-
#, python-format
|
440
|
-
msgid "ERROR: Unable to access %(path)s: %(error)s"
|
441
|
-
msgstr "エラー: %(path)s にアクセスできません: %(error)s"
|
442
|
-
|
443
|
-
#, python-format
|
444
|
-
msgid "ERROR: Unable to run auditing: %s"
|
445
|
-
msgstr "エラー: 監査を実行できません: %s"
|
446
|
-
|
447
|
-
msgid "Error hashing suffix"
|
448
|
-
msgstr "サフィックスのハッシュエラー"
|
449
|
-
|
450
|
-
#, python-format
|
451
|
-
msgid "Error in %(conf)r with mtime_check_interval: %(error)s"
|
452
|
-
msgstr "mtime_check_interval で %(conf)r にエラーがあります: %(error)s"
|
453
|
-
|
454
|
-
msgid "Error listing devices"
|
455
|
-
msgstr "デバイスのリストエラー"
|
456
|
-
|
457
|
-
#, python-format
|
458
|
-
msgid "Error on render profiling results: %s"
|
459
|
-
msgstr "レンダリングプロファイル結果でのエラー: %s"
|
460
|
-
|
461
|
-
msgid "Error parsing recon cache file"
|
462
|
-
msgstr "再構成キャッシュファイルの構文解析エラー"
|
463
|
-
|
464
|
-
msgid "Error reading recon cache file"
|
465
|
-
msgstr "再構成キャッシュファイルの読み取りエラー"
|
466
|
-
|
467
|
-
msgid "Error reading ringfile"
|
468
|
-
msgstr "リングファイルの読み取りエラー"
|
469
|
-
|
470
|
-
msgid "Error reading swift.conf"
|
471
|
-
msgstr "swift.conf の読み取りエラー"
|
472
|
-
|
473
|
-
msgid "Error retrieving recon data"
|
474
|
-
msgstr "再構成データの取得エラー"
|
475
|
-
|
476
|
-
#, python-format
|
477
|
-
msgid "Error sending UDP message to %(target)r: %(err)s"
|
478
|
-
msgstr "%(target)r への UDP メッセージ送信エラー: %(err)s"
|
479
|
-
|
480
|
-
msgid "Error syncing handoff partition"
|
481
|
-
msgstr "ハンドオフパーティションの同期エラー"
|
482
|
-
|
483
|
-
msgid "Error syncing partition"
|
484
|
-
msgstr "パーティションとの同期エラー"
|
485
|
-
|
486
|
-
#, python-format
|
487
|
-
msgid "Error syncing with node: %s"
|
488
|
-
msgstr "ノードとの同期エラー: %s"
|
489
|
-
|
490
|
-
#, python-format
|
491
|
-
msgid "Error trying to rebuild %(path)s policy#%(policy)d frag#%(frag_index)s"
|
492
|
-
msgstr ""
|
493
|
-
"%(path)s の再構築を試行中にエラーが発生しました。ポリシー #%(policy)d フラグ"
|
494
|
-
"メント #%(frag_index)s"
|
495
|
-
|
496
|
-
msgid "Error: An error occurred"
|
497
|
-
msgstr "エラー: エラーが発生しました"
|
498
|
-
|
499
|
-
msgid "Error: missing config path argument"
|
500
|
-
msgstr "エラー: 構成パス引数がありません"
|
501
|
-
|
502
|
-
#, python-format
|
503
|
-
msgid "Error: unable to locate %s"
|
504
|
-
msgstr "エラー: %s が見つかりません"
|
505
|
-
|
506
|
-
#, python-format
|
507
|
-
msgid "Exception with %(ip)s:%(port)s/%(device)s"
|
508
|
-
msgstr "%(ip)s:%(port)s/%(device)s で例外が発生しました"
|
509
|
-
|
510
|
-
#, python-format
|
511
|
-
msgid "Expect: 100-continue on %s"
|
512
|
-
msgstr "予期: %s での 100-continue"
|
513
|
-
|
514
|
-
#, python-format
|
515
|
-
msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
|
516
|
-
msgstr "%(given_domain)s から %(found_domain)s へ CNAME チェーンをフォロー中"
|
517
|
-
|
518
|
-
msgid "Found configs:"
|
519
|
-
msgstr "構成が見つかりました:"
|
520
|
-
|
521
|
-
msgid ""
|
522
|
-
"Handoffs first mode still has handoffs remaining. Aborting current "
|
523
|
-
"replication pass."
|
524
|
-
msgstr ""
|
525
|
-
"ハンドオフのファーストモードにハンドオフが残っています。現行複製パスを打ち切"
|
526
|
-
"ります。"
|
527
|
-
|
528
|
-
msgid "Host unreachable"
|
529
|
-
msgstr "ホストが到達不能です"
|
530
|
-
|
531
|
-
#, python-format
|
532
|
-
msgid "Invalid X-Container-Sync-To format %r"
|
533
|
-
msgstr "X-Container-Sync-To 形式 %r が無効です"
|
534
|
-
|
535
|
-
#, python-format
|
536
|
-
msgid "Invalid host %r in X-Container-Sync-To"
|
537
|
-
msgstr "無効なホスト %r が X-Container-Sync-To にあります"
|
538
|
-
|
539
|
-
#, python-format
|
540
|
-
msgid "Invalid pending entry %(file)s: %(entry)s"
|
541
|
-
msgstr "無効な保留中項目 %(file)s: %(entry)s"
|
542
|
-
|
543
|
-
#, python-format
|
544
|
-
msgid "Invalid response %(resp)s from %(full_path)s"
|
545
|
-
msgstr "%(full_path)s からの応答 %(resp)s が無効です"
|
546
|
-
|
547
|
-
#, python-format
|
548
|
-
msgid "Invalid response %(resp)s from %(ip)s"
|
549
|
-
msgstr "%(ip)s からの応答 %(resp)s が無効です"
|
550
|
-
|
551
|
-
#, python-format
|
552
|
-
msgid ""
|
553
|
-
"Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
|
554
|
-
"\"https\"."
|
555
|
-
msgstr ""
|
556
|
-
"無効なスキーム %r が X-Container-Sync-To にあります。「//」、「http」、"
|
557
|
-
"「https」のいずれかでなければなりません。"
|
558
|
-
|
559
|
-
msgid "Invalid swift_bytes"
|
560
|
-
msgstr "無効な swift_bytes"
|
561
|
-
|
562
|
-
#, python-format
|
563
|
-
msgid "Killing long-running rsync: %s"
|
564
|
-
msgstr "長期実行の再同期を強制終了中: %s"
|
565
|
-
|
566
|
-
msgid "Lockup detected.. killing live coros."
|
567
|
-
msgstr "ロックが検出されました.. ライブ coros を強制終了中"
|
568
|
-
|
569
|
-
#, python-format
|
570
|
-
msgid "Mapped %(given_domain)s to %(found_domain)s"
|
571
|
-
msgstr "%(given_domain)s が %(found_domain)s にマップされました"
|
572
|
-
|
573
|
-
#, python-format
|
574
|
-
msgid "Missing key for %r"
|
575
|
-
msgstr "%r にキーがありません。"
|
576
|
-
|
577
|
-
#, python-format
|
578
|
-
msgid "No %s running"
|
579
|
-
msgstr "%s が実行されていません"
|
580
|
-
|
581
|
-
#, python-format
|
582
|
-
msgid "No cluster endpoint for %(realm)r %(cluster)r"
|
583
|
-
msgstr "%(realm)r %(cluster)r のエンドポイントクラスターがありません"
|
584
|
-
|
585
|
-
#, python-format
|
586
|
-
msgid "No permission to signal PID %d"
|
587
|
-
msgstr "PID %d にシグナル通知する許可がありません"
|
588
|
-
|
589
|
-
#, python-format
|
590
|
-
msgid "No policy with index %s"
|
591
|
-
msgstr "インデックス %s のポリシーはありません"
|
592
|
-
|
593
|
-
#, python-format
|
594
|
-
msgid "No realm key for %r"
|
595
|
-
msgstr "%r のレルムキーがありません"
|
596
|
-
|
597
|
-
#, python-format
|
598
|
-
msgid "Node error limited %(ip)s:%(port)s (%(device)s)"
|
599
|
-
msgstr "ノードエラー制限 %(ip)s:%(port)s (%(device)s)"
|
600
|
-
|
601
|
-
#, python-format
|
602
|
-
msgid "Not enough object servers ack'ed (got %d)"
|
603
|
-
msgstr "肯定応答を返したオブジェクト・サーバーが不十分です (%d 取得)"
|
604
|
-
|
605
|
-
#, python-format
|
606
|
-
msgid ""
|
607
|
-
"Not found %(sync_from)r => %(sync_to)r - object "
|
608
|
-
"%(obj_name)r"
|
609
|
-
msgstr ""
|
610
|
-
"不検出 %(sync_from)r => %(sync_to)r - オブジェクト "
|
611
|
-
"%(obj_name)r"
|
612
|
-
|
613
|
-
#, python-format
|
614
|
-
msgid "Nothing reconstructed for %s seconds."
|
615
|
-
msgstr "%s 秒間で何も再構成されませんでした。"
|
616
|
-
|
617
|
-
#, python-format
|
618
|
-
msgid "Nothing replicated for %s seconds."
|
619
|
-
msgstr "%s 秒間で何も複製されませんでした。"
|
620
|
-
|
621
|
-
msgid "Object"
|
622
|
-
msgstr "オブジェクト"
|
623
|
-
|
624
|
-
msgid "Object PUT"
|
625
|
-
msgstr "オブジェクト PUT"
|
626
|
-
|
627
|
-
#, python-format
|
628
|
-
msgid "Object PUT returning 202 for 409: %(req_timestamp)s <= %(timestamps)r"
|
629
|
-
msgstr ""
|
630
|
-
"オブジェクト PUT が 409 に対して 202 を返しています: %(req_timestamp)s<= "
|
631
|
-
"%(timestamps)r"
|
632
|
-
|
633
|
-
#, python-format
|
634
|
-
msgid "Object PUT returning 412, %(statuses)r"
|
635
|
-
msgstr "オブジェクト PUT が 412 を返しています。%(statuses)r"
|
636
|
-
|
637
|
-
#, python-format
|
638
|
-
msgid ""
|
639
|
-
"Object audit (%(type)s) \"%(mode)s\" mode completed: %(elapsed).02fs. Total "
|
640
|
-
"quarantined: %(quars)d, Total errors: %(errors)d, Total files/sec: "
|
641
|
-
"%(frate).2f, Total bytes/sec: %(brate).2f, Auditing time: %(audit).2f, Rate: "
|
642
|
-
"%(audit_rate).2f"
|
643
|
-
msgstr ""
|
644
|
-
"オブジェクト監査 (%(type)s) 「%(mode)s」モード完了: %(elapsed).02fs。合計検疫"
|
645
|
-
"済み: %(quars)d、合計エラー: %(errors)d、合計ファイル/秒: %(frate).2f、合計バ"
|
646
|
-
"イト/秒: %(brate).2f、監査時間: %(audit).2f、率: %(audit_rate).2f"
|
647
|
-
|
648
|
-
#, python-format
|
649
|
-
msgid ""
|
650
|
-
"Object audit (%(type)s). Since %(start_time)s: Locally: %(passes)d passed, "
|
651
|
-
"%(quars)d quarantined, %(errors)d errors, files/sec: %(frate).2f, bytes/sec: "
|
652
|
-
"%(brate).2f, Total time: %(total).2f, Auditing time: %(audit).2f, Rate: "
|
653
|
-
"%(audit_rate).2f"
|
654
|
-
msgstr ""
|
655
|
-
"オブジェクト監査 (%(type)s)。%(start_time)s 以降: ローカル: 合格した監査 "
|
656
|
-
"%(passes)d、検疫済み %(quars)d、エラー %(errors)d、ファイル/秒: %(frate).2f、"
|
657
|
-
"バイト/秒: %(brate).2f、合計時間: %(total).2f、監査時間: %(audit).2f、率: "
|
658
|
-
"%(audit_rate).2f"
|
659
|
-
|
660
|
-
#, python-format
|
661
|
-
msgid "Object audit stats: %s"
|
662
|
-
msgstr "オブジェクト監査統計: %s"
|
663
|
-
|
664
|
-
#, python-format
|
665
|
-
msgid "Object reconstruction complete (once). (%.02f minutes)"
|
666
|
-
msgstr "オブジェクト再構成が完了しました (1 回)。(%.02f 分)"
|
667
|
-
|
668
|
-
#, python-format
|
669
|
-
msgid "Object reconstruction complete. (%.02f minutes)"
|
670
|
-
msgstr "オブジェクト再構成が完了しました。(%.02f 分)"
|
671
|
-
|
672
|
-
#, python-format
|
673
|
-
msgid "Object replication complete (once). (%.02f minutes)"
|
674
|
-
msgstr "オブジェクト複製が完了しました (1 回)。(%.02f 分)"
|
675
|
-
|
676
|
-
#, python-format
|
677
|
-
msgid "Object replication complete. (%.02f minutes)"
|
678
|
-
msgstr "オブジェクト複製が完了しました。(%.02f 分)"
|
679
|
-
|
680
|
-
#, python-format
|
681
|
-
msgid "Object servers returned %s mismatched etags"
|
682
|
-
msgstr "オブジェクトサーバーが %s 個の不一致 etag を返しました"
|
683
|
-
|
684
|
-
#, python-format
|
685
|
-
msgid "Object update sweep completed: %.02fs"
|
686
|
-
msgstr "オブジェクト更新スイープが完了しました: %.02fs"
|
687
|
-
|
688
|
-
msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
|
689
|
-
msgstr ""
|
690
|
-
"パラメーター、照会、およびフラグメントは X-Container-Sync-To で許可されていま"
|
691
|
-
"せん"
|
692
|
-
|
693
|
-
#, python-format
|
694
|
-
msgid "Partition times: max %(max).4fs, min %(min).4fs, med %(med).4fs"
|
695
|
-
msgstr "パーティション時間: 最大 %(max).4fs、最小 %(min).4fs、中間 %(med).4fs"
|
696
|
-
|
697
|
-
msgid "Path required in X-Container-Sync-To"
|
698
|
-
msgstr "X-Container-Sync-To にパスが必要です"
|
699
|
-
|
700
|
-
#, python-format
|
701
|
-
msgid "Problem cleaning up %s"
|
702
|
-
msgstr "%s のクリーンアップ中に問題が発生しました"
|
703
|
-
|
704
|
-
#, python-format
|
705
|
-
msgid "Profiling Error: %s"
|
706
|
-
msgstr "プロファイル作成エラー: %s"
|
707
|
-
|
708
|
-
#, python-format
|
709
|
-
msgid "Quarantined %(hsh_path)s to %(quar_path)s because it is not a directory"
|
710
|
-
msgstr ""
|
711
|
-
"ディレクトリーではないため、%(hsh_path)s は %(quar_path)s へ検疫されました"
|
712
|
-
|
713
|
-
#, python-format
|
714
|
-
msgid ""
|
715
|
-
"Quarantined %(object_path)s to %(quar_path)s because it is not a directory"
|
716
|
-
msgstr ""
|
717
|
-
"ディレクトリーではないため、%(object_path)s は %(quar_path)s へ検疫されました"
|
718
|
-
|
719
|
-
#, python-format
|
720
|
-
msgid "Quarantining DB %s"
|
721
|
-
msgstr "DB %s の検疫中"
|
722
|
-
|
723
|
-
#, python-format
|
724
|
-
msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
|
725
|
-
msgstr ""
|
726
|
-
"Ratelimit スリープログ: %(account)s/%(container)s/%(object)s の %(sleep)s"
|
727
|
-
|
728
|
-
#, python-format
|
729
|
-
msgid "Removed %(remove)d dbs"
|
730
|
-
msgstr "%(remove)d 個の DB が削除されました"
|
731
|
-
|
732
|
-
#, python-format
|
733
|
-
msgid "Removing %s objects"
|
734
|
-
msgstr "%s オブジェクトの削除中"
|
735
|
-
|
736
|
-
#, python-format
|
737
|
-
msgid "Removing partition: %s"
|
738
|
-
msgstr "パーティションの削除中: %s"
|
739
|
-
|
740
|
-
#, python-format
|
741
|
-
msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
|
742
|
-
msgstr "正しくない pid %(pid)d の pid ファイル %(pid_file)s を削除中"
|
743
|
-
|
744
|
-
#, python-format
|
745
|
-
msgid "Removing pid file %s with invalid pid"
|
746
|
-
msgstr "無効な pid の pid ファイル %s を削除中"
|
747
|
-
|
748
|
-
#, python-format
|
749
|
-
msgid "Removing stale pid file %s"
|
750
|
-
msgstr "失効した pid ファイル %s を削除中"
|
751
|
-
|
752
|
-
msgid "Replication run OVER"
|
753
|
-
msgstr "複製の実行が終了しました"
|
754
|
-
|
755
|
-
#, python-format
|
756
|
-
msgid "Returning 497 because of blacklisting: %s"
|
757
|
-
msgstr "ブラックリスティングのため 497 を返しています: %s"
|
758
|
-
|
759
|
-
#, python-format
|
760
|
-
msgid ""
|
761
|
-
"Returning 498 for %(meth)s to %(acc)s/%(cont)s/%(obj)s . Ratelimit (Max "
|
762
|
-
"Sleep) %(e)s"
|
763
|
-
msgstr ""
|
764
|
-
"%(acc)s/%(cont)s/%(obj)s に対する %(meth)s に関して 498 を返しています。"
|
765
|
-
"Ratelimit (最大スリープ) %(e)s"
|
766
|
-
|
767
|
-
msgid "Ring change detected. Aborting current reconstruction pass."
|
768
|
-
msgstr "リング変更が検出されました。現行再構成パスを打ち切ります。"
|
769
|
-
|
770
|
-
msgid "Ring change detected. Aborting current replication pass."
|
771
|
-
msgstr "リング変更が検出されました。現行複製パスを打ち切ります。"
|
772
|
-
|
773
|
-
#, python-format
|
774
|
-
msgid "Running %s once"
|
775
|
-
msgstr "%s を 1 回実行中"
|
776
|
-
|
777
|
-
msgid "Running object reconstructor in script mode."
|
778
|
-
msgstr "スクリプトモードでオブジェクトリコンストラクターを実行中です。"
|
779
|
-
|
780
|
-
msgid "Running object replicator in script mode."
|
781
|
-
msgstr "スクリプトモードでオブジェクトレプリケーターを実行中です。"
|
782
|
-
|
783
|
-
#, python-format
|
784
|
-
msgid "Signal %(server)s pid: %(pid)s signal: %(signal)s"
|
785
|
-
msgstr "%(server)s pid: %(pid)s へのシグナル: %(signal)s"
|
786
|
-
|
787
|
-
#, python-format
|
788
|
-
msgid ""
|
789
|
-
"Since %(time)s: %(sync)s synced [%(delete)s deletes, %(put)s puts], %(skip)s "
|
790
|
-
"skipped, %(fail)s failed"
|
791
|
-
msgstr ""
|
792
|
-
"%(time)s 以降: 同期済み %(sync)s [削除 %(delete)s、書き込み %(put)s]、スキッ"
|
793
|
-
"プ %(skip)s、失敗 %(fail)s"
|
794
|
-
|
795
|
-
#, python-format
|
796
|
-
msgid ""
|
797
|
-
"Since %(time)s: Account audits: %(passed)s passed audit,%(failed)s failed "
|
798
|
-
"audit"
|
799
|
-
msgstr ""
|
800
|
-
"%(time)s 以降: アカウント監査: 合格した監査 %(passed)s、不合格の監"
|
801
|
-
"査%(failed)s"
|
802
|
-
|
803
|
-
#, python-format
|
804
|
-
msgid ""
|
805
|
-
"Since %(time)s: Container audits: %(pass)s passed audit, %(fail)s failed "
|
806
|
-
"audit"
|
807
|
-
msgstr ""
|
808
|
-
"%(time)s 以降: コンテナー監査: 合格した監査 %(pass)s、不合格の監査%(fail)s"
|
809
|
-
|
810
|
-
#, python-format
|
811
|
-
msgid "Skipping %(datadir)s because %(err)s"
|
812
|
-
msgstr "%(err)s のため %(datadir)s をスキップします"
|
813
|
-
|
814
|
-
#, python-format
|
815
|
-
msgid "Skipping %s as it is not mounted"
|
816
|
-
msgstr "マウントされていないため、 %s をスキップします"
|
817
|
-
|
818
|
-
#, python-format
|
819
|
-
msgid "Starting %s"
|
820
|
-
msgstr "%s を開始しています"
|
821
|
-
|
822
|
-
msgid "Starting object reconstruction pass."
|
823
|
-
msgstr "オブジェクト再構成パスを開始中です。"
|
824
|
-
|
825
|
-
msgid "Starting object reconstructor in daemon mode."
|
826
|
-
msgstr "オブジェクトリコンストラクターをデーモンモードで開始中です。"
|
827
|
-
|
828
|
-
msgid "Starting object replication pass."
|
829
|
-
msgstr "オブジェクト複製パスを開始中です。"
|
830
|
-
|
831
|
-
msgid "Starting object replicator in daemon mode."
|
832
|
-
msgstr "オブジェクトレプリケーターをデーモンモードで開始中です。"
|
833
|
-
|
834
|
-
#, python-format
|
835
|
-
msgid "Successful rsync of %(src)s at %(dst)s (%(time).03f)"
|
836
|
-
msgstr "%(dst)s での %(src)s の再同期が成功しました (%(time).03f)"
|
837
|
-
|
838
|
-
msgid "The file type are forbidden to access!"
|
839
|
-
msgstr "このファイルタイプにはアクセスが禁止されています"
|
840
|
-
|
841
|
-
#, python-format
|
842
|
-
msgid ""
|
843
|
-
"The total %(key)s for the container (%(total)s) does not match the sum of "
|
844
|
-
"%(key)s across policies (%(sum)s)"
|
845
|
-
msgstr ""
|
846
|
-
"コンテナーの合計 %(key)s (%(total)s) がポリシー全体の合計 %(key)s(%(sum)s) に"
|
847
|
-
"一致しません"
|
848
|
-
|
849
|
-
#, python-format
|
850
|
-
msgid "Trying to %(method)s %(path)s"
|
851
|
-
msgstr "%(method)s %(path)s を試行中"
|
852
|
-
|
853
|
-
#, python-format
|
854
|
-
msgid "Trying to GET %(full_path)s"
|
855
|
-
msgstr "GET %(full_path)s を試行中"
|
856
|
-
|
857
|
-
msgid "Trying to read during GET"
|
858
|
-
msgstr "GET 時に読み取りを試行中"
|
859
|
-
|
860
|
-
msgid "Trying to send to client"
|
861
|
-
msgstr "クライアントへの送信を試行中"
|
862
|
-
|
863
|
-
#, python-format
|
864
|
-
msgid "Trying to sync suffixes with %s"
|
865
|
-
msgstr "%s でサフィックスの同期を試行中"
|
866
|
-
|
867
|
-
#, python-format
|
868
|
-
msgid "Trying to write to %s"
|
869
|
-
msgstr "%s への書き込みを試行中"
|
870
|
-
|
871
|
-
msgid "UNCAUGHT EXCEPTION"
|
872
|
-
msgstr "キャッチされていない例外"
|
873
|
-
|
874
|
-
#, python-format
|
875
|
-
msgid "Unable to find %(section)s config section in %(conf)s"
|
876
|
-
msgstr "%(section)s 構成セクションが %(conf)s に見つかりません"
|
877
|
-
|
878
|
-
#, python-format
|
879
|
-
msgid "Unable to locate %s in libc. Leaving as a no-op."
|
880
|
-
msgstr "%s が libc に見つかりません。no-op として終了します。"
|
881
|
-
|
882
|
-
#, python-format
|
883
|
-
msgid "Unable to locate config for %s"
|
884
|
-
msgstr "%s の設定が見つかりません"
|
885
|
-
|
886
|
-
#, python-format
|
887
|
-
msgid "Unable to locate config number %(number)s for %(server)s"
|
888
|
-
msgstr "%(server)s の設定番号 %(number)s が見つかりません"
|
889
|
-
|
890
|
-
msgid ""
|
891
|
-
"Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
|
892
|
-
msgstr ""
|
893
|
-
"fallocate、posix_fallocate が libc に見つかりません。no-op として終了します。"
|
894
|
-
|
895
|
-
#, python-format
|
896
|
-
msgid "Unable to perform fsync() on directory %(dir)s: %(err)s"
|
897
|
-
msgstr "ディレクトリー %(dir)s で fsync() を実行できません: %(err)s"
|
898
|
-
|
899
|
-
#, python-format
|
900
|
-
msgid "Unable to read config from %s"
|
901
|
-
msgstr "構成を %s から読み取ることができません"
|
902
|
-
|
903
|
-
#, python-format
|
904
|
-
msgid "Unauth %(sync_from)r => %(sync_to)r"
|
905
|
-
msgstr "非認証 %(sync_from)r => %(sync_to)r"
|
906
|
-
|
907
|
-
msgid "Unhandled exception"
|
908
|
-
msgstr "未処理例外"
|
909
|
-
|
910
|
-
#, python-format
|
911
|
-
msgid "Unknown exception trying to GET: %(account)r %(container)r %(object)r"
|
912
|
-
msgstr ""
|
913
|
-
"GET を試行中に不明な例外が発生しました: %(account)r %(container)r %(object)r"
|
914
|
-
|
915
|
-
#, python-format
|
916
|
-
msgid "Update report failed for %(container)s %(dbfile)s"
|
917
|
-
msgstr "%(container)s %(dbfile)s に関する更新レポートが失敗しました"
|
918
|
-
|
919
|
-
#, python-format
|
920
|
-
msgid "Update report sent for %(container)s %(dbfile)s"
|
921
|
-
msgstr "%(container)s %(dbfile)s に関する更新レポートが送信されました"
|
922
|
-
|
923
|
-
msgid ""
|
924
|
-
"WARNING: SSL should only be enabled for testing purposes. Use external SSL "
|
925
|
-
"termination for a production deployment."
|
926
|
-
msgstr ""
|
927
|
-
"警告: SSL を有効にするのはテスト目的のみでなければなりません。製品のデプロイ"
|
928
|
-
"には外部 SSL 終端を使用してください。"
|
929
|
-
|
930
|
-
msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
|
931
|
-
msgstr "警告: ファイル記述子制限を変更できません。非ルートとして実行しますか?"
|
932
|
-
|
933
|
-
msgid "WARNING: Unable to modify max process limit. Running as non-root?"
|
934
|
-
msgstr "警告: 最大処理限界を変更できません。非ルートとして実行しますか?"
|
935
|
-
|
936
|
-
msgid "WARNING: Unable to modify memory limit. Running as non-root?"
|
937
|
-
msgstr "警告: メモリー制限を変更できません。非ルートとして実行しますか?"
|
938
|
-
|
939
|
-
#, python-format
|
940
|
-
msgid "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
|
941
|
-
msgstr "%(kill_wait)s 秒間、%(server)s の停止を待機しました。中止します"
|
942
|
-
|
943
|
-
#, python-format
|
944
|
-
msgid "Waited %(kill_wait)s seconds for %(server)s to die; killing"
|
945
|
-
msgstr "%(kill_wait)s 秒間、%(server)s の停止を待機しました。強制終了します"
|
946
|
-
|
947
|
-
msgid "Warning: Cannot ratelimit without a memcached client"
|
948
|
-
msgstr "警告: memcached クライアントなしで ratelimit を行うことはできません"
|
949
|
-
|
950
|
-
#, python-format
|
951
|
-
msgid "method %s is not allowed."
|
952
|
-
msgstr "メソッド %s は許可されていません。"
|
953
|
-
|
954
|
-
msgid "no log file found"
|
955
|
-
msgstr "ログファイルが見つかりません"
|
956
|
-
|
957
|
-
msgid "odfpy not installed."
|
958
|
-
msgstr "odfpy がインストールされていません。"
|
959
|
-
|
960
|
-
#, python-format
|
961
|
-
msgid "plotting results failed due to %s"
|
962
|
-
msgstr "%s が原因で結果のプロットに失敗しました"
|
963
|
-
|
964
|
-
msgid "python-matplotlib not installed."
|
965
|
-
msgstr "python-matplotlib がインストールされていません。"
|