pgbus 0.2.7 → 0.2.8
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.
- checksums.yaml +4 -4
- data/app/controllers/pgbus/queues_controller.rb +16 -0
- data/app/views/layouts/pgbus/application.html.erb +15 -9
- data/app/views/pgbus/jobs/_enqueued_table.html.erb +10 -0
- data/app/views/pgbus/queues/show.html.erb +12 -1
- data/config/locales/da.yml +13 -0
- data/config/locales/de.yml +13 -0
- data/config/locales/en.yml +13 -0
- data/config/locales/es.yml +13 -0
- data/config/locales/fi.yml +13 -0
- data/config/locales/fr.yml +13 -0
- data/config/locales/it.yml +13 -0
- data/config/locales/ja.yml +13 -0
- data/config/locales/nb.yml +13 -0
- data/config/locales/nl.yml +13 -0
- data/config/locales/pt.yml +13 -0
- data/config/locales/sv.yml +13 -0
- data/config/routes.rb +2 -0
- data/lib/pgbus/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef44191dc6dab011a25d7ab69e0a8ad9ab5432b48301ba6d4e54f65afbb52c61
|
|
4
|
+
data.tar.gz: c75c9857c9889b206b09974d920fee96023ba1b1280e7d1734ff833095833c84
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 686c4aa7e111ce5d1a82b82d135bf37da2f8321142f8d09b522c06800e5a4a386b259ddac62e6666043b363a44345b57c444bd0656c6010f39e12ad3722a50a0
|
|
7
|
+
data.tar.gz: ade1d916918327f0680d4d029444da9f91d8da86e8210497c59e0bf5a0962bdad370eff8dbee3dacbd1207b040c9c3f8c80c28c80abd507b9a4122012078a949
|
|
@@ -33,5 +33,21 @@ module Pgbus
|
|
|
33
33
|
data_source.resume_queue(params[:name])
|
|
34
34
|
redirect_to queue_path(name: params[:name]), notice: "Queue resumed."
|
|
35
35
|
end
|
|
36
|
+
|
|
37
|
+
def retry_message
|
|
38
|
+
if data_source.retry_job(params[:name], params[:msg_id])
|
|
39
|
+
redirect_back fallback_location: queue_path(name: params[:name]), notice: t("pgbus.queues.show.message_retried")
|
|
40
|
+
else
|
|
41
|
+
redirect_back fallback_location: queue_path(name: params[:name]), alert: t("pgbus.queues.show.message_retry_failed")
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def discard_message
|
|
46
|
+
if data_source.discard_job(params[:name], params[:msg_id])
|
|
47
|
+
redirect_back fallback_location: queue_path(name: params[:name]), notice: t("pgbus.queues.show.message_discarded")
|
|
48
|
+
else
|
|
49
|
+
redirect_back fallback_location: queue_path(name: params[:name]), alert: t("pgbus.queues.show.message_discard_failed")
|
|
50
|
+
end
|
|
51
|
+
end
|
|
36
52
|
end
|
|
37
53
|
end
|
|
@@ -140,11 +140,17 @@
|
|
|
140
140
|
}, 5000);
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
// Render flash toasts from <template> tags
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
143
|
+
// Render flash toasts from <template> tags.
|
|
144
|
+
// Must run on turbo:load as well — module scripts only execute once,
|
|
145
|
+
// but Turbo Drive replaces the body on navigation.
|
|
146
|
+
function renderFlashToasts() {
|
|
147
|
+
document.querySelectorAll("template[data-pgbus-toast]").forEach(tpl => {
|
|
148
|
+
showToast(tpl.content.textContent.trim(), tpl.dataset.pgbusToast);
|
|
149
|
+
tpl.remove();
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
renderFlashToasts();
|
|
153
|
+
document.addEventListener("turbo:load", renderFlashToasts);
|
|
148
154
|
|
|
149
155
|
<% if Pgbus.configuration.web_live_updates %>
|
|
150
156
|
const interval = <%= Pgbus.configuration.web_refresh_interval %>;
|
|
@@ -291,10 +297,10 @@
|
|
|
291
297
|
</div>
|
|
292
298
|
</div>
|
|
293
299
|
</div>
|
|
294
|
-
<
|
|
300
|
+
<form method="dialog" class="flex justify-end space-x-3 px-6 py-4 bg-gray-50 dark:bg-gray-900/50 rounded-b-lg">
|
|
295
301
|
<button value="cancel" class="rounded-md px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-white dark:bg-gray-700 border border-gray-300 dark:border-gray-600 hover:bg-gray-50 dark:hover:bg-gray-600 focus:outline-none focus:ring-2 focus:ring-indigo-500"><%= t("pgbus.dialogs.cancel", default: "Cancel") %></button>
|
|
296
302
|
<button value="confirm" id="pgbus-confirm-btn" class="rounded-md px-4 py-2 text-sm font-medium text-white bg-red-600 hover:bg-red-500 focus:outline-none focus:ring-2 focus:ring-red-500"><%= t("pgbus.dialogs.confirm", default: "Confirm") %></button>
|
|
297
|
-
</
|
|
303
|
+
</form>
|
|
298
304
|
</dialog>
|
|
299
305
|
|
|
300
306
|
<!-- Alert dialog -->
|
|
@@ -309,9 +315,9 @@
|
|
|
309
315
|
<p class="text-sm text-gray-700 dark:text-gray-300" id="pgbus-alert-message"></p>
|
|
310
316
|
</div>
|
|
311
317
|
</div>
|
|
312
|
-
<
|
|
318
|
+
<form method="dialog" class="flex justify-end px-6 py-4 bg-gray-50 dark:bg-gray-900/50 rounded-b-lg">
|
|
313
319
|
<button value="ok" class="rounded-md px-4 py-2 text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-500 focus:outline-none focus:ring-2 focus:ring-indigo-500"><%= t("pgbus.dialogs.ok", default: "OK") %></button>
|
|
314
|
-
</
|
|
320
|
+
</form>
|
|
315
321
|
</dialog>
|
|
316
322
|
|
|
317
323
|
<!-- Content -->
|
|
@@ -57,6 +57,16 @@
|
|
|
57
57
|
<pre class="text-xs text-gray-600 bg-white dark:bg-gray-800 rounded p-2 mt-1 overflow-x-auto"><%= JSON.pretty_generate(JSON.parse(j[:headers])) rescue j[:headers] %></pre>
|
|
58
58
|
</details>
|
|
59
59
|
<% end %>
|
|
60
|
+
<div class="flex space-x-2 mt-3 pt-3 border-t border-gray-200 dark:border-gray-700">
|
|
61
|
+
<%= button_to t("pgbus.jobs.enqueued_table.retry"), pgbus.retry_message_queue_path(name: j[:queue_name], msg_id: j[:msg_id]),
|
|
62
|
+
method: :post,
|
|
63
|
+
class: "rounded-md bg-indigo-600 px-3 py-1.5 text-xs font-medium text-white hover:bg-indigo-500",
|
|
64
|
+
data: { turbo_confirm: t("pgbus.jobs.enqueued_table.retry_confirm"), turbo_frame: "_top" } %>
|
|
65
|
+
<%= button_to t("pgbus.jobs.enqueued_table.discard"), pgbus.discard_message_queue_path(name: j[:queue_name], msg_id: j[:msg_id]),
|
|
66
|
+
method: :post,
|
|
67
|
+
class: "rounded-md bg-red-600 px-3 py-1.5 text-xs font-medium text-white hover:bg-red-500",
|
|
68
|
+
data: { turbo_confirm: t("pgbus.jobs.enqueued_table.discard_confirm"), turbo_frame: "_top" } %>
|
|
69
|
+
</div>
|
|
60
70
|
</div>
|
|
61
71
|
</details>
|
|
62
72
|
</td>
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
<th class="px-4 py-3 text-left text-xs font-medium uppercase text-gray-500"><%= t("pgbus.queues.show.headers.reads") %></th>
|
|
47
47
|
<th class="px-4 py-3 text-left text-xs font-medium uppercase text-gray-500"><%= t("pgbus.queues.show.headers.vt") %></th>
|
|
48
48
|
<th class="px-4 py-3 text-left text-xs font-medium uppercase text-gray-500"><%= t("pgbus.queues.show.headers.payload") %></th>
|
|
49
|
+
<th class="px-4 py-3 text-right text-xs font-medium uppercase text-gray-500"><%= t("pgbus.queues.show.headers.actions") %></th>
|
|
49
50
|
</tr>
|
|
50
51
|
</thead>
|
|
51
52
|
<tbody class="divide-y divide-gray-100 dark:divide-gray-700">
|
|
@@ -58,10 +59,20 @@
|
|
|
58
59
|
<td class="px-4 py-3 text-sm text-gray-600 font-mono text-xs max-w-md truncate">
|
|
59
60
|
<%= pgbus_json_preview(m[:message]) %>
|
|
60
61
|
</td>
|
|
62
|
+
<td class="px-4 py-3 text-sm text-right space-x-1 whitespace-nowrap">
|
|
63
|
+
<%= button_to t("pgbus.queues.show.retry"), pgbus.retry_message_queue_path(name: params[:name], msg_id: m[:msg_id]),
|
|
64
|
+
method: :post,
|
|
65
|
+
class: "text-xs text-indigo-600 hover:text-indigo-800 font-medium",
|
|
66
|
+
data: { turbo_confirm: t("pgbus.queues.show.retry_confirm") } %>
|
|
67
|
+
<%= button_to t("pgbus.queues.show.discard"), pgbus.discard_message_queue_path(name: params[:name], msg_id: m[:msg_id]),
|
|
68
|
+
method: :post,
|
|
69
|
+
class: "text-xs text-red-600 hover:text-red-800 font-medium",
|
|
70
|
+
data: { turbo_confirm: t("pgbus.queues.show.discard_confirm") } %>
|
|
71
|
+
</td>
|
|
61
72
|
</tr>
|
|
62
73
|
<% end %>
|
|
63
74
|
<% if @messages.empty? %>
|
|
64
|
-
<tr><td colspan="
|
|
75
|
+
<tr><td colspan="6" class="px-4 py-8 text-center text-sm text-gray-400"><%= t("pgbus.queues.show.empty") %></td></tr>
|
|
65
76
|
<% end %>
|
|
66
77
|
</tbody>
|
|
67
78
|
</table>
|
data/config/locales/da.yml
CHANGED
|
@@ -177,6 +177,10 @@ da:
|
|
|
177
177
|
timezone: 'Tidszone:'
|
|
178
178
|
visible_at: 'Synlig fra:'
|
|
179
179
|
title: Job i kø
|
|
180
|
+
discard: Kassér
|
|
181
|
+
discard_confirm: Kassér denne besked?
|
|
182
|
+
retry: Prøv igen
|
|
183
|
+
retry_confirm: Nulstil synlighedstimeout og prøv igen?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Kassér
|
|
182
186
|
discard_confirm: Kassér dette job?
|
|
@@ -301,18 +305,27 @@ da:
|
|
|
301
305
|
delete_confirm: Slet denne kø permanent? Dette kan ikke fortrydes.
|
|
302
306
|
delete_queue: Slet kø
|
|
303
307
|
depth: 'Dybde:'
|
|
308
|
+
discard: Kassér
|
|
309
|
+
discard_confirm: Kassér denne besked?
|
|
304
310
|
empty: Køen er tom
|
|
305
311
|
headers:
|
|
312
|
+
actions: Handlinger
|
|
306
313
|
enqueued: Sat i kø
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Indhold
|
|
309
316
|
reads: Læsninger
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Kunne ikke kassere besked.
|
|
319
|
+
message_discarded: Besked kasseret.
|
|
320
|
+
message_retried: Beskedens synlighed nulstillet.
|
|
321
|
+
message_retry_failed: Kunne ikke prøve besked igen.
|
|
311
322
|
pause: Pause
|
|
312
323
|
pause_confirm: Pause behandling?
|
|
313
324
|
purge_confirm: Rens alle beskeder?
|
|
314
325
|
purge_queue: Rens kø
|
|
315
326
|
resume: Genoptag
|
|
327
|
+
retry: Prøv igen
|
|
328
|
+
retry_confirm: Nulstil synlighedstimeout og prøv igen?
|
|
316
329
|
total: 'Total:'
|
|
317
330
|
visible: 'Synlig:'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/de.yml
CHANGED
|
@@ -177,6 +177,10 @@ de:
|
|
|
177
177
|
timezone: 'Zeitzone:'
|
|
178
178
|
visible_at: 'Sichtbar ab:'
|
|
179
179
|
title: Eingereihte Jobs
|
|
180
|
+
discard: Verwerfen
|
|
181
|
+
discard_confirm: Diese Nachricht verwerfen?
|
|
182
|
+
retry: Wiederholen
|
|
183
|
+
retry_confirm: Sichtbarkeits-Timeout zurücksetzen und erneut versuchen?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Verwerfen
|
|
182
186
|
discard_confirm: Diesen Job verwerfen?
|
|
@@ -301,18 +305,27 @@ de:
|
|
|
301
305
|
delete_confirm: Diese Warteschlange dauerhaft löschen? Dies kann nicht rückgängig gemacht werden.
|
|
302
306
|
delete_queue: Warteschlange löschen
|
|
303
307
|
depth: 'Tiefe:'
|
|
308
|
+
discard: Verwerfen
|
|
309
|
+
discard_confirm: Diese Nachricht verwerfen?
|
|
304
310
|
empty: Warteschlange ist leer
|
|
305
311
|
headers:
|
|
312
|
+
actions: Aktionen
|
|
306
313
|
enqueued: Eingereiht
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Nutzlast
|
|
309
316
|
reads: Lesevorgänge
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Nachricht konnte nicht verworfen werden.
|
|
319
|
+
message_discarded: Nachricht verworfen.
|
|
320
|
+
message_retried: Sichtbarkeit der Nachricht zurückgesetzt.
|
|
321
|
+
message_retry_failed: Nachricht konnte nicht wiederholt werden.
|
|
311
322
|
pause: Pause
|
|
312
323
|
pause_confirm: Verarbeitung pausieren?
|
|
313
324
|
purge_confirm: Alle Nachrichten löschen?
|
|
314
325
|
purge_queue: Warteschlange bereinigen
|
|
315
326
|
resume: Fortsetzen
|
|
327
|
+
retry: Wiederholen
|
|
328
|
+
retry_confirm: Sichtbarkeits-Timeout zurücksetzen und erneut versuchen?
|
|
316
329
|
total: 'Insgesamt:'
|
|
317
330
|
visible: 'Sichtbar:'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/en.yml
CHANGED
|
@@ -176,6 +176,10 @@ en:
|
|
|
176
176
|
scheduled: 'Scheduled:'
|
|
177
177
|
timezone: 'Timezone:'
|
|
178
178
|
visible_at: 'Visible at:'
|
|
179
|
+
discard: Discard
|
|
180
|
+
discard_confirm: Discard this message?
|
|
181
|
+
retry: Retry
|
|
182
|
+
retry_confirm: Reset visibility timeout and retry?
|
|
179
183
|
title: Enqueued Jobs
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Discard
|
|
@@ -301,18 +305,27 @@ en:
|
|
|
301
305
|
delete_confirm: Permanently delete this queue? This cannot be undone.
|
|
302
306
|
delete_queue: Delete Queue
|
|
303
307
|
depth: 'Depth:'
|
|
308
|
+
discard: Discard
|
|
309
|
+
discard_confirm: Discard this message?
|
|
304
310
|
empty: Queue is empty
|
|
305
311
|
headers:
|
|
312
|
+
actions: Actions
|
|
306
313
|
enqueued: Enqueued
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Payload
|
|
309
316
|
reads: Reads
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Could not discard message.
|
|
319
|
+
message_discarded: Message discarded.
|
|
320
|
+
message_retried: Message visibility reset.
|
|
321
|
+
message_retry_failed: Could not retry message.
|
|
311
322
|
pause: Pause
|
|
312
323
|
pause_confirm: Pause processing?
|
|
313
324
|
purge_confirm: Purge all messages?
|
|
314
325
|
purge_queue: Purge Queue
|
|
315
326
|
resume: Resume
|
|
327
|
+
retry: Retry
|
|
328
|
+
retry_confirm: Reset visibility timeout and retry?
|
|
316
329
|
total: 'Total:'
|
|
317
330
|
visible: 'Visible:'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/es.yml
CHANGED
|
@@ -177,6 +177,10 @@ es:
|
|
|
177
177
|
timezone: 'Zona horaria:'
|
|
178
178
|
visible_at: 'Visible en:'
|
|
179
179
|
title: Trabajos en Cola
|
|
180
|
+
discard: Descartar
|
|
181
|
+
discard_confirm: "¿Descartar este mensaje?"
|
|
182
|
+
retry: Reintentar
|
|
183
|
+
retry_confirm: "¿Restablecer tiempo de visibilidad y reintentar?"
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Descartar
|
|
182
186
|
discard_confirm: "¿Descartar este trabajo?"
|
|
@@ -301,18 +305,27 @@ es:
|
|
|
301
305
|
delete_confirm: "¿Eliminar permanentemente esta cola? Esto no se puede deshacer."
|
|
302
306
|
delete_queue: Eliminar cola
|
|
303
307
|
depth: 'Profundidad:'
|
|
308
|
+
discard: Descartar
|
|
309
|
+
discard_confirm: "¿Descartar este mensaje?"
|
|
304
310
|
empty: La cola está vacía
|
|
305
311
|
headers:
|
|
312
|
+
actions: Acciones
|
|
306
313
|
enqueued: Encolado
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Carga útil
|
|
309
316
|
reads: Lecturas
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: No se pudo descartar el mensaje.
|
|
319
|
+
message_discarded: Mensaje descartado.
|
|
320
|
+
message_retried: Visibilidad del mensaje restablecida.
|
|
321
|
+
message_retry_failed: No se pudo reintentar el mensaje.
|
|
311
322
|
pause: Pausar
|
|
312
323
|
pause_confirm: "¿Pausar el procesamiento?"
|
|
313
324
|
purge_confirm: "¿Purgar todos los mensajes?"
|
|
314
325
|
purge_queue: Purgar cola
|
|
315
326
|
resume: Reanudar
|
|
327
|
+
retry: Reintentar
|
|
328
|
+
retry_confirm: "¿Restablecer tiempo de visibilidad y reintentar?"
|
|
316
329
|
total: 'Total:'
|
|
317
330
|
visible: 'Visible:'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/fi.yml
CHANGED
|
@@ -177,6 +177,10 @@ fi:
|
|
|
177
177
|
timezone: 'Aikavyöhyke:'
|
|
178
178
|
visible_at: 'Näkyvissä:'
|
|
179
179
|
title: Jonotetut työt
|
|
180
|
+
discard: Hylkää
|
|
181
|
+
discard_confirm: Hylätä tämä viesti?
|
|
182
|
+
retry: Yritä uudelleen
|
|
183
|
+
retry_confirm: Nollaa näkyvyysaika ja yritä uudelleen?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Hylkää
|
|
182
186
|
discard_confirm: Hylätäänkö tämä työ?
|
|
@@ -301,18 +305,27 @@ fi:
|
|
|
301
305
|
delete_confirm: Poista tämä jono pysyvästi? Tätä ei voi kumota.
|
|
302
306
|
delete_queue: Poista jono
|
|
303
307
|
depth: 'Syvyys:'
|
|
308
|
+
discard: Hylkää
|
|
309
|
+
discard_confirm: Hylätä tämä viesti?
|
|
304
310
|
empty: Jono on tyhjä
|
|
305
311
|
headers:
|
|
312
|
+
actions: Toiminnot
|
|
306
313
|
enqueued: Jonoon lisätty
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Kuorma
|
|
309
316
|
reads: Lukukerrat
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Viestiä ei voitu hylätä.
|
|
319
|
+
message_discarded: Viesti hylätty.
|
|
320
|
+
message_retried: Viestin näkyvyys nollattu.
|
|
321
|
+
message_retry_failed: Viestiä ei voitu yrittää uudelleen.
|
|
311
322
|
pause: Tauko
|
|
312
323
|
pause_confirm: Keskeytetäänkö käsittely?
|
|
313
324
|
purge_confirm: Tyhjennetäänkö kaikki viestit?
|
|
314
325
|
purge_queue: Tyhjennä jono
|
|
315
326
|
resume: Jatka
|
|
327
|
+
retry: Yritä uudelleen
|
|
328
|
+
retry_confirm: Nollaa näkyvyysaika ja yritä uudelleen?
|
|
316
329
|
total: 'Yhteensä:'
|
|
317
330
|
visible: 'Näkyvissä:'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/fr.yml
CHANGED
|
@@ -177,6 +177,10 @@ fr:
|
|
|
177
177
|
timezone: 'Fuseau horaire :'
|
|
178
178
|
visible_at: 'Visible à :'
|
|
179
179
|
title: Travaux en file d'attente
|
|
180
|
+
discard: Rejeter
|
|
181
|
+
discard_confirm: Rejeter ce message ?
|
|
182
|
+
retry: Réessayer
|
|
183
|
+
retry_confirm: Réinitialiser le délai de visibilité et réessayer ?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Ignorer
|
|
182
186
|
discard_confirm: Ignorer ce travail ?
|
|
@@ -301,18 +305,27 @@ fr:
|
|
|
301
305
|
delete_confirm: Supprimer définitivement cette file d'attente ? Cette action est irréversible.
|
|
302
306
|
delete_queue: Supprimer la file d'attente
|
|
303
307
|
depth: 'Profondeur :'
|
|
308
|
+
discard: Rejeter
|
|
309
|
+
discard_confirm: Rejeter ce message ?
|
|
304
310
|
empty: La file d'attente est vide
|
|
305
311
|
headers:
|
|
312
|
+
actions: Actions
|
|
306
313
|
enqueued: Enregistré
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Charge utile
|
|
309
316
|
reads: Lectures
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Impossible de rejeter le message.
|
|
319
|
+
message_discarded: Message rejeté.
|
|
320
|
+
message_retried: Visibilité du message réinitialisée.
|
|
321
|
+
message_retry_failed: Impossible de réessayer le message.
|
|
311
322
|
pause: Pause
|
|
312
323
|
pause_confirm: Mettre en pause le traitement ?
|
|
313
324
|
purge_confirm: Purger tous les messages ?
|
|
314
325
|
purge_queue: Purger la file d'attente
|
|
315
326
|
resume: Reprendre
|
|
327
|
+
retry: Réessayer
|
|
328
|
+
retry_confirm: Réinitialiser le délai de visibilité et réessayer ?
|
|
316
329
|
total: 'Total :'
|
|
317
330
|
visible: 'Visible :'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/it.yml
CHANGED
|
@@ -177,6 +177,10 @@ it:
|
|
|
177
177
|
timezone: 'Fuso orario:'
|
|
178
178
|
visible_at: 'Visibile alle:'
|
|
179
179
|
title: Lavori in coda
|
|
180
|
+
discard: Scarta
|
|
181
|
+
discard_confirm: Scartare questo messaggio?
|
|
182
|
+
retry: Riprova
|
|
183
|
+
retry_confirm: Reimpostare il timeout di visibilità e riprovare?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Scarta
|
|
182
186
|
discard_confirm: Scartare questo lavoro?
|
|
@@ -301,18 +305,27 @@ it:
|
|
|
301
305
|
delete_confirm: Eliminare permanentemente questa coda? Questa azione non può essere annullata.
|
|
302
306
|
delete_queue: Elimina coda
|
|
303
307
|
depth: 'Profondità:'
|
|
308
|
+
discard: Scarta
|
|
309
|
+
discard_confirm: Scartare questo messaggio?
|
|
304
310
|
empty: La coda è vuota
|
|
305
311
|
headers:
|
|
312
|
+
actions: Azioni
|
|
306
313
|
enqueued: In coda
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Carico utile
|
|
309
316
|
reads: Letture
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Impossibile scartare il messaggio.
|
|
319
|
+
message_discarded: Messaggio scartato.
|
|
320
|
+
message_retried: Visibilità del messaggio reimpostata.
|
|
321
|
+
message_retry_failed: Impossibile riprovare il messaggio.
|
|
311
322
|
pause: Pausa
|
|
312
323
|
pause_confirm: Mettere in pausa l'elaborazione?
|
|
313
324
|
purge_confirm: Eliminare tutti i messaggi?
|
|
314
325
|
purge_queue: Pulisci coda
|
|
315
326
|
resume: Riprendi
|
|
327
|
+
retry: Riprova
|
|
328
|
+
retry_confirm: Reimpostare il timeout di visibilità e riprovare?
|
|
316
329
|
total: 'Totale:'
|
|
317
330
|
visible: 'Visibile:'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/ja.yml
CHANGED
|
@@ -177,6 +177,10 @@ ja:
|
|
|
177
177
|
timezone: タイムゾーン:
|
|
178
178
|
visible_at: 表示可能日時:
|
|
179
179
|
title: キューに入れられたジョブ
|
|
180
|
+
discard: 破棄
|
|
181
|
+
discard_confirm: このメッセージを破棄しますか?
|
|
182
|
+
retry: リトライ
|
|
183
|
+
retry_confirm: 可視性タイムアウトをリセットしてリトライしますか?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: 破棄
|
|
182
186
|
discard_confirm: このジョブを破棄しますか?
|
|
@@ -301,18 +305,27 @@ ja:
|
|
|
301
305
|
delete_confirm: このキューを完全に削除しますか?この操作は取り消せません。
|
|
302
306
|
delete_queue: キューを削除
|
|
303
307
|
depth: 深さ:
|
|
308
|
+
discard: 破棄
|
|
309
|
+
discard_confirm: このメッセージを破棄しますか?
|
|
304
310
|
empty: キューは空です
|
|
305
311
|
headers:
|
|
312
|
+
actions: アクション
|
|
306
313
|
enqueued: エンキュー済み
|
|
307
314
|
id: ID
|
|
308
315
|
payload: ペイロード
|
|
309
316
|
reads: 読み取り回数
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: メッセージを破棄できませんでした。
|
|
319
|
+
message_discarded: メッセージを破棄しました。
|
|
320
|
+
message_retried: メッセージの可視性をリセットしました。
|
|
321
|
+
message_retry_failed: メッセージをリトライできませんでした。
|
|
311
322
|
pause: 一時停止
|
|
312
323
|
pause_confirm: 処理を一時停止しますか?
|
|
313
324
|
purge_confirm: すべてのメッセージを削除しますか?
|
|
314
325
|
purge_queue: キューをパージ
|
|
315
326
|
resume: 再開
|
|
327
|
+
retry: リトライ
|
|
328
|
+
retry_confirm: 可視性タイムアウトをリセットしてリトライしますか?
|
|
316
329
|
total: 合計:
|
|
317
330
|
visible: 表示中:
|
|
318
331
|
recurring_tasks:
|
data/config/locales/nb.yml
CHANGED
|
@@ -177,6 +177,10 @@ nb:
|
|
|
177
177
|
timezone: 'Tidssone:'
|
|
178
178
|
visible_at: 'Synlig fra:'
|
|
179
179
|
title: Kølagte jobber
|
|
180
|
+
discard: Forkast
|
|
181
|
+
discard_confirm: Forkaste denne meldingen?
|
|
182
|
+
retry: Prøv igjen
|
|
183
|
+
retry_confirm: Tilbakestill synlighetstidsavbrudd og prøv igjen?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Forkast
|
|
182
186
|
discard_confirm: Forkast denne jobben?
|
|
@@ -301,18 +305,27 @@ nb:
|
|
|
301
305
|
delete_confirm: Slette denne køen permanent? Dette kan ikke angres.
|
|
302
306
|
delete_queue: Slett kø
|
|
303
307
|
depth: 'Dybde:'
|
|
308
|
+
discard: Forkast
|
|
309
|
+
discard_confirm: Forkaste denne meldingen?
|
|
304
310
|
empty: Køen er tom
|
|
305
311
|
headers:
|
|
312
|
+
actions: Handlinger
|
|
306
313
|
enqueued: I kø
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Innhold
|
|
309
316
|
reads: Lesninger
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Kunne ikke forkaste meldingen.
|
|
319
|
+
message_discarded: Melding forkastet.
|
|
320
|
+
message_retried: Meldingens synlighet tilbakestilt.
|
|
321
|
+
message_retry_failed: Kunne ikke prøve meldingen igjen.
|
|
311
322
|
pause: Pause
|
|
312
323
|
pause_confirm: Pause behandling?
|
|
313
324
|
purge_confirm: Rens alle meldinger?
|
|
314
325
|
purge_queue: Rens kø
|
|
315
326
|
resume: Gjenoppta
|
|
327
|
+
retry: Prøv igjen
|
|
328
|
+
retry_confirm: Tilbakestill synlighetstidsavbrudd og prøv igjen?
|
|
316
329
|
total: 'Totalt:'
|
|
317
330
|
visible: 'Synlig:'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/nl.yml
CHANGED
|
@@ -177,6 +177,10 @@ nl:
|
|
|
177
177
|
timezone: 'Tijdzone:'
|
|
178
178
|
visible_at: 'Zichtbaar op:'
|
|
179
179
|
title: Taken in de wachtrij
|
|
180
|
+
discard: Verwerpen
|
|
181
|
+
discard_confirm: Dit bericht verwerpen?
|
|
182
|
+
retry: Opnieuw proberen
|
|
183
|
+
retry_confirm: Zichtbaarheidstimeout resetten en opnieuw proberen?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Verwijderen
|
|
182
186
|
discard_confirm: Deze taak verwijderen?
|
|
@@ -301,18 +305,27 @@ nl:
|
|
|
301
305
|
delete_confirm: Deze wachtrij permanent verwijderen? Dit kan niet ongedaan worden gemaakt.
|
|
302
306
|
delete_queue: Wachtrij verwijderen
|
|
303
307
|
depth: 'Diepte:'
|
|
308
|
+
discard: Verwerpen
|
|
309
|
+
discard_confirm: Dit bericht verwerpen?
|
|
304
310
|
empty: Wachtrij is leeg
|
|
305
311
|
headers:
|
|
312
|
+
actions: Acties
|
|
306
313
|
enqueued: In de wachtrij geplaatst
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Inhoud
|
|
309
316
|
reads: Lezingen
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Kon bericht niet verwerpen.
|
|
319
|
+
message_discarded: Bericht verworpen.
|
|
320
|
+
message_retried: Zichtbaarheid van bericht gereset.
|
|
321
|
+
message_retry_failed: Kon bericht niet opnieuw proberen.
|
|
311
322
|
pause: Pauzeren
|
|
312
323
|
pause_confirm: Verwerking pauzeren?
|
|
313
324
|
purge_confirm: Alle berichten verwijderen?
|
|
314
325
|
purge_queue: Wachtrij opschonen
|
|
315
326
|
resume: Hervatten
|
|
327
|
+
retry: Opnieuw proberen
|
|
328
|
+
retry_confirm: Zichtbaarheidstimeout resetten en opnieuw proberen?
|
|
316
329
|
total: 'Totaal:'
|
|
317
330
|
visible: 'Zichtbaar:'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/pt.yml
CHANGED
|
@@ -177,6 +177,10 @@ pt:
|
|
|
177
177
|
timezone: 'Fuso horário:'
|
|
178
178
|
visible_at: 'Visível em:'
|
|
179
179
|
title: Trabalhos Enfileirados
|
|
180
|
+
discard: Descartar
|
|
181
|
+
discard_confirm: Descartar esta mensagem?
|
|
182
|
+
retry: Tentar novamente
|
|
183
|
+
retry_confirm: Redefinir tempo de visibilidade e tentar novamente?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Descartar
|
|
182
186
|
discard_confirm: Descartar este trabalho?
|
|
@@ -301,18 +305,27 @@ pt:
|
|
|
301
305
|
delete_confirm: Excluir permanentemente esta fila? Esta ação não pode ser desfeita.
|
|
302
306
|
delete_queue: Excluir fila
|
|
303
307
|
depth: 'Profundidade:'
|
|
308
|
+
discard: Descartar
|
|
309
|
+
discard_confirm: Descartar esta mensagem?
|
|
304
310
|
empty: Fila está vazia
|
|
305
311
|
headers:
|
|
312
|
+
actions: Ações
|
|
306
313
|
enqueued: Enfileirado
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Carga útil
|
|
309
316
|
reads: Leituras
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Não foi possível descartar a mensagem.
|
|
319
|
+
message_discarded: Mensagem descartada.
|
|
320
|
+
message_retried: Visibilidade da mensagem redefinida.
|
|
321
|
+
message_retry_failed: Não foi possível tentar novamente a mensagem.
|
|
311
322
|
pause: Pausar
|
|
312
323
|
pause_confirm: Pausar processamento?
|
|
313
324
|
purge_confirm: Limpar todas as mensagens?
|
|
314
325
|
purge_queue: Limpar fila
|
|
315
326
|
resume: Retomar
|
|
327
|
+
retry: Tentar novamente
|
|
328
|
+
retry_confirm: Redefinir tempo de visibilidade e tentar novamente?
|
|
316
329
|
total: 'Total:'
|
|
317
330
|
visible: 'Visível:'
|
|
318
331
|
recurring_tasks:
|
data/config/locales/sv.yml
CHANGED
|
@@ -177,6 +177,10 @@ sv:
|
|
|
177
177
|
timezone: 'Tidszon:'
|
|
178
178
|
visible_at: 'Synlig vid:'
|
|
179
179
|
title: Köade jobb
|
|
180
|
+
discard: Kassera
|
|
181
|
+
discard_confirm: Kassera detta meddelande?
|
|
182
|
+
retry: Försök igen
|
|
183
|
+
retry_confirm: Återställ synlighetstimeout och försök igen?
|
|
180
184
|
failed_table:
|
|
181
185
|
discard: Kassera
|
|
182
186
|
discard_confirm: Kassera detta jobb?
|
|
@@ -301,18 +305,27 @@ sv:
|
|
|
301
305
|
delete_confirm: Ta bort denna kö permanent? Detta kan inte ångras.
|
|
302
306
|
delete_queue: Ta bort kö
|
|
303
307
|
depth: 'Djup:'
|
|
308
|
+
discard: Kassera
|
|
309
|
+
discard_confirm: Kassera detta meddelande?
|
|
304
310
|
empty: Kön är tom
|
|
305
311
|
headers:
|
|
312
|
+
actions: Åtgärder
|
|
306
313
|
enqueued: Inlagd
|
|
307
314
|
id: ID
|
|
308
315
|
payload: Innehåll
|
|
309
316
|
reads: Läsningar
|
|
310
317
|
vt: VT
|
|
318
|
+
message_discard_failed: Kunde inte kassera meddelandet.
|
|
319
|
+
message_discarded: Meddelande kasserat.
|
|
320
|
+
message_retried: Meddelandets synlighet återställd.
|
|
321
|
+
message_retry_failed: Kunde inte försöka igen med meddelandet.
|
|
311
322
|
pause: Pausa
|
|
312
323
|
pause_confirm: Pausa bearbetning?
|
|
313
324
|
purge_confirm: Rensa alla meddelanden?
|
|
314
325
|
purge_queue: Rensa kö
|
|
315
326
|
resume: Återuppta
|
|
327
|
+
retry: Försök igen
|
|
328
|
+
retry_confirm: Återställ synlighetstimeout och försök igen?
|
|
316
329
|
total: 'Totalt:'
|
|
317
330
|
visible: 'Synliga:'
|
|
318
331
|
recurring_tasks:
|
data/config/routes.rb
CHANGED
data/lib/pgbus/version.rb
CHANGED