swift 2.31.1__py2.py3-none-any.whl → 2.32.1__py2.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 (104) hide show
  1. swift/cli/info.py +9 -2
  2. swift/cli/ringbuilder.py +5 -1
  3. swift/common/container_sync_realms.py +6 -7
  4. swift/common/daemon.py +7 -3
  5. swift/common/db.py +22 -7
  6. swift/common/db_replicator.py +19 -20
  7. swift/common/direct_client.py +63 -14
  8. swift/common/internal_client.py +24 -3
  9. swift/common/manager.py +43 -44
  10. swift/common/memcached.py +168 -74
  11. swift/common/middleware/__init__.py +4 -0
  12. swift/common/middleware/account_quotas.py +98 -40
  13. swift/common/middleware/backend_ratelimit.py +6 -4
  14. swift/common/middleware/crossdomain.py +21 -8
  15. swift/common/middleware/listing_formats.py +26 -38
  16. swift/common/middleware/proxy_logging.py +12 -9
  17. swift/common/middleware/s3api/controllers/bucket.py +8 -2
  18. swift/common/middleware/s3api/s3api.py +9 -4
  19. swift/common/middleware/s3api/s3request.py +32 -24
  20. swift/common/middleware/s3api/s3response.py +10 -1
  21. swift/common/middleware/tempauth.py +9 -10
  22. swift/common/middleware/versioned_writes/__init__.py +0 -3
  23. swift/common/middleware/versioned_writes/object_versioning.py +22 -5
  24. swift/common/middleware/x_profile/html_viewer.py +1 -1
  25. swift/common/middleware/xprofile.py +5 -0
  26. swift/common/request_helpers.py +1 -2
  27. swift/common/ring/ring.py +22 -19
  28. swift/common/swob.py +2 -1
  29. swift/common/{utils.py → utils/__init__.py} +610 -1146
  30. swift/common/utils/ipaddrs.py +256 -0
  31. swift/common/utils/libc.py +345 -0
  32. swift/common/utils/timestamp.py +399 -0
  33. swift/common/wsgi.py +70 -39
  34. swift/container/backend.py +106 -38
  35. swift/container/server.py +11 -2
  36. swift/container/sharder.py +34 -15
  37. swift/locale/de/LC_MESSAGES/swift.po +1 -320
  38. swift/locale/en_GB/LC_MESSAGES/swift.po +1 -347
  39. swift/locale/es/LC_MESSAGES/swift.po +1 -279
  40. swift/locale/fr/LC_MESSAGES/swift.po +1 -209
  41. swift/locale/it/LC_MESSAGES/swift.po +1 -207
  42. swift/locale/ja/LC_MESSAGES/swift.po +2 -278
  43. swift/locale/ko_KR/LC_MESSAGES/swift.po +3 -303
  44. swift/locale/pt_BR/LC_MESSAGES/swift.po +1 -204
  45. swift/locale/ru/LC_MESSAGES/swift.po +1 -203
  46. swift/locale/tr_TR/LC_MESSAGES/swift.po +1 -192
  47. swift/locale/zh_CN/LC_MESSAGES/swift.po +1 -192
  48. swift/locale/zh_TW/LC_MESSAGES/swift.po +1 -193
  49. swift/obj/diskfile.py +19 -6
  50. swift/obj/server.py +20 -6
  51. swift/obj/ssync_receiver.py +19 -9
  52. swift/obj/ssync_sender.py +10 -10
  53. swift/proxy/controllers/account.py +7 -7
  54. swift/proxy/controllers/base.py +374 -366
  55. swift/proxy/controllers/container.py +112 -53
  56. swift/proxy/controllers/obj.py +254 -390
  57. swift/proxy/server.py +3 -8
  58. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-server +1 -1
  59. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-server +1 -1
  60. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-drive-audit +45 -14
  61. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-server +1 -1
  62. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-proxy-server +1 -1
  63. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/AUTHORS +4 -0
  64. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/METADATA +32 -35
  65. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/RECORD +103 -100
  66. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/WHEEL +1 -1
  67. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/entry_points.txt +0 -1
  68. swift-2.32.1.dist-info/pbr.json +1 -0
  69. swift-2.31.1.dist-info/pbr.json +0 -1
  70. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-audit +0 -0
  71. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-auditor +0 -0
  72. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-info +0 -0
  73. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-reaper +0 -0
  74. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-account-replicator +0 -0
  75. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-config +0 -0
  76. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-auditor +0 -0
  77. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-info +0 -0
  78. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-reconciler +0 -0
  79. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-replicator +0 -0
  80. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-sharder +0 -0
  81. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-sync +0 -0
  82. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-container-updater +0 -0
  83. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-dispersion-populate +0 -0
  84. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-dispersion-report +0 -0
  85. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-form-signature +0 -0
  86. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-get-nodes +0 -0
  87. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-init +0 -0
  88. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-auditor +0 -0
  89. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-expirer +0 -0
  90. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-info +0 -0
  91. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-reconstructor +0 -0
  92. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-relinker +0 -0
  93. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-replicator +0 -0
  94. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-object-updater +0 -0
  95. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-oldies +0 -0
  96. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-orphans +0 -0
  97. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-recon +0 -0
  98. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-recon-cron +0 -0
  99. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-reconciler-enqueue +0 -0
  100. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-ring-builder +0 -0
  101. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-ring-builder-analyzer +0 -0
  102. {swift-2.31.1.data → swift-2.32.1.data}/scripts/swift-ring-composer +0 -0
  103. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/LICENSE +0 -0
  104. {swift-2.31.1.dist-info → swift-2.32.1.dist-info}/top_level.txt +0 -0
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: swift VERSION\n"
10
10
  "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
11
- "POT-Creation-Date: 2022-05-27 18:57+0000\n"
11
+ "POT-Creation-Date: 2023-06-27 13:31+0000\n"
12
12
  "MIME-Version: 1.0\n"
13
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -22,41 +22,6 @@ msgstr ""
22
22
  "X-Generator: Zanata 4.3.3\n"
23
23
  "Language-Team: Russian\n"
24
24
 
25
- msgid ""
26
- "\n"
27
- "user quit"
28
- msgstr ""
29
- "\n"
30
- "Завершение работы пользователя"
31
-
32
- #, python-format
33
- msgid "%(success)s successes, %(failure)s failures"
34
- msgstr "%(success)s успешно, %(failure)s с ошибками"
35
-
36
- #, python-format
37
- msgid "%s already started..."
38
- msgstr "%s уже запущен..."
39
-
40
- #, python-format
41
- msgid "%s does not exist"
42
- msgstr "%s не существует"
43
-
44
- #, python-format
45
- msgid "%s: Connection reset by peer"
46
- msgstr "%s: соединение сброшено на другой стороне"
47
-
48
- #, python-format
49
- msgid ""
50
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
51
- msgstr ""
52
- "Попытка репликации %(count)d баз данных за %(time).5f секунд (%(rate).5f/s)"
53
-
54
- msgid "Beginning replication run"
55
- msgstr "Запуск репликации"
56
-
57
- msgid "Broker error trying to rollback locked connection"
58
- msgstr "Ошибка посредника при попытке отката заблокированного соединения"
59
-
60
25
  #, python-format
61
26
  msgid "Can not access the file %s."
62
27
  msgstr "Отсутствует доступ к файлу %s."
@@ -65,45 +30,10 @@ msgstr "Отсутствует доступ к файлу %s."
65
30
  msgid "Can not load profile data from %s."
66
31
  msgstr "Не удается загрузить данные профайла из %s."
67
32
 
68
- msgid "Connection refused"
69
- msgstr "Соединение отклонено"
70
-
71
- msgid "Connection timeout"
72
- msgstr "Тайм-аут соединения"
73
-
74
33
  #, python-format
75
34
  msgid "Data download error: %s"
76
35
  msgstr "Ошибка загрузки данных: %s"
77
36
 
78
- msgid "ERROR Failed to get my own IPs?"
79
- msgstr "Ошибка: не удалось получить собственные IP-адреса?"
80
-
81
- #, python-format
82
- msgid "ERROR Remote drive not mounted %s"
83
- msgstr "Ошибка: удаленный накопитель не смонтирован %s"
84
-
85
- msgid "ERROR auditing"
86
- msgstr "ОШИБКА контроля"
87
-
88
- #, python-format
89
- msgid "ERROR reading HTTP response from %s"
90
- msgstr "Ошибка чтения ответа HTTP из %s"
91
-
92
- #, python-format
93
- msgid "ERROR reading db %s"
94
- msgstr "Ошибка чтения базы данных %s"
95
-
96
- #, python-format
97
- msgid "ERROR rsync failed with %(code)s: %(args)s"
98
- msgstr "Ошибка: команда rsync не выполнена с кодом %(code)s: %(args)s"
99
-
100
- #, python-format
101
- msgid "ERROR syncing %(file)s with node %(node)s"
102
- msgstr "Ошибка синхронизации %(file)s с узлом %(node)s"
103
-
104
- msgid "ERROR trying to replicate"
105
- msgstr "Ошибка при попытке репликации"
106
-
107
37
  msgid "Error listing devices"
108
38
  msgstr "Ошибка при выводе списка устройств"
109
39
 
@@ -129,163 +59,31 @@ msgstr "Ошибка при получении данных recon"
129
59
  msgid "Error: An error occurred"
130
60
  msgstr "Ошибка: произошла ошибка"
131
61
 
132
- msgid "Error: missing config path argument"
133
- msgstr "Ошибка: отсутствует аргумент пути конфигурации"
134
-
135
- #, python-format
136
- msgid "Error: unable to locate %s"
137
- msgstr "Ошибка: не удалось найти %s"
138
-
139
62
  #, python-format
140
63
  msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
141
64
  msgstr "Следующая цепочка CNAME для %(given_domain)s в %(found_domain)s"
142
65
 
143
- msgid "Found configs:"
144
- msgstr "Обнаружены конфигурации:"
145
-
146
- msgid "Host unreachable"
147
- msgstr "Хост недоступен"
148
-
149
- #, python-format
150
- msgid "Invalid X-Container-Sync-To format %r"
151
- msgstr "Недопустимый формат X-Container-Sync-To %r"
152
-
153
- #, python-format
154
- msgid "Invalid host %r in X-Container-Sync-To"
155
- msgstr "Недопустимый хост %r в X-Container-Sync-To"
156
-
157
- #, python-format
158
- msgid "Invalid pending entry %(file)s: %(entry)s"
159
- msgstr "Недопустимая ожидающая запись %(file)s: %(entry)s"
160
-
161
- #, python-format
162
- msgid ""
163
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
164
- "\"https\"."
165
- msgstr ""
166
- "Недопустимая схема %r в X-Container-Sync-To, допустимые значения: \"//\", "
167
- "\"http\" или \"https\"."
168
-
169
66
  #, python-format
170
67
  msgid "Mapped %(given_domain)s to %(found_domain)s"
171
68
  msgstr "Преобразовано %(given_domain)s в %(found_domain)s"
172
69
 
173
- #, python-format
174
- msgid "No %s running"
175
- msgstr "%s не выполняется"
176
-
177
- #, python-format
178
- msgid "No permission to signal PID %d"
179
- msgstr "Нет прав доступа для отправки сигнала в PID %d"
180
-
181
- #, python-format
182
- msgid "No policy with index %s"
183
- msgstr "Не найдено стратегии с индексом %s"
184
-
185
- #, python-format
186
- msgid "No realm key for %r"
187
- msgstr "Отсутствует ключ области для %r"
188
-
189
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
190
- msgstr "В X-Container-Sync-To не разрешены параметры, запросы и фрагменты"
191
-
192
- msgid "Path required in X-Container-Sync-To"
193
- msgstr "Требуется путь в X-Container-Sync-To"
194
-
195
70
  #, python-format
196
71
  msgid "Profiling Error: %s"
197
72
  msgstr "Ошибка профилирования: %s"
198
73
 
199
- #, python-format
200
- msgid "Quarantining DB %s"
201
- msgstr "БД %s помещена в карантин"
202
-
203
74
  #, python-format
204
75
  msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
205
76
  msgstr ""
206
77
  "Протокол тайм-аута при ограничении скорости %(sleep)s для %(account)s/"
207
78
  "%(container)s/%(object)s"
208
79
 
209
- #, python-format
210
- msgid "Removed %(remove)d dbs"
211
- msgstr "Удалено баз данных: %(remove)d"
212
-
213
- #, python-format
214
- msgid "Removing pid file %(pid_file)s with wrong pid %(pid)d"
215
- msgstr "Удаление файла pid %(pid_file)s с ошибочным pid %(pid)d"
216
-
217
- #, python-format
218
- msgid "Removing pid file %s with invalid pid"
219
- msgstr "Удаление pid файла %s с неверным pid-ом"
220
-
221
- #, python-format
222
- msgid "Removing stale pid file %s"
223
- msgstr "Удаление устаревшего файла pid %s"
224
-
225
- msgid "Replication run OVER"
226
- msgstr "Репликация запущена поверх"
227
-
228
80
  #, python-format
229
81
  msgid "Returning 497 because of blacklisting: %s"
230
82
  msgstr "Возвращено 497 из-за черного списка: %s"
231
83
 
232
- #, python-format
233
- msgid "Running %s once"
234
- msgstr "Однократное выполнение %s"
235
-
236
- #, python-format
237
- msgid "Skipping %s as it is not mounted"
238
- msgstr "%s будет пропущен, так как он не смонтирован"
239
-
240
- #, python-format
241
- msgid "Starting %s"
242
- msgstr "Запуск %s"
243
-
244
84
  msgid "The file type are forbidden to access!"
245
85
  msgstr "Запрещен доступ к этому типу файла!"
246
86
 
247
- msgid "UNCAUGHT EXCEPTION"
248
- msgstr "Необрабатываемая исключительная ситуация"
249
-
250
- #, python-format
251
- msgid "Unable to locate %s in libc. Leaving as a no-op."
252
- msgstr "Не удалось найти %s в libc. Оставлено как no-op."
253
-
254
- #, python-format
255
- msgid "Unable to locate config for %s"
256
- msgstr "Не удалось найти конфигурационный файл для %s"
257
-
258
- msgid ""
259
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
260
- msgstr ""
261
- "Не удалось найти fallocate, posix_fallocate в libc. Оставлено как no-op."
262
-
263
- #, python-format
264
- msgid "Unable to read config from %s"
265
- msgstr "Не удалось прочитать конфигурацию из %s"
266
-
267
- msgid ""
268
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
269
- "termination for a production deployment."
270
- msgstr ""
271
- "Предупреждение: SSL должен быть включен только в целях тестирования. "
272
- "Используйте внешнее завершение SSL для развертывания в рабочем режиме."
273
-
274
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
275
- msgstr ""
276
- "Предупреждение: не удалось изменить предельное значение для дескриптора "
277
- "файла. Запущен без прав доступа root?"
278
-
279
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
280
- msgstr ""
281
- "Предупреждение: не удалось изменить предельное значение для числа процессов. "
282
- "Запущен без прав доступа root?"
283
-
284
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
285
- msgstr ""
286
- "Предупреждение: не удалось изменить предельное значение для памяти. Запущен "
287
- "без прав доступа root?"
288
-
289
87
  msgid "Warning: Cannot ratelimit without a memcached client"
290
88
  msgstr ""
291
89
  "Предупреждение: не удается ограничить скорость без клиента с кэшированием "
@@ -9,7 +9,7 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: swift VERSION\n"
11
11
  "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n"
12
- "POT-Creation-Date: 2022-05-27 18:57+0000\n"
12
+ "POT-Creation-Date: 2023-06-27 13:31+0000\n"
13
13
  "MIME-Version: 1.0\n"
14
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
15
  "Content-Transfer-Encoding: 8bit\n"
@@ -21,40 +21,6 @@ msgstr ""
21
21
  "X-Generator: Zanata 4.3.3\n"
22
22
  "Language-Team: Turkish (Turkey)\n"
23
23
 
24
- msgid ""
25
- "\n"
26
- "user quit"
27
- msgstr ""
28
- "\n"
29
- "kullanıcı çıktı"
30
-
31
- #, python-format
32
- msgid "%(success)s successes, %(failure)s failures"
33
- msgstr "%(success)s başarı, %(failure)s başarısızlık"
34
-
35
- #, python-format
36
- msgid "%s already started..."
37
- msgstr "%s zaten başlatıldı..."
38
-
39
- #, python-format
40
- msgid "%s does not exist"
41
- msgstr "%s mevcut değil"
42
-
43
- #, python-format
44
- msgid "%s: Connection reset by peer"
45
- msgstr "%s: Bağlantı eş tarafından sıfırlandı"
46
-
47
- #, python-format
48
- msgid ""
49
- "Attempted to replicate %(count)d dbs in %(time).5f seconds (%(rate).5f/s)"
50
- msgstr "%(count)d db %(time).5f saniyede çoğaltılmaya çalışıldı (%(rate).5f/s)"
51
-
52
- msgid "Beginning replication run"
53
- msgstr "Çoğaltmanın çalıştırılmasına başlanıyor"
54
-
55
- msgid "Broker error trying to rollback locked connection"
56
- msgstr "Kilitli bağlantı geri alınmaya çalışılırken vekil hatası"
57
-
58
24
  #, python-format
59
25
  msgid "Can not access the file %s."
60
26
  msgstr "%s dosyasına erişilemiyor."
@@ -63,45 +29,10 @@ msgstr "%s dosyasına erişilemiyor."
63
29
  msgid "Can not load profile data from %s."
64
30
  msgstr "%s'den profil verisi yüklenemiyor."
65
31
 
66
- msgid "Connection refused"
67
- msgstr "Bağlantı reddedildi"
68
-
69
- msgid "Connection timeout"
70
- msgstr "Bağlantı zaman aşımına uğradı"
71
-
72
32
  #, python-format
73
33
  msgid "Data download error: %s"
74
34
  msgstr "Veri indirme hatası: %s"
75
35
 
76
- msgid "ERROR Failed to get my own IPs?"
77
- msgstr "Kendi IP'lerimi alırken HATA?"
78
-
79
- #, python-format
80
- msgid "ERROR Remote drive not mounted %s"
81
- msgstr "HATA Uzak sürücü bağlı değil %s"
82
-
83
- msgid "ERROR auditing"
84
- msgstr "denetlemede HATA"
85
-
86
- #, python-format
87
- msgid "ERROR reading HTTP response from %s"
88
- msgstr "%s'den HTTP yanıtı okumada HATA"
89
-
90
- #, python-format
91
- msgid "ERROR reading db %s"
92
- msgstr "%s veri tabanı okumada HATA"
93
-
94
- #, python-format
95
- msgid "ERROR rsync failed with %(code)s: %(args)s"
96
- msgstr "HATA rsync %(code)s ile başarısız oldu: %(args)s"
97
-
98
- #, python-format
99
- msgid "ERROR syncing %(file)s with node %(node)s"
100
- msgstr "%(node)s düğümlü %(file)s eş zamanlamada HATA"
101
-
102
- msgid "ERROR trying to replicate"
103
- msgstr "Çoğaltmaya çalışmada HATA"
104
-
105
36
  msgid "Error listing devices"
106
37
  msgstr "Aygıtları listelemede hata"
107
38
 
@@ -127,152 +58,30 @@ msgstr "Recon verisini almada hata"
127
58
  msgid "Error: An error occurred"
128
59
  msgstr "Hata: Bir hata oluştu"
129
60
 
130
- msgid "Error: missing config path argument"
131
- msgstr "Hata: yapılandırma yolu değişkeni eksik"
132
-
133
- #, python-format
134
- msgid "Error: unable to locate %s"
135
- msgstr "Hata: %s bulunamıyor"
136
-
137
61
  #, python-format
138
62
  msgid "Following CNAME chain for %(given_domain)s to %(found_domain)s"
139
63
  msgstr "%(given_domain)s den %(found_domain)s e CNAME zinciri takip ediliyor"
140
64
 
141
- msgid "Found configs:"
142
- msgstr "Yapılandırmalar bulundu:"
143
-
144
- msgid "Host unreachable"
145
- msgstr "İstemci erişilebilir değil"
146
-
147
- #, python-format
148
- msgid "Invalid X-Container-Sync-To format %r"
149
- msgstr "Geçersix X-Container-Sync-To biçimi %r"
150
-
151
- #, python-format
152
- msgid "Invalid host %r in X-Container-Sync-To"
153
- msgstr "X-Container-Sync-To'da geçersiz istemci %r"
154
-
155
- #, python-format
156
- msgid "Invalid pending entry %(file)s: %(entry)s"
157
- msgstr "Geçersiz bekleyen girdi %(file)s: %(entry)s"
158
-
159
- #, python-format
160
- msgid ""
161
- "Invalid scheme %r in X-Container-Sync-To, must be \"//\", \"http\", or "
162
- "\"https\"."
163
- msgstr ""
164
- "X-Container-Sync-To'da geçersiz şema %r, \"//\", \"http\", veya \"https\" "
165
- "olmalı."
166
-
167
65
  #, python-format
168
66
  msgid "Mapped %(given_domain)s to %(found_domain)s"
169
67
  msgstr "%(given_domain)s %(found_domain)s eşleştirildi"
170
68
 
171
- #, python-format
172
- msgid "No %s running"
173
- msgstr "Çalışan %s yok"
174
-
175
- #, python-format
176
- msgid "No permission to signal PID %d"
177
- msgstr "%d PID'ine sinyalleme izni yok"
178
-
179
- #, python-format
180
- msgid "No policy with index %s"
181
- msgstr "%s indisine sahip ilke yok"
182
-
183
- #, python-format
184
- msgid "No realm key for %r"
185
- msgstr "%r için realm anahtarı yok"
186
-
187
- msgid "Params, queries, and fragments not allowed in X-Container-Sync-To"
188
- msgstr "X-Container-Sync-To'da parametre, sorgular, ve parçalara izin verilmez"
189
-
190
- msgid "Path required in X-Container-Sync-To"
191
- msgstr "X-Container-Sync-To'de yol gerekli"
192
-
193
69
  #, python-format
194
70
  msgid "Profiling Error: %s"
195
71
  msgstr "Profilleme Hatası: %s"
196
72
 
197
- #, python-format
198
- msgid "Quarantining DB %s"
199
- msgstr "DB %s karantinaya alınıyor"
200
-
201
73
  #, python-format
202
74
  msgid "Ratelimit sleep log: %(sleep)s for %(account)s/%(container)s/%(object)s"
203
75
  msgstr ""
204
76
  "Oran sınırı uyku kaydı: %(account)s/%(container)s/%(object)s için %(sleep)s"
205
77
 
206
- #, python-format
207
- msgid "Removed %(remove)d dbs"
208
- msgstr "%(remove)d db silindi"
209
-
210
- #, python-format
211
- msgid "Removing pid file %s with invalid pid"
212
- msgstr "Geçersiz pid'e sahip pid dosyası %s siliniyor"
213
-
214
- #, python-format
215
- msgid "Removing stale pid file %s"
216
- msgstr "Askıdaki pid dosyası siliniyor %s"
217
-
218
- msgid "Replication run OVER"
219
- msgstr "Çoğaltma çalışması BİTTİ"
220
-
221
78
  #, python-format
222
79
  msgid "Returning 497 because of blacklisting: %s"
223
80
  msgstr "Kara listeleme yüzünden 497 döndürülüyor: %s"
224
81
 
225
- #, python-format
226
- msgid "Running %s once"
227
- msgstr "%s bir kere çalıştırılıyor"
228
-
229
- #, python-format
230
- msgid "Skipping %s as it is not mounted"
231
- msgstr "Bağlı olmadığından %s atlanıyor"
232
-
233
- #, python-format
234
- msgid "Starting %s"
235
- msgstr "%s başlatılıyor"
236
-
237
82
  msgid "The file type are forbidden to access!"
238
83
  msgstr "Dosya türüne erişim yasaklanmış!"
239
84
 
240
- msgid "UNCAUGHT EXCEPTION"
241
- msgstr "YAKALANMAYAN İSTİSNA"
242
-
243
- #, python-format
244
- msgid "Unable to locate %s in libc. Leaving as a no-op."
245
- msgstr "%s libc'de bulunamadı. No-op olarak çıkılıyor."
246
-
247
- #, python-format
248
- msgid "Unable to locate config for %s"
249
- msgstr "%s için yapılandırma bulunamıyor"
250
-
251
- msgid ""
252
- "Unable to locate fallocate, posix_fallocate in libc. Leaving as a no-op."
253
- msgstr ""
254
- "fallocate, posix_fallocate libc'de bulunamadı. No-op olarak çıkılıyor."
255
-
256
- #, python-format
257
- msgid "Unable to read config from %s"
258
- msgstr "%s'den yapılandırma okunamıyor"
259
-
260
- msgid ""
261
- "WARNING: SSL should only be enabled for testing purposes. Use external SSL "
262
- "termination for a production deployment."
263
- msgstr ""
264
- "UYARI: SSL yalnızca test amaçlı etkinleştirilmelidir. Üretim için kurulumda "
265
- "harici SSL sonlandırma kullanın."
266
-
267
- msgid "WARNING: Unable to modify file descriptor limit. Running as non-root?"
268
- msgstr "UYARI: Dosya göstericisi sınırı değiştirilemiyor. Root değil misiniz?"
269
-
270
- msgid "WARNING: Unable to modify max process limit. Running as non-root?"
271
- msgstr "UYARI: Azami süreç limiti değiştirilemiyor. Root değil misiniz?"
272
-
273
- msgid "WARNING: Unable to modify memory limit. Running as non-root?"
274
- msgstr "UYARI: Hafıza sınırı değiştirilemiyor. Root değil misiniz?"
275
-
276
85
  msgid "Warning: Cannot ratelimit without a memcached client"
277
86
  msgstr "Uyarı: Memcached istemcisi olmadan oran sınırlama yapılamaz"
278
87