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,832 +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
|
-
# İşbaran Akçayır <isbaran@gmail.com>, 2015
|
7
|
-
# Andreas Jaeger <jaegerandi@gmail.com>, 2016. #zanata
|
8
|
-
msgid ""
|
9
|
-
msgstr ""
|
10
|
-
"Project-Id-Version: swift VERSION\n"
|
11
|
-
"Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
|
12
|
-
"POT-Creation-Date: 2019-10-03 19:48+0000\n"
|
13
|
-
"MIME-Version: 1.0\n"
|
14
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
15
|
-
"Content-Transfer-Encoding: 8bit\n"
|
16
|
-
"PO-Revision-Date: 2016-04-12 06:43+0000\n"
|
17
|
-
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
|
18
|
-
"Language: tr_TR\n"
|
19
|
-
"Plural-Forms: nplurals=1; plural=0;\n"
|
20
|
-
"Generated-By: Babel 2.0\n"
|
21
|
-
"X-Generator: Zanata 4.3.3\n"
|
22
|
-
"Language-Team: Turkish (Turkey)\n"
|
23
|
-
|
24
|
-
msgid ""
|
25
|
-
"\n"
|
26
|
-
"user quit"
|
27
|
-
msgstr ""
|
28
|
-
"\n"
|
29
|
-
"kullanıcı çıktı"
|
30
|
-
|
31
|
-
#, python-format
|
32
|
-
msgid " - %s"
|
33
|
-
msgstr " - %s"
|
34
|
-
|
35
|
-
#, python-format
|
36
|
-
msgid " - parallel, %s"
|
37
|
-
msgstr " - paralel, %s"
|
38
|
-
|
39
|
-
#, python-format
|
40
|
-
msgid ""
|
41
|
-
"%(checked)d suffixes checked - %(hashed).2f%% hashed, %(synced).2f%% synced"
|
42
|
-
msgstr ""
|
43
|
-
"%(checked)d sonek kontrol edildi - %(hashed).2f%% özetlenen, %(synced).2f%% "
|
44
|
-
"eşzamanlanan"
|
45
|
-
|
46
|
-
#, python-format
|
47
|
-
msgid "%(msg)s %(ip)s:%(port)s/%(device)s"
|
48
|
-
msgstr "%(msg)s %(ip)s:%(port)s/%(device)s"
|
49
|
-
|
50
|
-
#, python-format
|
51
|
-
msgid ""
|
52
|
-
"%(replicated)d/%(total)d (%(percentage).2f%%) partitions replicated in "
|
53
|
-
"%(time).2fs (%(rate).2f/sec, %(remaining)s remaining)"
|
54
|
-
msgstr ""
|
55
|
-
"%(replicated)d/%(total)d (%(percentage).2f%%) bölüm %(time).2fs (%(rate).2f/"
|
56
|
-
"sn, %(remaining)s kalan) içinde çoğaltıldı"
|
57
|
-
|
58
|
-
#, python-format
|
59
|
-
msgid "%(success)s successes, %(failure)s failures"
|
60
|
-
msgstr "%(success)s başarı, %(failure)s başarısızlık"
|
61
|
-
|
62
|
-
#, python-format
|
63
|
-
msgid "%(type)s returning 503 for %(statuses)s"
|
64
|
-
msgstr "%(type)s %(statuses)s için 503 döndürüyor"
|
65
|
-
|
66
|
-
#, python-format
|
67
|
-
msgid "%s already started..."
|
68
|
-
msgstr "%s zaten başlatıldı..."
|
69
|
-
|
70
|
-
#, python-format
|
71
|
-
msgid "%s does not exist"
|
72
|
-
msgstr "%s mevcut değil"
|
73
|
-
|
74
|
-
#, python-format
|
75
|
-
msgid "%s is not mounted"
|
76
|
-
msgstr "%s bağlı değil"
|
77
|
-
|
78
|
-
#, python-format
|
79
|
-
msgid "%s responded as unmounted"
|
80
|
-
msgstr "%s bağlı değil olarak yanıt verdi"
|
81
|
-
|
82
|
-
#, python-format
|
83
|
-
msgid "%s: Connection reset by peer"
|
84
|
-
msgstr "%s: Bağlantı eş tarafından sıfırlandı"
|
85
|
-
|
86
|
-
msgid "Account"
|
87
|
-
msgstr "Hesap"
|
88
|
-
|
89
|
-
#, python-format
|
90
|
-
msgid "Account audit \"once\" mode completed: %.02fs"
|
91
|
-
msgstr "Hesap denetimi \"bir kere\" kipi tamamlandı: %.02fs"
|
92
|
-
|
93
|
-
#, python-format
|
94
|
-
msgid "Account audit pass completed: %.02fs"
|
95
|
-
msgstr "Hesap denetimi geçişi tamamlandı: %.02fs"
|
96
|
-
|
97
|
-
#, python-format
|
98
|
-
msgid ""
|
99
|
-
"Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
|
100
|
-
msgstr "%(count)d db %(time).5f saniyede çoğaltılmaya çalışıldı (%(rate).5f/s)"
|
101
|
-
|
102
|
-
#, python-format
|
103
|
-
msgid "Bad rsync return code: %(ret)d <- %(args)s"
|
104
|
-
msgstr "Kötü rsync dönüş kodu: %(ret)d <- %(args)s"
|
105
|
-
|
106
|
-
msgid "Begin account audit \"once\" mode"
|
107
|
-
msgstr "Hesap denetimi \"bir kere\" kipini başlat"
|
108
|
-
|
109
|
-
msgid "Begin account audit pass."
|
110
|
-
msgstr "Hesap denetimi başlatma geçildi."
|
111
|
-
|
112
|
-
msgid "Begin container audit \"once\" mode"
|
113
|
-
msgstr "Kap denetimine \"bir kere\" kipinde başla"
|
114
|
-
|
115
|
-
msgid "Begin container audit pass."
|
116
|
-
msgstr "Kap denetimi geçişini başlat."
|
117
|
-
|
118
|
-
msgid "Begin container sync \"once\" mode"
|
119
|
-
msgstr "Kap eşzamanlamayı \"bir kere\" kipinde başlat"
|
120
|
-
|
121
|
-
msgid "Begin container update single threaded sweep"
|
122
|
-
msgstr "Kap güncelleme tek iş iplikli süpürmeye başla"
|
123
|
-
|
124
|
-
msgid "Begin container update sweep"
|
125
|
-
msgstr "Kap güncelleme süpürmesine başla"
|
126
|
-
|
127
|
-
msgid "Begin object update single threaded sweep"
|
128
|
-
msgstr "Nesne güncelleme tek iş iplikli süpürmeye başla"
|
129
|
-
|
130
|
-
msgid "Begin object update sweep"
|
131
|
-
msgstr "Nesne güncelleme süpürmesine başla"
|
132
|
-
|
133
|
-
msgid "Beginning replication run"
|
134
|
-
msgstr "Çoğaltmanın çalıştırılmasına başlanıyor"
|
135
|
-
|
136
|
-
msgid "Broker error trying to rollback locked connection"
|
137
|
-
msgstr "Kilitli bağlantı geri alınmaya çalışılırken vekil hatası"
|
138
|
-
|
139
|
-
#, python-format
|
140
|
-
msgid "Can not access the file %s."
|
141
|
-
msgstr "%s dosyasına erişilemiyor."
|
142
|
-
|
143
|
-
#, python-format
|
144
|
-
msgid "Can not load profile data from %s."
|
145
|
-
msgstr "%s'den profil verisi yüklenemiyor."
|
146
|
-
|
147
|
-
#, python-format
|
148
|
-
msgid "Client did not read from proxy within %ss"
|
149
|
-
msgstr "İstemci %ss içinde vekilden okumadı"
|
150
|
-
|
151
|
-
msgid "Client disconnected on read"
|
152
|
-
msgstr "İstemci okuma sırasında bağlantıyı kesti"
|
153
|
-
|
154
|
-
msgid "Client disconnected without sending enough data"
|
155
|
-
msgstr "İstemci yeterli veri göndermeden bağlantıyı kesti"
|
156
|
-
|
157
|
-
#, python-format
|
158
|
-
msgid ""
|
159
|
-
"Client path %(client)s does not match path stored in object metadata %(meta)s"
|
160
|
-
msgstr ""
|
161
|
-
"İstemci yolu %(client)s nesne metadata'sında kayıtlı yol ile eşleşmiyor "
|
162
|
-
"%(meta)s"
|
163
|
-
|
164
|
-
msgid ""
|
165
|
-
"Configuration option internal_client_conf_path not defined. Using default "
|
166
|
-
"configuration, See internal-client.conf-sample for options"
|
167
|
-
msgstr ""
|
168
|
-
"Yapılandırma seçeneği internal_client_conf_path belirtilmemiş. Varsayılan "
|
169
|
-
"yapılandırma kullanılıyor, seçenekleri çin internal-client.conf-sample'a "
|
170
|
-
"bakın"
|
171
|
-
|
172
|
-
msgid "Connection refused"
|
173
|
-
msgstr "Bağlantı reddedildi"
|
174
|
-
|
175
|
-
msgid "Connection timeout"
|
176
|
-
msgstr "Bağlantı zaman aşımına uğradı"
|
177
|
-
|
178
|
-
msgid "Container"
|
179
|
-
msgstr "Kap"
|
180
|
-
|
181
|
-
#, python-format
|
182
|
-
msgid "Container audit \"once\" mode completed: %.02fs"
|
183
|
-
msgstr "Kap denetimi \"bir kere\" kipinde tamamlandı: %.02fs"
|
184
|
-
|
185
|
-
#, python-format
|
186
|
-
msgid "Container audit pass completed: %.02fs"
|
187
|
-
msgstr "Kap denetim geçişi tamamlandı: %.02fs"
|
188
|
-
|
189
|
-
#, python-format
|
190
|
-
msgid "Container sync \"once\" mode completed: %.02fs"
|
191
|
-
msgstr "Kap eşzamanlama \"bir kere\" kipinde tamamlandı: %.02fs"
|
192
|
-
|
193
|
-
#, python-format
|
194
|
-
msgid ""
|
195
|
-
"Container update single threaded sweep completed: %(elapsed).02fs, "
|
196
|
-
"%(success)s successes, %(fail)s failures, %(no_change)s with no changes"
|
197
|
-
msgstr ""
|
198
|
-
"Kap güncelleme tek iş iplikli süpürme tamamlandı: %(elapsed).02fs, "
|
199
|
-
"%(success)s başarılı, %(fail)s başarısız, %(no_change)s değişiklik yok"
|
200
|
-
|
201
|
-
#, python-format
|
202
|
-
msgid "Container update sweep completed: %.02fs"
|
203
|
-
msgstr "Kap güncelleme süpürme tamamlandı: %.02fs"
|
204
|
-
|
205
|
-
#, python-format
|
206
|
-
msgid ""
|
207
|
-
"Container update sweep of %(path)s completed: %(elapsed).02fs, %(success)s "
|
208
|
-
"successes, %(fail)s failures, %(no_change)s with no changes"
|
209
|
-
msgstr ""
|
210
|
-
"%(path)s in kap güncelleme süpürmesi tamamlandı: %(elapsed).02fs, "
|
211
|
-
"%(success)s başarılı, %(fail)s başarısız, %(no_change)s değişiklik yok"
|
212
|
-
|
213
|
-
#, python-format
|
214
|
-
msgid "Data download error: %s"
|
215
|
-
msgstr "Veri indirme hatası: %s"
|
216
|
-
|
217
|
-
#, python-format
|
218
|
-
msgid "ERROR %(db_file)s: %(validate_sync_to_err)s"
|
219
|
-
msgstr "HATA %(db_file)s: %(validate_sync_to_err)s"
|
220
|
-
|
221
|
-
#, python-format
|
222
|
-
msgid "ERROR %(status)d %(body)s From %(type)s Server"
|
223
|
-
msgstr "HATA %(status)d %(body)s %(type)s Sunucudan"
|
224
|
-
|
225
|
-
#, python-format
|
226
|
-
msgid "ERROR %(status)d %(body)s From Object Server re: %(path)s"
|
227
|
-
msgstr "HATA %(status)d %(body)s Nesne Sunucu re'den: %(path)s"
|
228
|
-
|
229
|
-
#, python-format
|
230
|
-
msgid "ERROR %(status)d Expect: 100-continue From Object Server"
|
231
|
-
msgstr "HATA %(status)d Beklenen: 100-Nesne Sunucusundan devam et"
|
232
|
-
|
233
|
-
#, python-format
|
234
|
-
msgid ""
|
235
|
-
"ERROR Account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
236
|
-
"later): Response %(status)s %(reason)s"
|
237
|
-
msgstr ""
|
238
|
-
"HATA %(ip)s:%(port)s/%(device)s ile hesap güncelleme başarısız (sonra tekrar "
|
239
|
-
"denenecek): Yanıt %(status)s %(reason)s"
|
240
|
-
|
241
|
-
#, python-format
|
242
|
-
msgid "ERROR Client read timeout (%ss)"
|
243
|
-
msgstr "HATA İstemci okuma zaman aşımına uğradı (%ss)"
|
244
|
-
|
245
|
-
#, python-format
|
246
|
-
msgid ""
|
247
|
-
"ERROR Container update failed (saving for async update later): %(status)d "
|
248
|
-
"response from %(ip)s:%(port)s/%(dev)s"
|
249
|
-
msgstr ""
|
250
|
-
"HATA Kap güncelleme başarısız (daha sonraki async güncellemesi için "
|
251
|
-
"kaydediliyor): %(ip)s:%(port)s/%(dev)s den %(status)d yanıtı"
|
252
|
-
|
253
|
-
#, python-format
|
254
|
-
msgid "ERROR Could not get account info %s"
|
255
|
-
msgstr "HATA hesap bilgisi %s alınamadı"
|
256
|
-
|
257
|
-
#, python-format
|
258
|
-
msgid "ERROR Could not get container info %s"
|
259
|
-
msgstr "HATA %s kap bilgisi alınamadı"
|
260
|
-
|
261
|
-
#, python-format
|
262
|
-
msgid "ERROR DiskFile %(data_file)s close failure: %(exc)s : %(stack)s"
|
263
|
-
msgstr "HATA %(data_file)s disk dosyası kapatma başarısız: %(exc)s : %(stack)s"
|
264
|
-
|
265
|
-
msgid "ERROR Exception causing client disconnect"
|
266
|
-
msgstr "HATA İstisna istemci bağlantısının kesilmesine neden oluyor"
|
267
|
-
|
268
|
-
msgid "ERROR Failed to get my own IPs?"
|
269
|
-
msgstr "Kendi IP'lerimi alırken HATA?"
|
270
|
-
|
271
|
-
msgid "ERROR Insufficient Storage"
|
272
|
-
msgstr "HATA Yetersiz Depolama"
|
273
|
-
|
274
|
-
#, python-format
|
275
|
-
msgid "ERROR Object %(obj)s failed audit and was quarantined: %(err)s"
|
276
|
-
msgstr ""
|
277
|
-
"HATA Nesne %(obj)s denetimde başarısız oldu ve karantinaya alındı: %(err)s"
|
278
|
-
|
279
|
-
#, python-format
|
280
|
-
msgid "ERROR Pickle problem, quarantining %s"
|
281
|
-
msgstr "HATA Picke problemi, %s karantinaya alınıyor"
|
282
|
-
|
283
|
-
#, python-format
|
284
|
-
msgid "ERROR Remote drive not mounted %s"
|
285
|
-
msgstr "HATA Uzak sürücü bağlı değil %s"
|
286
|
-
|
287
|
-
#, python-format
|
288
|
-
msgid "ERROR Syncing %(db_file)s %(row)s"
|
289
|
-
msgstr "HATA %(db_file)s %(row)s eşzamanlamada"
|
290
|
-
|
291
|
-
#, python-format
|
292
|
-
msgid "ERROR Syncing %s"
|
293
|
-
msgstr "HATA %s Eşzamanlama"
|
294
|
-
|
295
|
-
#, python-format
|
296
|
-
msgid "ERROR Trying to audit %s"
|
297
|
-
msgstr "HATA %s denetimi denemesinde"
|
298
|
-
|
299
|
-
msgid "ERROR Unhandled exception in request"
|
300
|
-
msgstr "HATA İstekte ele alınmayan istisna var"
|
301
|
-
|
302
|
-
#, python-format
|
303
|
-
msgid "ERROR __call__ error with %(method)s %(path)s "
|
304
|
-
msgstr "ERROR __call__ hatası %(method)s %(path)s "
|
305
|
-
|
306
|
-
#, python-format
|
307
|
-
msgid ""
|
308
|
-
"ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
309
|
-
"later)"
|
310
|
-
msgstr ""
|
311
|
-
"HATA %(ip)s:%(port)s/%(device)s ile hesap güncelleme başarısız (sonra "
|
312
|
-
"yeniden denenecek)"
|
313
|
-
|
314
|
-
#, python-format
|
315
|
-
msgid ""
|
316
|
-
"ERROR account update failed with %(ip)s:%(port)s/%(device)s (will retry "
|
317
|
-
"later): "
|
318
|
-
msgstr ""
|
319
|
-
"HATA hesap güncelleme başarısız %(ip)s:%(port)s/%(device)s (sonra tekrar "
|
320
|
-
"denenecek):"
|
321
|
-
|
322
|
-
#, python-format
|
323
|
-
msgid "ERROR async pending file with unexpected name %s"
|
324
|
-
msgstr "HATA beklenmeyen isimli async bekleyen dosya %s"
|
325
|
-
|
326
|
-
msgid "ERROR auditing"
|
327
|
-
msgstr "denetlemede HATA"
|
328
|
-
|
329
|
-
#, python-format
|
330
|
-
msgid "ERROR auditing: %s"
|
331
|
-
msgstr "HATA denetim: %s"
|
332
|
-
|
333
|
-
#, python-format
|
334
|
-
msgid ""
|
335
|
-
"ERROR container update failed with %(ip)s:%(port)s/%(dev)s (saving for async "
|
336
|
-
"update later)"
|
337
|
-
msgstr ""
|
338
|
-
"HATA kap güncelleme %(ip)s:%(port)s/%(dev)s ile başarısız oldu (sonraki "
|
339
|
-
"async güncellemesi için kaydediliyor)"
|
340
|
-
|
341
|
-
#, python-format
|
342
|
-
msgid "ERROR reading HTTP response from %s"
|
343
|
-
msgstr "%s'den HTTP yanıtı okumada HATA"
|
344
|
-
|
345
|
-
#, python-format
|
346
|
-
msgid "ERROR reading db %s"
|
347
|
-
msgstr "%s veri tabanı okumada HATA"
|
348
|
-
|
349
|
-
#, python-format
|
350
|
-
msgid "ERROR rsync failed with %(code)s: %(args)s"
|
351
|
-
msgstr "HATA rsync %(code)s ile başarısız oldu: %(args)s"
|
352
|
-
|
353
|
-
#, python-format
|
354
|
-
msgid "ERROR syncing %(file)s with node %(node)s"
|
355
|
-
msgstr "%(node)s düğümlü %(file)s eş zamanlamada HATA"
|
356
|
-
|
357
|
-
msgid "ERROR trying to replicate"
|
358
|
-
msgstr "Çoğaltmaya çalışmada HATA"
|
359
|
-
|
360
|
-
#, python-format
|
361
|
-
msgid "ERROR while trying to clean up %s"
|
362
|
-
msgstr "%s temizlenmeye çalışırken HATA"
|
363
|
-
|
364
|
-
#, python-format
|
365
|
-
msgid "ERROR with %(type)s server %(ip)s:%(port)s/%(device)s re: %(info)s"
|
366
|
-
msgstr "HATA %(type)s sunucusu %(ip)s:%(port)s/%(device)s re: %(info)s"
|
367
|
-
|
368
|
-
#, python-format
|
369
|
-
msgid "ERROR with loading suppressions from %s: "
|
370
|
-
msgstr "HATA %s den baskılamaların yüklenmesinde: "
|
371
|
-
|
372
|
-
#, python-format
|
373
|
-
msgid "ERROR with remote server %(ip)s:%(port)s/%(device)s"
|
374
|
-
msgstr "HATA uzuk sunucuda %(ip)s:%(port)s/%(device)s"
|
375
|
-
|
376
|
-
#, python-format
|
377
|
-
msgid "ERROR: Failed to get paths to drive partitions: %s"
|
378
|
-
msgstr "HATA: Sürücü bölümlerine olan yollar alınamadı: %s"
|
379
|
-
|
380
|
-
#, python-format
|
381
|
-
msgid "ERROR: Unable to access %(path)s: %(error)s"
|
382
|
-
msgstr "HATA: %(path)s e erişilemiyor: %(error)s"
|
383
|
-
|
384
|
-
#, python-format
|
385
|
-
msgid "ERROR: Unable to run auditing: %s"
|
386
|
-
msgstr "HATA: Denetim çalıştırılamıyor: %s"
|
387
|
-
|
388
|
-
msgid "Error hashing suffix"
|
389
|
-
msgstr "Sonek özetini çıkarmada hata"
|
390
|
-
|
391
|
-
msgid "Error listing devices"
|
392
|
-
msgstr "Aygıtları listelemede hata"
|
393
|
-
|
394
|
-
#, python-format
|
395
|
-
msgid "Error on render profiling results: %s"
|
396
|
-
msgstr "Profilleme sonuçlarının gerçeklenmesinde hata: %s"
|
397
|
-
|
398
|
-
msgid "Error parsing recon cache file"
|
399
|
-
msgstr "Recon zula dosyasını ayrıştırmada hata"
|
400
|
-
|
401
|
-
msgid "Error reading recon cache file"
|
402
|
-
msgstr "Recon zula dosyası okumada hata"
|
403
|
-
|
404
|
-
msgid "Error reading ringfile"
|
405
|
-
msgstr "Halka dosyası okunurken hata"
|
406
|
-
|
407
|
-
msgid "Error reading swift.conf"
|
408
|
-
msgstr "swift.conf okunurken hata"
|
409
|
-
|
410
|
-
msgid "Error retrieving recon data"
|
411
|
-
msgstr "Recon verisini almada hata"
|
412
|
-
|
413
|
-
msgid "Error syncing handoff partition"
|
414
|
-
msgstr "Devir bölümünü eş zamanlamada hata"
|
415
|
-
|
416
|
-
msgid "Error syncing partition"
|
417
|
-
msgstr "Bölüm eşzamanlamada hata"
|
418
|
-
|
419
|
-
#, python-format
|
420
|
-
msgid "Error syncing with node: %s"
|
421
|
-
msgstr "Düğüm ile eş zamanlamada hata: %s"
|
422
|
-
|
423
|
-
#, python-format
|
424
|
-
msgid "Error trying to rebuild %(path)s policy#%(policy)d frag#%(frag_index)s"
|
425
|
-
msgstr ""
|
426
|
-
"Yeniden inşa denenirken hata %(path)s policy#%(policy)d frag#%(frag_index)s"
|
427
|
-
|
428
|
-
msgid "Error: An error occurred"
|
429
|
-
msgstr "Hata: Bir hata oluştu"
|
430
|
-
|
431
|
-
msgid "Error: missing config path argument"
|
432
|
-
msgstr "Hata: yapılandırma yolu değişkeni eksik"
|
433
|
-
|
434
|
-
#, python-format
|
435
|
-
msgid "Error: unable to locate %s"
|
436
|
-
msgstr "Hata: %s bulunamıyor"
|
437
|
-
|
438
|
-
#, python-format
|
439
|
-
msgid "Exception with %(ip)s:%(port)s/%(device)s"
|
440
|
-
msgstr "%(ip)s:%(port)s/%(device)s ile istisna"
|
441
|
-
|
442
|
-
#, python-format
|
443
|
-
msgid "Expect: 100-continue on %s"
|
444
|
-
msgstr "Beklenen: 100-%s üzerinden devam et"
|
445
|
-
|
446
|
-
#, python-format
|
447
|
-
msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
|
448
|
-
msgstr "%(given_domain)s den %(found_domain)s e CNAME zinciri takip ediliyor"
|
449
|
-
|
450
|
-
msgid "Found configs:"
|
451
|
-
msgstr "Yapılandırmalar bulundu:"
|
452
|
-
|
453
|
-
msgid "Host unreachable"
|
454
|
-
msgstr "İstemci erişilebilir değil"
|
455
|
-
|
456
|
-
#, python-format
|
457
|
-
msgid "Invalid X-Container-Sync-To format %r"
|
458
|
-
msgstr "Geçersix X-Container-Sync-To biçimi %r"
|
459
|
-
|
460
|
-
#, python-format
|
461
|
-
msgid "Invalid host %r in X-Container-Sync-To"
|
462
|
-
msgstr "X-Container-Sync-To'da geçersiz istemci %r"
|
463
|
-
|
464
|
-
#, python-format
|
465
|
-
msgid "Invalid pending entry %(file)s: %(entry)s"
|
466
|
-
msgstr "Geçersiz bekleyen girdi %(file)s: %(entry)s"
|
467
|
-
|
468
|
-
#, python-format
|
469
|
-
msgid "Invalid response %(resp)s from %(full_path)s"
|
470
|
-
msgstr "%(full_path)s den geçersiz yanıt %(resp)s"
|
471
|
-
|
472
|
-
#, python-format
|
473
|
-
msgid "Invalid response %(resp)s from %(ip)s"
|
474
|
-
msgstr "%(ip)s den geçersiz yanıt %(resp)s"
|
475
|
-
|
476
|
-
#, python-format
|
477
|
-
msgid ""
|
478
|
-
"Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
|
479
|
-
"\"https\"."
|
480
|
-
msgstr ""
|
481
|
-
"X-Container-Sync-To'da geçersiz şema %r, \"//\", \"http\", veya \"https\" "
|
482
|
-
"olmalı."
|
483
|
-
|
484
|
-
#, python-format
|
485
|
-
msgid "Killing long-running rsync: %s"
|
486
|
-
msgstr "Uzun süre çalışan rsync öldürülüyor: %s"
|
487
|
-
|
488
|
-
msgid "Lockup detected.. killing live coros."
|
489
|
-
msgstr "Kilitleme algılandı.. canlı co-rutinler öldürülüyor."
|
490
|
-
|
491
|
-
#, python-format
|
492
|
-
msgid "Mapped %(given_domain)s to %(found_domain)s"
|
493
|
-
msgstr "%(given_domain)s %(found_domain)s eşleştirildi"
|
494
|
-
|
495
|
-
#, python-format
|
496
|
-
msgid "No %s running"
|
497
|
-
msgstr "Çalışan %s yok"
|
498
|
-
|
499
|
-
#, python-format
|
500
|
-
msgid "No permission to signal PID %d"
|
501
|
-
msgstr "%d PID'ine sinyalleme izni yok"
|
502
|
-
|
503
|
-
#, python-format
|
504
|
-
msgid "No policy with index %s"
|
505
|
-
msgstr "%s indisine sahip ilke yok"
|
506
|
-
|
507
|
-
#, python-format
|
508
|
-
msgid "No realm key for %r"
|
509
|
-
msgstr "%r için realm anahtarı yok"
|
510
|
-
|
511
|
-
#, python-format
|
512
|
-
msgid "Node error limited %(ip)s:%(port)s (%(device)s)"
|
513
|
-
msgstr "Düğüm hatası sınırlandı %(ip)s:%(port)s (%(device)s)"
|
514
|
-
|
515
|
-
#, python-format
|
516
|
-
msgid "Not enough object servers ack'ed (got %d)"
|
517
|
-
msgstr "Yeterince nesne sunucu ack'lenmedi (%d alındı)"
|
518
|
-
|
519
|
-
#, python-format
|
520
|
-
msgid ""
|
521
|
-
"Not found %(sync_from)r => %(sync_to)r - object "
|
522
|
-
"%(obj_name)r"
|
523
|
-
msgstr ""
|
524
|
-
"Bulunamadı %(sync_from)r => %(sync_to)r - nesne %(obj_name)r"
|
525
|
-
|
526
|
-
#, python-format
|
527
|
-
msgid "Nothing reconstructed for %s seconds."
|
528
|
-
msgstr "%s saniye boyunca hiçbir şey yeniden oluşturulmadı."
|
529
|
-
|
530
|
-
#, python-format
|
531
|
-
msgid "Nothing replicated for %s seconds."
|
532
|
-
msgstr "%s saniyedir hiçbir şey çoğaltılmadı."
|
533
|
-
|
534
|
-
msgid "Object"
|
535
|
-
msgstr "Nesne"
|
536
|
-
|
537
|
-
msgid "Object PUT"
|
538
|
-
msgstr "Nesne PUT"
|
539
|
-
|
540
|
-
#, python-format
|
541
|
-
msgid "Object PUT returning 202 for 409: %(req_timestamp)s <= %(timestamps)r"
|
542
|
-
msgstr "Nesne PUT 409 için 202 döndürüyor: %(req_timestamp)s <= %(timestamps)r"
|
543
|
-
|
544
|
-
#, python-format
|
545
|
-
msgid "Object PUT returning 412, %(statuses)r"
|
546
|
-
msgstr "Nesne PUT 412 döndürüyor, %(statuses)r"
|
547
|
-
|
548
|
-
#, python-format
|
549
|
-
msgid ""
|
550
|
-
"Object audit (%(type)s) \"%(mode)s\" mode completed: %(elapsed).02fs. Total "
|
551
|
-
"quarantined: %(quars)d, Total errors: %(errors)d, Total files/sec: "
|
552
|
-
"%(frate).2f, Total bytes/sec: %(brate).2f, Auditing time: %(audit).2f, Rate: "
|
553
|
-
"%(audit_rate).2f"
|
554
|
-
msgstr ""
|
555
|
-
"Nesne denetimi (%(type)s) \"%(mode)s\" kipinde tamamlandı: %(elapsed).02fs. "
|
556
|
-
"Toplam karantina: %(quars)d, Toplam hata: %(errors)d, Toplam dosya/sn: "
|
557
|
-
"%(frate).2f, Toplam bayt/sn: %(brate).2f, Denetleme zamanı: %(audit).2f, "
|
558
|
-
"Oran: %(audit_rate).2f"
|
559
|
-
|
560
|
-
#, python-format
|
561
|
-
msgid "Object audit stats: %s"
|
562
|
-
msgstr "Nesne denetim istatistikleri: %s"
|
563
|
-
|
564
|
-
#, python-format
|
565
|
-
msgid "Object reconstruction complete (once). (%.02f minutes)"
|
566
|
-
msgstr "Nesne yeniden oluşturma tamamlandı (bir kere). (%.02f dakika)"
|
567
|
-
|
568
|
-
#, python-format
|
569
|
-
msgid "Object reconstruction complete. (%.02f minutes)"
|
570
|
-
msgstr "Nesne yeniden oluşturma tamamlandı. (%.02f dakika)"
|
571
|
-
|
572
|
-
#, python-format
|
573
|
-
msgid "Object replication complete (once). (%.02f minutes)"
|
574
|
-
msgstr "Nesne çoğaltma tamamlandı (bir kere). (%.02f dakika)"
|
575
|
-
|
576
|
-
#, python-format
|
577
|
-
msgid "Object replication complete. (%.02f minutes)"
|
578
|
-
msgstr "Nesne çoğaltma tamamlandı. (%.02f dakika)"
|
579
|
-
|
580
|
-
#, python-format
|
581
|
-
msgid "Object servers returned %s mismatched etags"
|
582
|
-
msgstr "Nesne sunucuları %s eşleşmeyen etag döndürdü"
|
583
|
-
|
584
|
-
#, python-format
|
585
|
-
msgid "Object update sweep completed: %.02fs"
|
586
|
-
msgstr "Nesne güncelleme süpürmesi tamamlandı: %.02fs"
|
587
|
-
|
588
|
-
msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
|
589
|
-
msgstr "X-Container-Sync-To'da parametre, sorgular, ve parçalara izin verilmez"
|
590
|
-
|
591
|
-
#, python-format
|
592
|
-
msgid "Partition times: max %(max).4fs, min %(min).4fs, med %(med).4fs"
|
593
|
-
msgstr ""
|
594
|
-
"Bölüm zamanları: azami %(max).4fs, asgari %(min).4fs, ortalama %(med).4fs"
|
595
|
-
|
596
|
-
msgid "Path required in X-Container-Sync-To"
|
597
|
-
msgstr "X-Container-Sync-To'de yol gerekli"
|
598
|
-
|
599
|
-
#, python-format
|
600
|
-
msgid "Problem cleaning up %s"
|
601
|
-
msgstr "%s temizliğinde problem"
|
602
|
-
|
603
|
-
#, python-format
|
604
|
-
msgid "Profiling Error: %s"
|
605
|
-
msgstr "Profilleme Hatası: %s"
|
606
|
-
|
607
|
-
#, python-format
|
608
|
-
msgid "Quarantined %(hsh_path)s to %(quar_path)s because it is not a directory"
|
609
|
-
msgstr "%(hsh_path)s %(quar_path)s karantinasına alındı çünkü bir dizin değil"
|
610
|
-
|
611
|
-
#, python-format
|
612
|
-
msgid ""
|
613
|
-
"Quarantined %(object_path)s to %(quar_path)s because it is not a directory"
|
614
|
-
msgstr ""
|
615
|
-
"Bir dizin olmadığından %(object_path)s %(quar_path)s e karantinaya alındı"
|
616
|
-
|
617
|
-
#, python-format
|
618
|
-
msgid "Quarantining DB %s"
|
619
|
-
msgstr "DB %s karantinaya alınıyor"
|
620
|
-
|
621
|
-
#, python-format
|
622
|
-
msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
|
623
|
-
msgstr ""
|
624
|
-
"Oran sınırı uyku kaydı: %(account)s/%(container)s/%(object)s için %(sleep)s"
|
625
|
-
|
626
|
-
#, python-format
|
627
|
-
msgid "Removed %(remove)d dbs"
|
628
|
-
msgstr "%(remove)d db silindi"
|
629
|
-
|
630
|
-
#, python-format
|
631
|
-
msgid "Removing %s objects"
|
632
|
-
msgstr "%s nesne kaldırılıyor"
|
633
|
-
|
634
|
-
#, python-format
|
635
|
-
msgid "Removing partition: %s"
|
636
|
-
msgstr "Bölüm kaldırılıyor: %s"
|
637
|
-
|
638
|
-
#, python-format
|
639
|
-
msgid "Removing pid file %s with invalid pid"
|
640
|
-
msgstr "Geçersiz pid'e sahip pid dosyası %s siliniyor"
|
641
|
-
|
642
|
-
#, python-format
|
643
|
-
msgid "Removing stale pid file %s"
|
644
|
-
msgstr "Askıdaki pid dosyası siliniyor %s"
|
645
|
-
|
646
|
-
msgid "Replication run OVER"
|
647
|
-
msgstr "Çoğaltma çalışması BİTTİ"
|
648
|
-
|
649
|
-
#, python-format
|
650
|
-
msgid "Returning 497 because of blacklisting: %s"
|
651
|
-
msgstr "Kara listeleme yüzünden 497 döndürülüyor: %s"
|
652
|
-
|
653
|
-
#, python-format
|
654
|
-
msgid ""
|
655
|
-
"Returning 498 for %(meth)s to %(acc)s/%(cont)s/%(obj)s . Ratelimit (Max "
|
656
|
-
"Sleep) %(e)s"
|
657
|
-
msgstr ""
|
658
|
-
"%(acc)s/%(cont)s/%(obj)s ye %(meth)s için 498 döndürülüyor. Oran sınırı "
|
659
|
-
"(Azami uyku) %(e)s"
|
660
|
-
|
661
|
-
msgid "Ring change detected. Aborting current reconstruction pass."
|
662
|
-
msgstr ""
|
663
|
-
"Zincir değişikliği algılandı. Mevcut yeniden oluşturma geçişi iptal ediliyor."
|
664
|
-
|
665
|
-
msgid "Ring change detected. Aborting current replication pass."
|
666
|
-
msgstr "Zincir değişimi algılandı. Mevcut çoğaltma geçişi iptal ediliyor."
|
667
|
-
|
668
|
-
#, python-format
|
669
|
-
msgid "Running %s once"
|
670
|
-
msgstr "%s bir kere çalıştırılıyor"
|
671
|
-
|
672
|
-
msgid "Running object reconstructor in script mode."
|
673
|
-
msgstr "Nesne yeniden oluşturma betik kipinde çalıştırılıyor."
|
674
|
-
|
675
|
-
msgid "Running object replicator in script mode."
|
676
|
-
msgstr "Nesne çoğaltıcı betik kipinde çalıştırılıyor."
|
677
|
-
|
678
|
-
#, python-format
|
679
|
-
msgid ""
|
680
|
-
"Since %(time)s: %(sync)s synced [%(delete)s deletes, %(put)s puts], %(skip)s "
|
681
|
-
"skipped, %(fail)s failed"
|
682
|
-
msgstr ""
|
683
|
-
"%(time)s den beri: %(sync)s eşzamanlandı [%(delete)s silme, %(put)s koyma], "
|
684
|
-
"%(skip)s atlama, %(fail)s başarısız"
|
685
|
-
|
686
|
-
#, python-format
|
687
|
-
msgid ""
|
688
|
-
"Since %(time)s: Account audits: %(passed)s passed audit,%(failed)s failed "
|
689
|
-
"audit"
|
690
|
-
msgstr ""
|
691
|
-
"%(time)s den beri: Hesap denetimleri: %(passed)s denetimi geçti, %(failed)s "
|
692
|
-
"denetimi geçemedi"
|
693
|
-
|
694
|
-
#, python-format
|
695
|
-
msgid ""
|
696
|
-
"Since %(time)s: Container audits: %(pass)s passed audit, %(fail)s failed "
|
697
|
-
"audit"
|
698
|
-
msgstr ""
|
699
|
-
"%(time)s den beri: Kap denetimleri: %(pass)s denetimi geçti, %(fail)s "
|
700
|
-
"denetimde başarısız"
|
701
|
-
|
702
|
-
#, python-format
|
703
|
-
msgid "Skipping %s as it is not mounted"
|
704
|
-
msgstr "Bağlı olmadığından %s atlanıyor"
|
705
|
-
|
706
|
-
#, python-format
|
707
|
-
msgid "Starting %s"
|
708
|
-
msgstr "%s başlatılıyor"
|
709
|
-
|
710
|
-
msgid "Starting object reconstruction pass."
|
711
|
-
msgstr "Nesne yeniden oluşturma geçişi başlatılıyor."
|
712
|
-
|
713
|
-
msgid "Starting object reconstructor in daemon mode."
|
714
|
-
msgstr "Nesne yeniden oluşturma artalan işlemi kipinde başlatılıyor."
|
715
|
-
|
716
|
-
msgid "Starting object replication pass."
|
717
|
-
msgstr "Nesne çoğaltma geçişi başlatılıyor."
|
718
|
-
|
719
|
-
msgid "Starting object replicator in daemon mode."
|
720
|
-
msgstr "Nesne çoğaltıcı artalan işlemi kipinde başlatılıyor."
|
721
|
-
|
722
|
-
#, python-format
|
723
|
-
msgid "Successful rsync of %(src)s at %(dst)s (%(time).03f)"
|
724
|
-
msgstr "%(dst)s (%(time).03f) de %(src)s başarılı rsync'i"
|
725
|
-
|
726
|
-
msgid "The file type are forbidden to access!"
|
727
|
-
msgstr "Dosya türüne erişim yasaklanmış!"
|
728
|
-
|
729
|
-
#, python-format
|
730
|
-
msgid ""
|
731
|
-
"The total %(key)s for the container (%(total)s) does not match the sum of "
|
732
|
-
"%(key)s across policies (%(sum)s)"
|
733
|
-
msgstr ""
|
734
|
-
"(%(total)s) kabı için %(key)s toplamı ilkeler arasındaki %(key)s toplamıyla "
|
735
|
-
"eşleşmiyor (%(sum)s)"
|
736
|
-
|
737
|
-
#, python-format
|
738
|
-
msgid "Trying to %(method)s %(path)s"
|
739
|
-
msgstr "%(method)s %(path)s deneniyor"
|
740
|
-
|
741
|
-
#, python-format
|
742
|
-
msgid "Trying to GET %(full_path)s"
|
743
|
-
msgstr "%(full_path)s GET deneniyor"
|
744
|
-
|
745
|
-
msgid "Trying to read during GET"
|
746
|
-
msgstr "GET sırasında okuma deneniyor"
|
747
|
-
|
748
|
-
msgid "Trying to send to client"
|
749
|
-
msgstr "İstemciye gönderilmeye çalışılıyor"
|
750
|
-
|
751
|
-
#, python-format
|
752
|
-
msgid "Trying to sync suffixes with %s"
|
753
|
-
msgstr "%s e sahip son ekler eşzamanlanmaya çalışılıyor"
|
754
|
-
|
755
|
-
#, python-format
|
756
|
-
msgid "Trying to write to %s"
|
757
|
-
msgstr "%s'e yazmaya çalışılıyor"
|
758
|
-
|
759
|
-
msgid "UNCAUGHT EXCEPTION"
|
760
|
-
msgstr "YAKALANMAYAN İSTİSNA"
|
761
|
-
|
762
|
-
#, python-format
|
763
|
-
msgid "Unable to locate %s in libc. Leaving as a no-op."
|
764
|
-
msgstr "%s libc'de bulunamadı. No-op olarak çıkılıyor."
|
765
|
-
|
766
|
-
#, python-format
|
767
|
-
msgid "Unable to locate config for %s"
|
768
|
-
msgstr "%s için yapılandırma bulunamıyor"
|
769
|
-
|
770
|
-
msgid ""
|
771
|
-
"Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
|
772
|
-
msgstr ""
|
773
|
-
"fallocate, posix_fallocate libc'de bulunamadı. No-op olarak çıkılıyor."
|
774
|
-
|
775
|
-
#, python-format
|
776
|
-
msgid "Unable to read config from %s"
|
777
|
-
msgstr "%s'den yapılandırma okunamıyor"
|
778
|
-
|
779
|
-
#, python-format
|
780
|
-
msgid "Unauth %(sync_from)r => %(sync_to)r"
|
781
|
-
msgstr "%(sync_from)r => %(sync_to)r yetki al"
|
782
|
-
|
783
|
-
msgid "Unhandled exception"
|
784
|
-
msgstr "Yakalanmamış istisna"
|
785
|
-
|
786
|
-
#, python-format
|
787
|
-
msgid "Unknown exception trying to GET: %(account)r %(container)r %(object)r"
|
788
|
-
msgstr "GET sırasında bilinmeyen istisna: %(account)r %(container)r %(object)r"
|
789
|
-
|
790
|
-
#, python-format
|
791
|
-
msgid "Update report failed for %(container)s %(dbfile)s"
|
792
|
-
msgstr "%(container)s %(dbfile)s için güncelleme raporu başarısız"
|
793
|
-
|
794
|
-
#, python-format
|
795
|
-
msgid "Update report sent for %(container)s %(dbfile)s"
|
796
|
-
msgstr "%(container)s %(dbfile)s için güncelleme raporu gönderildi"
|
797
|
-
|
798
|
-
msgid ""
|
799
|
-
"WARNING: SSL should only be enabled for testing purposes. Use external SSL "
|
800
|
-
"termination for a production deployment."
|
801
|
-
msgstr ""
|
802
|
-
"UYARI: SSL yalnızca test amaçlı etkinleştirilmelidir. Üretim için kurulumda "
|
803
|
-
"harici SSL sonlandırma kullanın."
|
804
|
-
|
805
|
-
msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
|
806
|
-
msgstr "UYARI: Dosya göstericisi sınırı değiştirilemiyor. Root değil misiniz?"
|
807
|
-
|
808
|
-
msgid "WARNING: Unable to modify max process limit. Running as non-root?"
|
809
|
-
msgstr "UYARI: Azami süreç limiti değiştirilemiyor. Root değil misiniz?"
|
810
|
-
|
811
|
-
msgid "WARNING: Unable to modify memory limit. Running as non-root?"
|
812
|
-
msgstr "UYARI: Hafıza sınırı değiştirilemiyor. Root değil misiniz?"
|
813
|
-
|
814
|
-
msgid "Warning: Cannot ratelimit without a memcached client"
|
815
|
-
msgstr "Uyarı: Memcached istemcisi olmadan oran sınırlama yapılamaz"
|
816
|
-
|
817
|
-
#, python-format
|
818
|
-
msgid "method %s is not allowed."
|
819
|
-
msgstr "%s metoduna izin verilmez."
|
820
|
-
|
821
|
-
msgid "no log file found"
|
822
|
-
msgstr "kayıt dosyası bulunamadı"
|
823
|
-
|
824
|
-
msgid "odfpy not installed."
|
825
|
-
msgstr "odfpy kurulu değil."
|
826
|
-
|
827
|
-
#, python-format
|
828
|
-
msgid "plotting results failed due to %s"
|
829
|
-
msgstr "çizdirme sonuçlaru %s sebebiyle başarısız"
|
830
|
-
|
831
|
-
msgid "python-matplotlib not installed."
|
832
|
-
msgstr "python-matplotlib kurulu değil."
|