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.
Files changed (206) hide show
  1. swift/__init__.py +29 -50
  2. swift/account/auditor.py +21 -118
  3. swift/account/backend.py +33 -28
  4. swift/account/reaper.py +37 -28
  5. swift/account/replicator.py +22 -0
  6. swift/account/server.py +60 -26
  7. swift/account/utils.py +28 -11
  8. swift-2.23.3.data/scripts/swift-account-audit → swift/cli/account_audit.py +23 -13
  9. swift-2.23.3.data/scripts/swift-config → swift/cli/config.py +2 -2
  10. swift/cli/container_deleter.py +5 -11
  11. swift-2.23.3.data/scripts/swift-dispersion-populate → swift/cli/dispersion_populate.py +8 -7
  12. swift/cli/dispersion_report.py +10 -9
  13. swift-2.23.3.data/scripts/swift-drive-audit → swift/cli/drive_audit.py +63 -21
  14. swift/cli/form_signature.py +3 -7
  15. swift-2.23.3.data/scripts/swift-get-nodes → swift/cli/get_nodes.py +8 -2
  16. swift/cli/info.py +154 -14
  17. swift/cli/manage_shard_ranges.py +705 -37
  18. swift-2.23.3.data/scripts/swift-oldies → swift/cli/oldies.py +25 -14
  19. swift-2.23.3.data/scripts/swift-orphans → swift/cli/orphans.py +7 -3
  20. swift/cli/recon.py +196 -67
  21. swift-2.23.3.data/scripts/swift-recon-cron → swift/cli/recon_cron.py +17 -20
  22. swift-2.23.3.data/scripts/swift-reconciler-enqueue → swift/cli/reconciler_enqueue.py +2 -3
  23. swift/cli/relinker.py +807 -126
  24. swift/cli/reload.py +135 -0
  25. swift/cli/ringbuilder.py +217 -20
  26. swift/cli/ringcomposer.py +0 -1
  27. swift/cli/shard-info.py +4 -3
  28. swift/common/base_storage_server.py +9 -20
  29. swift/common/bufferedhttp.py +48 -74
  30. swift/common/constraints.py +20 -15
  31. swift/common/container_sync_realms.py +9 -11
  32. swift/common/daemon.py +25 -8
  33. swift/common/db.py +195 -128
  34. swift/common/db_auditor.py +168 -0
  35. swift/common/db_replicator.py +95 -55
  36. swift/common/digest.py +141 -0
  37. swift/common/direct_client.py +144 -33
  38. swift/common/error_limiter.py +93 -0
  39. swift/common/exceptions.py +25 -1
  40. swift/common/header_key_dict.py +2 -9
  41. swift/common/http_protocol.py +373 -0
  42. swift/common/internal_client.py +129 -59
  43. swift/common/linkat.py +3 -4
  44. swift/common/manager.py +284 -67
  45. swift/common/memcached.py +390 -145
  46. swift/common/middleware/__init__.py +4 -0
  47. swift/common/middleware/account_quotas.py +211 -46
  48. swift/common/middleware/acl.py +3 -8
  49. swift/common/middleware/backend_ratelimit.py +230 -0
  50. swift/common/middleware/bulk.py +22 -34
  51. swift/common/middleware/catch_errors.py +1 -3
  52. swift/common/middleware/cname_lookup.py +6 -11
  53. swift/common/middleware/container_quotas.py +1 -1
  54. swift/common/middleware/container_sync.py +39 -17
  55. swift/common/middleware/copy.py +12 -0
  56. swift/common/middleware/crossdomain.py +22 -9
  57. swift/common/middleware/crypto/__init__.py +2 -1
  58. swift/common/middleware/crypto/crypto_utils.py +11 -15
  59. swift/common/middleware/crypto/decrypter.py +28 -11
  60. swift/common/middleware/crypto/encrypter.py +12 -17
  61. swift/common/middleware/crypto/keymaster.py +8 -15
  62. swift/common/middleware/crypto/kms_keymaster.py +2 -1
  63. swift/common/middleware/dlo.py +15 -11
  64. swift/common/middleware/domain_remap.py +5 -4
  65. swift/common/middleware/etag_quoter.py +128 -0
  66. swift/common/middleware/formpost.py +73 -70
  67. swift/common/middleware/gatekeeper.py +8 -1
  68. swift/common/middleware/keystoneauth.py +33 -3
  69. swift/common/middleware/list_endpoints.py +4 -4
  70. swift/common/middleware/listing_formats.py +85 -49
  71. swift/common/middleware/memcache.py +4 -95
  72. swift/common/middleware/name_check.py +3 -2
  73. swift/common/middleware/proxy_logging.py +160 -92
  74. swift/common/middleware/ratelimit.py +17 -10
  75. swift/common/middleware/read_only.py +6 -4
  76. swift/common/middleware/recon.py +59 -22
  77. swift/common/middleware/s3api/acl_handlers.py +25 -3
  78. swift/common/middleware/s3api/acl_utils.py +6 -1
  79. swift/common/middleware/s3api/controllers/__init__.py +6 -0
  80. swift/common/middleware/s3api/controllers/acl.py +3 -2
  81. swift/common/middleware/s3api/controllers/bucket.py +242 -137
  82. swift/common/middleware/s3api/controllers/logging.py +2 -2
  83. swift/common/middleware/s3api/controllers/multi_delete.py +43 -20
  84. swift/common/middleware/s3api/controllers/multi_upload.py +219 -133
  85. swift/common/middleware/s3api/controllers/obj.py +112 -8
  86. swift/common/middleware/s3api/controllers/object_lock.py +44 -0
  87. swift/common/middleware/s3api/controllers/s3_acl.py +2 -2
  88. swift/common/middleware/s3api/controllers/tagging.py +57 -0
  89. swift/common/middleware/s3api/controllers/versioning.py +36 -7
  90. swift/common/middleware/s3api/etree.py +22 -9
  91. swift/common/middleware/s3api/exception.py +0 -4
  92. swift/common/middleware/s3api/s3api.py +113 -41
  93. swift/common/middleware/s3api/s3request.py +384 -218
  94. swift/common/middleware/s3api/s3response.py +126 -23
  95. swift/common/middleware/s3api/s3token.py +16 -17
  96. swift/common/middleware/s3api/schema/delete.rng +1 -1
  97. swift/common/middleware/s3api/subresource.py +7 -10
  98. swift/common/middleware/s3api/utils.py +27 -10
  99. swift/common/middleware/slo.py +665 -358
  100. swift/common/middleware/staticweb.py +64 -37
  101. swift/common/middleware/symlink.py +51 -18
  102. swift/common/middleware/tempauth.py +76 -58
  103. swift/common/middleware/tempurl.py +191 -173
  104. swift/common/middleware/versioned_writes/__init__.py +51 -0
  105. swift/common/middleware/{versioned_writes.py → versioned_writes/legacy.py} +27 -26
  106. swift/common/middleware/versioned_writes/object_versioning.py +1482 -0
  107. swift/common/middleware/x_profile/exceptions.py +1 -4
  108. swift/common/middleware/x_profile/html_viewer.py +18 -19
  109. swift/common/middleware/x_profile/profile_model.py +1 -2
  110. swift/common/middleware/xprofile.py +10 -10
  111. swift-2.23.3.data/scripts/swift-container-server → swift/common/recon.py +13 -8
  112. swift/common/registry.py +147 -0
  113. swift/common/request_helpers.py +324 -57
  114. swift/common/ring/builder.py +67 -25
  115. swift/common/ring/composite_builder.py +1 -1
  116. swift/common/ring/ring.py +177 -51
  117. swift/common/ring/utils.py +1 -1
  118. swift/common/splice.py +10 -6
  119. swift/common/statsd_client.py +205 -0
  120. swift/common/storage_policy.py +49 -44
  121. swift/common/swob.py +86 -102
  122. swift/common/{utils.py → utils/__init__.py} +2163 -2772
  123. swift/common/utils/base.py +131 -0
  124. swift/common/utils/config.py +433 -0
  125. swift/common/utils/ipaddrs.py +256 -0
  126. swift/common/utils/libc.py +345 -0
  127. swift/common/utils/logs.py +859 -0
  128. swift/common/utils/timestamp.py +412 -0
  129. swift/common/wsgi.py +553 -535
  130. swift/container/auditor.py +14 -100
  131. swift/container/backend.py +490 -231
  132. swift/container/reconciler.py +126 -37
  133. swift/container/replicator.py +96 -22
  134. swift/container/server.py +358 -165
  135. swift/container/sharder.py +1540 -684
  136. swift/container/sync.py +94 -88
  137. swift/container/updater.py +53 -32
  138. swift/obj/auditor.py +153 -35
  139. swift/obj/diskfile.py +466 -217
  140. swift/obj/expirer.py +406 -124
  141. swift/obj/mem_diskfile.py +7 -4
  142. swift/obj/mem_server.py +1 -0
  143. swift/obj/reconstructor.py +523 -262
  144. swift/obj/replicator.py +249 -188
  145. swift/obj/server.py +207 -122
  146. swift/obj/ssync_receiver.py +145 -85
  147. swift/obj/ssync_sender.py +113 -54
  148. swift/obj/updater.py +652 -139
  149. swift/obj/watchers/__init__.py +0 -0
  150. swift/obj/watchers/dark_data.py +213 -0
  151. swift/proxy/controllers/account.py +11 -11
  152. swift/proxy/controllers/base.py +848 -604
  153. swift/proxy/controllers/container.py +433 -92
  154. swift/proxy/controllers/info.py +3 -2
  155. swift/proxy/controllers/obj.py +1000 -489
  156. swift/proxy/server.py +185 -112
  157. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/AUTHORS +58 -11
  158. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/METADATA +51 -56
  159. swift-2.35.0.dist-info/RECORD +201 -0
  160. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/WHEEL +1 -1
  161. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/entry_points.txt +43 -0
  162. swift-2.35.0.dist-info/pbr.json +1 -0
  163. swift/locale/de/LC_MESSAGES/swift.po +0 -1216
  164. swift/locale/en_GB/LC_MESSAGES/swift.po +0 -1207
  165. swift/locale/es/LC_MESSAGES/swift.po +0 -1085
  166. swift/locale/fr/LC_MESSAGES/swift.po +0 -909
  167. swift/locale/it/LC_MESSAGES/swift.po +0 -894
  168. swift/locale/ja/LC_MESSAGES/swift.po +0 -965
  169. swift/locale/ko_KR/LC_MESSAGES/swift.po +0 -964
  170. swift/locale/pt_BR/LC_MESSAGES/swift.po +0 -881
  171. swift/locale/ru/LC_MESSAGES/swift.po +0 -891
  172. swift/locale/tr_TR/LC_MESSAGES/swift.po +0 -832
  173. swift/locale/zh_CN/LC_MESSAGES/swift.po +0 -833
  174. swift/locale/zh_TW/LC_MESSAGES/swift.po +0 -838
  175. swift-2.23.3.data/scripts/swift-account-auditor +0 -23
  176. swift-2.23.3.data/scripts/swift-account-info +0 -51
  177. swift-2.23.3.data/scripts/swift-account-reaper +0 -23
  178. swift-2.23.3.data/scripts/swift-account-replicator +0 -34
  179. swift-2.23.3.data/scripts/swift-account-server +0 -23
  180. swift-2.23.3.data/scripts/swift-container-auditor +0 -23
  181. swift-2.23.3.data/scripts/swift-container-info +0 -55
  182. swift-2.23.3.data/scripts/swift-container-reconciler +0 -21
  183. swift-2.23.3.data/scripts/swift-container-replicator +0 -34
  184. swift-2.23.3.data/scripts/swift-container-sharder +0 -37
  185. swift-2.23.3.data/scripts/swift-container-sync +0 -23
  186. swift-2.23.3.data/scripts/swift-container-updater +0 -23
  187. swift-2.23.3.data/scripts/swift-dispersion-report +0 -24
  188. swift-2.23.3.data/scripts/swift-form-signature +0 -20
  189. swift-2.23.3.data/scripts/swift-init +0 -119
  190. swift-2.23.3.data/scripts/swift-object-auditor +0 -29
  191. swift-2.23.3.data/scripts/swift-object-expirer +0 -33
  192. swift-2.23.3.data/scripts/swift-object-info +0 -60
  193. swift-2.23.3.data/scripts/swift-object-reconstructor +0 -33
  194. swift-2.23.3.data/scripts/swift-object-relinker +0 -41
  195. swift-2.23.3.data/scripts/swift-object-replicator +0 -37
  196. swift-2.23.3.data/scripts/swift-object-server +0 -27
  197. swift-2.23.3.data/scripts/swift-object-updater +0 -23
  198. swift-2.23.3.data/scripts/swift-proxy-server +0 -23
  199. swift-2.23.3.data/scripts/swift-recon +0 -24
  200. swift-2.23.3.data/scripts/swift-ring-builder +0 -24
  201. swift-2.23.3.data/scripts/swift-ring-builder-analyzer +0 -22
  202. swift-2.23.3.data/scripts/swift-ring-composer +0 -22
  203. swift-2.23.3.dist-info/RECORD +0 -220
  204. swift-2.23.3.dist-info/pbr.json +0 -1
  205. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/LICENSE +0 -0
  206. {swift-2.23.3.dist-info → swift-2.35.0.dist-info}/top_level.txt +0 -0
@@ -1,964 +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
- # Mario Cho <hephaex@gmail.com>, 2014
7
- # Ying Chun Guo <daisy.ycguo@gmail.com>, 2015
8
- # Andreas Jaeger <jaegerandi@gmail.com>, 2016. #zanata
9
- # SeongSoo Cho <ppiyakk2@printf.kr>, 2019. #zanata
10
- msgid ""
11
- msgstr ""
12
- "Project-Id-Version: swift VERSION\n"
13
- "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
14
- "POT-Creation-Date: 2019-10-05 19:15+0000\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=UTF-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "PO-Revision-Date: 2019-10-14 12:04+0000\n"
19
- "Last-Translator: SeongSoo Cho <ppiyakk2@printf.kr>\n"
20
- "Language: ko_KR\n"
21
- "Plural-Forms: nplurals=1; plural=0;\n"
22
- "Generated-By: Babel 2.0\n"
23
- "X-Generator: Zanata 4.3.3\n"
24
- "Language-Team: Korean (South Korea)\n"
25
-
26
- msgid ""
27
- "\n"
28
- "user quit"
29
- msgstr ""
30
- "\n"
31
- "사용자 종료"
32
-
33
- #, python-format
34
- msgid " - %s"
35
- msgstr " - %s"
36
-
37
- #, python-format
38
- msgid " - parallel, %s"
39
- msgstr " - 병렬, %s"
40
-
41
- #, python-format
42
- msgid ""
43
- "%(checked)d suffixes checked - %(hashed).2f%% hashed, %(synced).2f%% synced"
44
- msgstr ""
45
- "%(checked)d개 접미부를 검사함 - %(hashed).2f%%개 해시됨, %(synced).2f%%개 동"
46
- "기화됨"
47
-
48
- #, python-format
49
- msgid "%(msg)s %(ip)s:%(port)s/%(device)s"
50
- msgstr "%(msg)s %(ip)s:%(port)s/%(device)s"
51
-
52
- #, python-format
53
- msgid ""
54
- "%(replicated)d/%(total)d (%(percentage).2f%%) partitions replicated in "
55
- "%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
56
- msgstr ""
57
- "%(replicated)d/%(total)d(%(percentage).2f%%)개 파티션이 %(time).2f초"
58
- "(%(rate).2f/초, %(remaining)s 남음) 안에 복제됨"
59
-
60
- #, python-format
61
- msgid "%(server)s #%(number)d not running (%(conf)s)"
62
- msgstr "%(server)s #%(number)d가 실행 중이 아님 (%(conf)s)"
63
-
64
- #, python-format
65
- msgid "%(server)s (%(pid)s) appears to have stopped"
66
- msgstr "%(server)s (%(pid)s) 이(가) 중지됨"
67
-
68
- #, python-format
69
- msgid "%(server)s running (%(pid)s - %(conf)s)"
70
- msgstr "%(server)s 실행 중 (%(pid)s - %(conf)s)"
71
-
72
- #, python-format
73
- msgid "%(server)s running (%(pid)s - %(pid_file)s)"
74
- msgstr "%(server)s 실행 중 (%(pid)s - %(pid_file)s)"
75
-
76
- #, python-format
77
- msgid "%(success)s successes, %(failure)s failures"
78
- msgstr "%(success)s개 성공, %(failure)s개 실패"
79
-
80
- #, python-format
81
- msgid "%(type)s returning 503 for %(statuses)s"
82
- msgstr "%(type)s에서 %(statuses)s에 대해 503을 리턴함"
83
-
84
- #, python-format
85
- msgid "%(type)s: %(value)s"
86
- msgstr "%(type)s: %(value)s"
87
-
88
- #, python-format
89
- msgid "%s already started..."
90
- msgstr "%s이(가) 이미 시작되었음..."
91
-
92
- #, python-format
93
- msgid "%s does not exist"
94
- msgstr "%s이(가) 존재하지 않음"
95
-
96
- #, python-format
97
- msgid "%s is not mounted"
98
- msgstr "%s이(가) 마운트되지 않음"
99
-
100
- #, python-format
101
- msgid "%s responded as unmounted"
102
- msgstr "%s이(가) 마운트 해제된 것으로 응답"
103
-
104
- #, python-format
105
- msgid "%s: Connection reset by peer"
106
- msgstr "%s: 피어에서 연결 재설정"
107
-
108
- msgid "Account"
109
- msgstr "계정"
110
-
111
- #, python-format
112
- msgid "Account audit \"once\" mode completed: %.02fs"
113
- msgstr "계정 감사 \"한 번\"모드가 완료: %.02fs"
114
-
115
- #, python-format
116
- msgid "Account audit pass completed: %.02fs"
117
- msgstr "정상으로 판정난 계정: %.02fs"
118
-
119
- #, python-format
120
- msgid ""
121
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
122
- msgstr ""
123
- "%(time).5f초(%(rate).5f/s)에 %(count)d개의 데이터베이스를 복제하려고 함"
124
-
125
- #, python-format
126
- msgid "Audit Failed for %(path)s: %(err)s"
127
- msgstr "%(path)s 검사 실패: %(err)s"
128
-
129
- #, python-format
130
- msgid "Audit passed for %s"
131
- msgstr "%s 검사 완료"
132
-
133
- #, python-format
134
- msgid "Bad rsync return code: %(ret)d <- %(args)s"
135
- msgstr "잘못된 rsync 리턴 코드: %(ret)d <- %(args)s"
136
-
137
- msgid "Begin account audit \"once\" mode"
138
- msgstr "계정 감사 \"한 번\"모드로 시작"
139
-
140
- msgid "Begin account audit pass."
141
- msgstr "계정 검사 시작."
142
-
143
- msgid "Begin container audit \"once\" mode"
144
- msgstr "컨테이너 감사 \"일 회\" 모드 시작"
145
-
146
- msgid "Begin container audit pass."
147
- msgstr "컨테이너 감사 전달이 시작됩니다."
148
-
149
- msgid "Begin container sync \"once\" mode"
150
- msgstr "컨테이너 동기화 \"일 회\" 모드 시작"
151
-
152
- msgid "Begin container update single threaded sweep"
153
- msgstr "컨테이너 업데이트 단일 스레드 스윕 시작"
154
-
155
- msgid "Begin container update sweep"
156
- msgstr "컨테이너 업데이트 스윕 시작"
157
-
158
- msgid "Begin object update single threaded sweep"
159
- msgstr "오브젝트 업데이트 단일 스레드 스윕 시작"
160
-
161
- msgid "Begin object update sweep"
162
- msgstr "오브젝트 업데이트 스윕 시작"
163
-
164
- msgid "Beginning replication run"
165
- msgstr "복제 실행 시작"
166
-
167
- msgid "Broker error trying to rollback locked connection"
168
- msgstr "잠긴 연결을 롤백하는 중 브로커 오류 발생"
169
-
170
- #, python-format
171
- msgid "Can not access the file %s."
172
- msgstr "파일 %s에 액세스할 수 없습니다."
173
-
174
- #, python-format
175
- msgid "Can not load profile data from %s."
176
- msgstr "%s에서 프로파일 데이터를 로드할 수 없습니다."
177
-
178
- #, python-format
179
- msgid "Client did not read from proxy within %ss"
180
- msgstr "클라이언트에서 %ss 내에 프록시를 읽을 수 없었음"
181
-
182
- msgid "Client disconnected on read"
183
- msgstr "읽기 시 클라이언트 연결이 끊어짐"
184
-
185
- msgid "Client disconnected without sending enough data"
186
- msgstr "데이터를 모두 전송하기 전에 클라이언트 연결이 끊어짐"
187
-
188
- msgid "Client disconnected without sending last chunk"
189
- msgstr "마지막 청크를 전송하기 전에 클라이언트 연결이 끊어짐"
190
-
191
- #, python-format
192
- msgid ""
193
- "Client path %(client)s does not match path stored in object metadata %(meta)s"
194
- msgstr ""
195
- "클라이언트 경로 %(client)s이(가) 오브젝트 메타데이터 %(meta)s에 저장된 경로"
196
- "와 일치하지 않음"
197
-
198
- msgid ""
199
- "Configuration option internal_client_conf_path not defined. Using default "
200
- "configuration, See internal-client.conf-sample for options"
201
- msgstr ""
202
- "구성 옵션 internal_client_conf_path가 정의되지 않았습니다. 기본 구성 사용 시 "
203
- "internal-client.conf-sample에서 옵션을 참조하십시오."
204
-
205
- msgid "Connection refused"
206
- msgstr "연결이 거부됨"
207
-
208
- msgid "Connection reset"
209
- msgstr "Connection reset"
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 "컨테이너 감사 \"일 회\" 모드 완료: %.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 "컨테이너 동기화 \"일 회\" 모드 완료: %.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, %(success)s개 성"
235
- "공, %(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, %(success)s개 성공, "
247
- "%(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
- #, python-format
258
- msgid "ERROR %(db_file)s: %(validate_sync_to_err)s"
259
- msgstr "오류 %(db_file)s: %(validate_sync_to_err)s"
260
-
261
- #, python-format
262
- msgid "ERROR %(status)d %(body)s From %(type)s Server"
263
- msgstr "오류 %(status)d %(body)s, %(type)s 서버 발신"
264
-
265
- #, python-format
266
- msgid "ERROR %(status)d %(body)s From Object Server re: %(path)s"
267
- msgstr "오류 %(status)d %(body)s, 오브젝트 서버 발신, 회신: %(path)s"
268
-
269
- #, python-format
270
- msgid "ERROR %(status)d Expect: 100-continue From Object Server"
271
- msgstr "오류 %(status)d. 예상: 100-continue, 오브젝트 서버 발신"
272
-
273
- #, python-format
274
- msgid ""
275
- "ERROR Account update failed with %(ip)s:%(port)s/%(device)s (will retry "
276
- "later): Response %(status)s %(reason)s"
277
- msgstr ""
278
- "오류. %(ip)s:%(port)s/%(device)s(으)로 계정 업데이트 실패(나중에 다시 시도): "
279
- "응답 %(status)s %(reason)s"
280
-
281
- #, python-format
282
- msgid "ERROR Client read timeout (%ss)"
283
- msgstr "ERROR 클라이언트 읽기 시간 초과 (%ss)"
284
-
285
- #, python-format
286
- msgid ""
287
- "ERROR Container update failed (saving for async update later): %(status)d "
288
- "response from %(ip)s:%(port)s/%(dev)s"
289
- msgstr ""
290
- "오류. 컨테이너 업데이트 실패(이후 비동기 업데이트용으로 저장): %(status)d응"
291
- "답. 출처: %(ip)s:%(port)s/%(dev)s"
292
-
293
- #, python-format
294
- msgid "ERROR Could not get account info %s"
295
- msgstr "오류는 %s의 계정 정보를 얻을 수 없습니다"
296
-
297
- #, python-format
298
- msgid "ERROR Could not get container info %s"
299
- msgstr "오류. 컨테이너 정보 %s을(를) 가져올 수 없음"
300
-
301
- #, python-format
302
- msgid "ERROR DiskFile %(data_file)s close failure: %(exc)s : %(stack)s"
303
- msgstr "오류. 디스크 파일 %(data_file)s 닫기 실패: %(exc)s : %(stack)s"
304
-
305
- msgid "ERROR Exception causing client disconnect"
306
- msgstr "오류. 예외로 인해 클라이언트 연결이 끊어짐"
307
-
308
- #, python-format
309
- msgid "ERROR Exception transferring data to object servers %s"
310
- msgstr "ERROR 오브젝트 서버 %s에 데이터를 전송하는 중에 예외 발생"
311
-
312
- msgid "ERROR Failed to get my own IPs?"
313
- msgstr "오류. 자체 IP를 가져오는 중 오류 발생 여부"
314
-
315
- msgid "ERROR Insufficient Storage"
316
- msgstr "오류. 스토리지 공간이 충분하지 않음"
317
-
318
- #, python-format
319
- msgid "ERROR Object %(obj)s failed audit and was quarantined: %(err)s"
320
- msgstr "오류. 오브젝트 %(obj)s의 감사가 실패하여 격리됨: %(err)s"
321
-
322
- #, python-format
323
- msgid "ERROR Pickle problem, quarantining %s"
324
- msgstr "오류. 문제가 발생함, %s 격리 중"
325
-
326
- #, python-format
327
- msgid "ERROR Remote drive not mounted %s"
328
- msgstr "오류. 원격 드라이브가 마운트되지 않음. %s"
329
-
330
- #, python-format
331
- msgid "ERROR Syncing %(db_file)s %(row)s"
332
- msgstr "%(db_file)s %(row)s 동기화 오류"
333
-
334
- #, python-format
335
- msgid "ERROR Syncing %s"
336
- msgstr "%s 동기화 오류"
337
-
338
- #, python-format
339
- msgid ""
340
- "ERROR There are not enough handoff nodes to reach replica count for "
341
- "partition %s"
342
- msgstr ""
343
- "오류 - 파티션 %s 의 복제 수 만큼 충분한 handoff 노드가 존재하지 않습니다"
344
-
345
- #, python-format
346
- msgid "ERROR Trying to audit %s"
347
- msgstr "%s 감사 중 오류 발생"
348
-
349
- msgid "ERROR Unhandled exception in request"
350
- msgstr "오류. 요청에 처리되지 않은 예외가 있음"
351
-
352
- #, python-format
353
- msgid "ERROR __call__ error with %(method)s %(path)s "
354
- msgstr "오류. %(method)s %(path)s에 __call__ 오류 발생"
355
-
356
- #, python-format
357
- msgid ""
358
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
359
- "later)"
360
- msgstr ""
361
- "오류. %(ip)s:%(port)s/%(device)s(으)로 계정 업데이트 실패(나중에 다시 시도)"
362
-
363
- #, python-format
364
- msgid ""
365
- "ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
366
- "later): "
367
- msgstr ""
368
- "오류. %(ip)s:%(port)s/%(device)s(으)로 계정 업데이트 실패(나중에 다시 시도): "
369
-
370
- #, python-format
371
- msgid "ERROR async pending file with unexpected name %s"
372
- msgstr "오류. 비동기 보류 파일에 예상치 못한 이름 %s을(를) 사용함"
373
-
374
- msgid "ERROR auditing"
375
- msgstr "검사 오류"
376
-
377
- #, python-format
378
- msgid "ERROR auditing: %s"
379
- msgstr "감사 오류: %s"
380
-
381
- #, python-format
382
- msgid ""
383
- "ERROR container update failed with %(ip)s:%(port)s/%(dev)s (saving for async "
384
- "update later)"
385
- msgstr ""
386
- "오류. %(ip)s:%(port)s/%(dev)s(으)로 컨테이너 업데이트 실패(이후 비동기 업데이"
387
- "트용으로 저장)"
388
-
389
- #, python-format
390
- msgid "ERROR reading HTTP response from %s"
391
- msgstr "%s에서 HTTP 응답을 읽는 중 오류 발생"
392
-
393
- #, python-format
394
- msgid "ERROR reading db %s"
395
- msgstr "데이터베이스 %s을(를) 읽는 중 오류 발생"
396
-
397
- #, python-format
398
- msgid "ERROR rsync failed with %(code)s: %(args)s"
399
- msgstr "오류. %(code)s의 rsync가 실패함: %(args)s"
400
-
401
- #, python-format
402
- msgid "ERROR syncing %(file)s with node %(node)s"
403
- msgstr "%(file)s을(를) 노드 %(node)s과(와) 동기화하는 중 오류 발생"
404
-
405
- msgid "ERROR trying to replicate"
406
- msgstr "복제 중 오류 발생"
407
-
408
- #, python-format
409
- msgid "ERROR while trying to clean up %s"
410
- msgstr "%s 정리 중 오류 발생"
411
-
412
- #, python-format
413
- msgid "ERROR with %(type)s server %(ip)s:%(port)s/%(device)s re: %(info)s"
414
- msgstr "%(type)s 서버 %(ip)s:%(port)s/%(device)s 오류, 회신: %(info)s"
415
-
416
- #, python-format
417
- msgid "ERROR with loading suppressions from %s: "
418
- msgstr "%s에서 억제를 로드하는 중 오류 발생: "
419
-
420
- #, python-format
421
- msgid "ERROR with remote server %(ip)s:%(port)s/%(device)s"
422
- msgstr "원격 서버 %(ip)s:%(port)s/%(device)s에 오류 발생"
423
-
424
- #, python-format
425
- msgid "ERROR: Failed to get paths to drive partitions: %s"
426
- msgstr "오류: 드라이브 파티션에 대한 경로를 가져오지 못함: %s"
427
-
428
- #, python-format
429
- msgid "ERROR: Unable to access %(path)s: %(error)s"
430
- msgstr "오류: %(path)s에 액세스할 수 없음: %(error)s"
431
-
432
- #, python-format
433
- msgid "ERROR: Unable to run auditing: %s"
434
- msgstr "오류: 감사를 실행할 수 없음: %s"
435
-
436
- msgid "Error hashing suffix"
437
- msgstr "접미부를 해싱하는 중 오류 발생"
438
-
439
- #, python-format
440
- msgid "Error in %(conf)r with mtime_check_interval: %(error)s"
441
- msgstr "%(conf)r에서 mtime_check_interval 오류 발생: %(error)s"
442
-
443
- msgid "Error listing devices"
444
- msgstr "디바이스 나열 중 오류 발생"
445
-
446
- #, python-format
447
- msgid "Error on render profiling results: %s"
448
- msgstr "프로파일링 결과를 렌더링하는 중 오류 발생: %s"
449
-
450
- msgid "Error parsing recon cache file"
451
- msgstr "조정 캐시 파일을 구문 분석하는 중 오류 발생"
452
-
453
- msgid "Error reading recon cache file"
454
- msgstr "조정 캐시 파일을 읽는 중 오류 발생"
455
-
456
- msgid "Error reading ringfile"
457
- msgstr "링 파일을 읽는 중 오류 발생"
458
-
459
- msgid "Error reading swift.conf"
460
- msgstr "swift.conf를 읽는 중 오류 발생"
461
-
462
- msgid "Error retrieving recon data"
463
- msgstr "조정 데이터를 검색하는 중에 오류 발생"
464
-
465
- #, python-format
466
- msgid "Error sending UDP message to %(target)r: %(err)s"
467
- msgstr "%(target)r에 UDP 메시지 전송 중 에러 발생: %(err)s"
468
-
469
- msgid "Error syncing handoff partition"
470
- msgstr "핸드오프 파티션 동기화 중 오류 발생"
471
-
472
- msgid "Error syncing partition"
473
- msgstr "파티션 동기 오류 "
474
-
475
- #, python-format
476
- msgid "Error syncing with node: %s"
477
- msgstr "노드 동기 오류: %s"
478
-
479
- #, python-format
480
- msgid "Error trying to rebuild %(path)s policy#%(policy)d frag#%(frag_index)s"
481
- msgstr ""
482
- "%(path)s policy#%(policy)d frag#%(frag_index)s을(를) 다시 빌드하려는 중 오류 "
483
- "발생"
484
-
485
- msgid "Error: An error occurred"
486
- msgstr "오류: 오류 발생"
487
-
488
- msgid "Error: missing config path argument"
489
- msgstr "오류: 구성 경로 인수 누락"
490
-
491
- #, python-format
492
- msgid "Error: unable to locate %s"
493
- msgstr "오류: %s을(를) 찾을 수 없음"
494
-
495
- #, python-format
496
- msgid "Exception with %(ip)s:%(port)s/%(device)s"
497
- msgstr "%(ip)s:%(port)s/%(device)s 예외"
498
-
499
- #, python-format
500
- msgid "Expect: 100-continue on %s"
501
- msgstr "%s에서 100-continue 예상"
502
-
503
- #, python-format
504
- msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
505
- msgstr "%(given_domain)s에서 %(found_domain)s(으)로의 다음 CNAME 체인"
506
-
507
- msgid "Found configs:"
508
- msgstr "구성 발견:"
509
-
510
- msgid ""
511
- "Handoffs first mode still has handoffs remaining. Aborting current "
512
- "replication pass."
513
- msgstr ""
514
- "핸드오프 첫 모드에 여전히 핸드오프가 남아 있습니다. 현재 복제 전달을 중단합니"
515
- "다."
516
-
517
- msgid "Host unreachable"
518
- msgstr "호스트 도달 불가능"
519
-
520
- #, python-format
521
- msgid "Invalid X-Container-Sync-To format %r"
522
- msgstr "올바르지 않은 X-Container-Sync-To 형식 %r"
523
-
524
- #, python-format
525
- msgid "Invalid host %r in X-Container-Sync-To"
526
- msgstr "X-Container-Sync-To에 올바르지 않은 호스트 %r이(가) 있음"
527
-
528
- #, python-format
529
- msgid "Invalid pending entry %(file)s: %(entry)s"
530
- msgstr "올바르지 않은 보류 항목 %(file)s: %(entry)s"
531
-
532
- #, python-format
533
- msgid "Invalid response %(resp)s from %(full_path)s"
534
- msgstr "%(full_path)s에서 올바르지 않은 응답 %(resp)s"
535
-
536
- #, python-format
537
- msgid "Invalid response %(resp)s from %(ip)s"
538
- msgstr "%(ip)s의 올바르지 않은 응답 %(resp)s"
539
-
540
- #, python-format
541
- msgid ""
542
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
543
- "\"https\"."
544
- msgstr ""
545
- "X-Container-Sync-To 올바르지 않은 스키마 %r이(가) 있습니다. \"//\", \"http\" "
546
- "또는 \"https\"여야 합니다."
547
-
548
- msgid "Invalid swift_bytes"
549
- msgstr "swift_bytes 가 유효하지 않습니다."
550
-
551
- #, python-format
552
- msgid "Killing long-running rsync: %s"
553
- msgstr "장기 실행 중인 rsync 강제 종료: %s"
554
-
555
- msgid "Lockup detected.. killing live coros."
556
- msgstr "잠금 발견.. 활성 coros를 강제 종료합니다."
557
-
558
- #, python-format
559
- msgid "Mapped %(given_domain)s to %(found_domain)s"
560
- msgstr "%(given_domain)s을(를) %(found_domain)s(으)로 맵핑함"
561
-
562
- msgid "More than one part in a single-part response?"
563
- msgstr "단일 파트에서 하나 이상의 응답이 존재 합니까?"
564
-
565
- msgid "Network unreachable"
566
- msgstr "Network unreachable"
567
-
568
- #, python-format
569
- msgid "No %s running"
570
- msgstr "%s이(가) 실행되지 않음"
571
-
572
- #, python-format
573
- msgid "No cluster endpoint for %(realm)r %(cluster)r"
574
- msgstr "%(realm)r %(cluster)r 에 대한 클러스터 엔드포인트가 없음"
575
-
576
- #, python-format
577
- msgid "No permission to signal PID %d"
578
- msgstr "PID %d을(를) 표시할 권한이 없음"
579
-
580
- #, python-format
581
- msgid "No policy with index %s"
582
- msgstr "인덱스가 %s인 정책이 없음"
583
-
584
- #, python-format
585
- msgid "No realm key for %r"
586
- msgstr "%r에 대한 영역 키가 없음"
587
-
588
- #, python-format
589
- msgid "Node error limited %(ip)s:%(port)s (%(device)s)"
590
- msgstr "노드 오류로 %(ip)s:%(port)s(%(device)s)이(가) 제한됨"
591
-
592
- #, python-format
593
- msgid "Not enough object servers ack'ed (got %d)"
594
- msgstr "승인된 오브젝트 서버가 부족함(%d을(를) 받음)"
595
-
596
- #, python-format
597
- msgid ""
598
- "Not found %(sync_from)r => %(sync_to)r - object "
599
- "%(obj_name)r"
600
- msgstr ""
601
- "찾을 수 없음 %(sync_from)r => %(sync_to)r - 오브젝"
602
- "트%(obj_name)r"
603
-
604
- #, python-format
605
- msgid "Nothing reconstructed for %s seconds."
606
- msgstr "%s초 동안 재구성된 것이 없습니다."
607
-
608
- #, python-format
609
- msgid "Nothing replicated for %s seconds."
610
- msgstr "%s초 동안 복제된 것이 없습니다."
611
-
612
- msgid "Object"
613
- msgstr "오브젝트"
614
-
615
- msgid "Object PUT"
616
- msgstr "Object PUT"
617
-
618
- #, python-format
619
- msgid "Object PUT returning 202 for 409: %(req_timestamp)s <= %(timestamps)r"
620
- msgstr ""
621
- "Object PUT에서 409에 대해 202를 리턴함: %(req_timestamp)s <= %(timestamps)r"
622
-
623
- #, python-format
624
- msgid "Object PUT returning 412, %(statuses)r"
625
- msgstr "Object PUT에서 412를 리턴함, %(statuses)r"
626
-
627
- #, python-format
628
- msgid ""
629
- "Object audit (%(type)s) \"%(mode)s\" mode completed: %(elapsed).02fs. Total "
630
- "quarantined: %(quars)d, Total errors: %(errors)d, Total files/sec: "
631
- "%(frate).2f, Total bytes/sec: %(brate).2f, Auditing time: %(audit).2f, Rate: "
632
- "%(audit_rate).2f"
633
- msgstr ""
634
- "오브젝트 감사(%(type)s) \"%(mode)s\" 모드 완료: %(elapsed).02fs. 총 격리 항"
635
- "목: %(quars)d, 총 오류 수: %(errors)d, 총 파일/초: %(frate).2f, 총 바이트/"
636
- "초: %(brate).2f, 감사 시간: %(audit).2f, 속도: %(audit_rate).2f"
637
-
638
- #, python-format
639
- msgid ""
640
- "Object audit (%(type)s). Since %(start_time)s: Locally: %(passes)d passed, "
641
- "%(quars)d quarantined, %(errors)d errors, files/sec: %(frate).2f, bytes/sec: "
642
- "%(brate).2f, Total time: %(total).2f, Auditing time: %(audit).2f, Rate: "
643
- "%(audit_rate).2f"
644
- msgstr ""
645
- "오브젝트 감사(%(type)s). %(start_time)s 이후: 로컬: %(passes)d개 통과, "
646
- "%(quars)d개 격리, %(errors)d개 오류, 파일/초: %(frate).2f, 바이트/초: "
647
- "%(brate).2f, 총 시간: %(total).2f, 감사 시간: %(audit).2f, 속도: "
648
- "%(audit_rate).2f"
649
-
650
- #, python-format
651
- msgid "Object audit stats: %s"
652
- msgstr "오브젝트 감사 통계: %s"
653
-
654
- #, python-format
655
- msgid "Object reconstruction complete (once). (%.02f minutes)"
656
- msgstr "오브젝트 재구성 완료(일 회). (%.02f분)"
657
-
658
- #, python-format
659
- msgid "Object reconstruction complete. (%.02f minutes)"
660
- msgstr "오브젝트 재구성 완료. (%.02f분)"
661
-
662
- #, python-format
663
- msgid "Object replication complete (once). (%.02f minutes)"
664
- msgstr "오브젝트 복제 완료(일 회). (%.02f분)"
665
-
666
- #, python-format
667
- msgid "Object replication complete. (%.02f minutes)"
668
- msgstr "오브젝트 복제 완료. (%.02f분)"
669
-
670
- #, python-format
671
- msgid "Object servers returned %s mismatched etags"
672
- msgstr "오브젝트 서버에서 %s개의 불일치 etag를 리턴함"
673
-
674
- #, python-format
675
- msgid "Object update sweep completed: %.02fs"
676
- msgstr "오브젝트 업데이트 스윕 완료: %.02fs"
677
-
678
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
679
- msgstr "X-Container-Sync-To에 매개변수, 조회, 단편이 허용되지 않음"
680
-
681
- #, python-format
682
- msgid "Partition times: max %(max).4fs, min %(min).4fs, med %(med).4fs"
683
- msgstr "파티션 시간: 최대 %(max).4f초, 최소 %(min).4f초, 중간 %(med).4f초"
684
-
685
- msgid "Path required in X-Container-Sync-To"
686
- msgstr "X-Container-Sync-To에 경로가 필요함"
687
-
688
- #, python-format
689
- msgid "Problem cleaning up %s"
690
- msgstr "%s 정리 문제 발생"
691
-
692
- #, python-format
693
- msgid "Profiling Error: %s"
694
- msgstr "프로파일링 오류: %s"
695
-
696
- #, python-format
697
- msgid "Quarantined %(db_dir)s to %(quar_path)s due to %(reason)s"
698
- msgstr "%(db_dir)s을 %(quar_path)s로 격리합니다. 이유: %(reason)s"
699
-
700
- #, python-format
701
- msgid "Quarantined %(hsh_path)s to %(quar_path)s because it is not a directory"
702
- msgstr "디렉토리가 아니어서 %(hsh_path)s을(를) %(quar_path)s에 격리함"
703
-
704
- #, python-format
705
- msgid ""
706
- "Quarantined %(object_path)s to %(quar_path)s because it is not a directory"
707
- msgstr "디렉토리가 아니어서 %(object_path)s을(를) %(quar_path)s에 격리함"
708
-
709
- #, python-format
710
- msgid "Quarantining DB %s"
711
- msgstr "데이터베이스 %s 격리"
712
-
713
- #, python-format
714
- msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
715
- msgstr ""
716
- "%(account)s/%(container)s/%(object)s에 대한 Ratelimit 휴면 로그: %(sleep)s"
717
-
718
- #, python-format
719
- msgid "Removed %(remove)d dbs"
720
- msgstr "%(remove)d 데이터베이스를 제거함"
721
-
722
- #, python-format
723
- msgid "Removing %s objects"
724
- msgstr "%s 오브젝트 제거 중"
725
-
726
- #, python-format
727
- msgid "Removing partition: %s"
728
- msgstr "파티션 제거: %s"
729
-
730
- #, python-format
731
- msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
732
- msgstr "잘못된 pid %(pid)d의 pid 파일 %(pid_file)s 제거"
733
-
734
- #, python-format
735
- msgid "Removing pid file %s with invalid pid"
736
- msgstr "pid가 올바르지 않은 pid 파일 %s 제거"
737
-
738
- #, python-format
739
- msgid "Removing stale pid file %s"
740
- msgstr "시간이 경과된 pid 파일 %s을(를) 제거하는 중 "
741
-
742
- msgid "Replication run OVER"
743
- msgstr "복제 실행 대상"
744
-
745
- #, python-format
746
- msgid "Returning 497 because of blacklisting: %s"
747
- msgstr "블랙리스트 지정으로 인해 497이 리턴됨: %s"
748
-
749
- #, python-format
750
- msgid ""
751
- "Returning 498 for %(meth)s to %(acc)s/%(cont)s/%(obj)s . Ratelimit (Max "
752
- "Sleep) %(e)s"
753
- msgstr ""
754
- "%(acc)s/%(cont)s/%(obj)s(으)로 %(meth)s에 대한 498을 리턴합니다. 전송률 제한"
755
- "(최대 휴면) %(e)s"
756
-
757
- msgid "Ring change detected. Aborting current reconstruction pass."
758
- msgstr "링 변경이 발견되었습니다. 현재 재구성 전달을 중단합니다."
759
-
760
- msgid "Ring change detected. Aborting current replication pass."
761
- msgstr "링 변경이 발견되었습니다. 현재 복제 전달을 중단합니다."
762
-
763
- #, python-format
764
- msgid "Running %s once"
765
- msgstr "%s을(를) 한 번 실행"
766
-
767
- msgid "Running object reconstructor in script mode."
768
- msgstr "오브젝트 재구성자를 스크립트 모드로 실행 중입니다."
769
-
770
- msgid "Running object replicator in script mode."
771
- msgstr "오브젝트 복제자를 스크립트 모드로 실행 중입니다."
772
-
773
- #, python-format
774
- msgid "Signal %(server)s pid: %(pid)s signal: %(signal)s"
775
- msgstr "Signal %(server)s pid: %(pid)s signal: %(signal)s"
776
-
777
- #, python-format
778
- msgid ""
779
- "Since %(time)s: %(sync)s synced [%(delete)s deletes, %(put)s puts], %(skip)s "
780
- "skipped, %(fail)s failed"
781
- msgstr ""
782
- "%(time)s 이후: %(sync)s 동기화됨 [%(delete)s 삭제, %(put)s 배치], %(skip)s 건"
783
- "너뜀, %(fail)s 실패"
784
-
785
- #, python-format
786
- msgid ""
787
- "Since %(time)s: Account audits: %(passed)s passed audit,%(failed)s failed "
788
- "audit"
789
- msgstr "검사 경과 시간 %(time)s: 계정 검사A: %(passed)s 정상 ,%(failed)s 실패"
790
-
791
- #, python-format
792
- msgid ""
793
- "Since %(time)s: Container audits: %(pass)s passed audit, %(fail)s failed "
794
- "audit"
795
- msgstr "%(time)s 이후: 컨테이너 감사: %(pass)s 감사 전달, %(fail)s 감사 실패"
796
-
797
- #, python-format
798
- msgid "Skipping %(datadir)s because %(err)s"
799
- msgstr "%(datadir)s 을 건너 뜀: %(err)s"
800
-
801
- #, python-format
802
- msgid "Skipping %s as it is not mounted"
803
- msgstr "마운트되지 않는 %s를 건너 뛰기"
804
-
805
- #, python-format
806
- msgid "Starting %s"
807
- msgstr "%s 시작 중"
808
-
809
- msgid "Starting object reconstruction pass."
810
- msgstr "오브젝트 재구성 전달을 시작합니다."
811
-
812
- msgid "Starting object reconstructor in daemon mode."
813
- msgstr "오브젝트 재구성자를 디먼 모드로 시작합니다."
814
-
815
- msgid "Starting object replication pass."
816
- msgstr "오브젝트 복제 전달을 시작합니다."
817
-
818
- msgid "Starting object replicator in daemon mode."
819
- msgstr "오브젝트 복제자를 디먼 모드로 시작합니다."
820
-
821
- #, python-format
822
- msgid "Successful rsync of %(src)s at %(dst)s (%(time).03f)"
823
- msgstr "%(dst)s(%(time).03f)에서 %(src)s의 rsync 성공"
824
-
825
- msgid "The file type are forbidden to access!"
826
- msgstr "이 파일 유형에 대한 액세스가 금지되었습니다!"
827
-
828
- #, python-format
829
- msgid ""
830
- "The total %(key)s for the container (%(total)s) does not match the sum of "
831
- "%(key)s across policies (%(sum)s)"
832
- msgstr ""
833
- "컨테이너의 총 %(key)s가 (%(total)s) 과 %(key)s의 총합 (%(sum)s)가 일치하지 "
834
- "않습니다."
835
-
836
- #, python-format
837
- msgid "Trying to %(method)s %(path)s"
838
- msgstr "%(method)s %(path)s 시도 중"
839
-
840
- #, python-format
841
- msgid "Trying to GET %(full_path)s"
842
- msgstr "GET %(full_path)s 시도 중"
843
-
844
- msgid "Trying to read during GET"
845
- msgstr "가져오기 중 읽기를 시도함"
846
-
847
- msgid "Trying to send to client"
848
- msgstr "클라이언트로 전송 시도 중"
849
-
850
- #, python-format
851
- msgid "Trying to sync suffixes with %s"
852
- msgstr "%s과(와) 접미사를 동기화하려고 시도"
853
-
854
- #, python-format
855
- msgid "Trying to write to %s"
856
- msgstr "%s에 쓰기 시도 중"
857
-
858
- msgid "UNCAUGHT EXCEPTION"
859
- msgstr "미발견 예외"
860
-
861
- #, python-format
862
- msgid "Unable to find %(section)s config section in %(conf)s"
863
- msgstr "%(conf)s 에서 %(section)s 설정 섹션을 찾을 수 없음"
864
-
865
- #, python-format
866
- msgid "Unable to locate %s in libc. Leaving as a no-op."
867
- msgstr "libc에서 %s을(를) 찾을 수 없습니다. no-op로 남겨 둡니다."
868
-
869
- #, python-format
870
- msgid "Unable to locate config for %s"
871
- msgstr "%s의 구성을 찾을 수 없음"
872
-
873
- #, python-format
874
- msgid "Unable to locate config number %(number)s for %(server)s"
875
- msgstr "%(server)s 의 구성 번호 %(number)s를 찾을 수 없음"
876
-
877
- msgid ""
878
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
879
- msgstr ""
880
- "libc에서 fallocate, posix_fallocate를 찾을 수 없습니다. no-op로 남겨 둡니다."
881
-
882
- #, python-format
883
- msgid "Unable to perform fsync() on directory %(dir)s: %(err)s"
884
- msgstr "디렉토리에서 fsync() 를 수행할 수 없음 %(dir)s: %(err)s"
885
-
886
- #, python-format
887
- msgid "Unable to read config from %s"
888
- msgstr "%s에서 구성을 읽을 수 없음"
889
-
890
- #, python-format
891
- msgid "Unauth %(sync_from)r => %(sync_to)r"
892
- msgstr "권한 부여 해제 %(sync_from)r => %(sync_to)r"
893
-
894
- msgid "Unhandled exception"
895
- msgstr "처리되지 않은 예외"
896
-
897
- #, python-format
898
- msgid "Unknown exception trying to GET: %(account)r %(container)r %(object)r"
899
- msgstr ""
900
- "GET을 시도하는 중 알 수 없는 예외 발생: %(account)r %(container)r %(object)r"
901
-
902
- #, python-format
903
- msgid "Update report failed for %(container)s %(dbfile)s"
904
- msgstr "%(container)s %(dbfile)s의 업데이트 보고서 실패"
905
-
906
- #, python-format
907
- msgid "Update report sent for %(container)s %(dbfile)s"
908
- msgstr "%(container)s %(dbfile)s의 업데이트 보고서를 발송함"
909
-
910
- msgid ""
911
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
912
- "termination for a production deployment."
913
- msgstr ""
914
- "경고: SSL은 테스트용으로만 사용해야 합니다. 프로덕션 배치에는 외부 SSL 종료"
915
- "를 사용하십시오."
916
-
917
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
918
- msgstr ""
919
- "경고: 파일 디스크립터 한계를 수정할 수 없습니다. 비루트로 실행 중인지 확인하"
920
- "십시오."
921
-
922
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
923
- msgstr ""
924
- "경고: 최대 프로세스 한계를 수정할 수 없습니다. 비루트로 실행 중인지 확인하십"
925
- "시오."
926
-
927
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
928
- msgstr ""
929
- "경고: 메모리 한계를 수정할 수 없습니다. 비루트로 실행 중인지 확인하십시오."
930
-
931
- msgid ""
932
- "WARNING: object-expirer.conf is deprecated. Move object-expirers' "
933
- "configuration into object-server.conf."
934
- msgstr ""
935
- "주의 - object-expirer.conf는 deprecate 되었습니다. object-expirer 설정을 "
936
- "object-server.conf 로 옮겨주시기 바랍니다."
937
-
938
- #, python-format
939
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; giving up"
940
- msgstr "%(kill_wait)s초 동안 %(server)s의 종료를 대기함, 포기하는 중"
941
-
942
- #, python-format
943
- msgid "Waited %(kill_wait)s seconds for %(server)s to die; killing"
944
- msgstr "%(kill_wait)s초 동안 %(server)s을(를) 대기합니다, 강제 종료 중"
945
-
946
- msgid "Warning: Cannot ratelimit without a memcached client"
947
- msgstr "경고: memcached 클라이언트 없이 전송률을 제한할 수 없음"
948
-
949
- #, python-format
950
- msgid "method %s is not allowed."
951
- msgstr "메소드 %s이(가) 허용되지 않습니다."
952
-
953
- msgid "no log file found"
954
- msgstr "로그 파일을 찾을 수 없음"
955
-
956
- msgid "odfpy not installed."
957
- msgstr "odfpy가 설치되어 있지 않습니다."
958
-
959
- #, python-format
960
- msgid "plotting results failed due to %s"
961
- msgstr "%s(으)로 인해 결과 표시 실패"
962
-
963
- msgid "python-matplotlib not installed."
964
- msgstr "python-matplotlib가 설치되어 있지 않습니다."