sidekiq 5.2.6 → 7.1.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sidekiq might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Changes.md +537 -8
- data/LICENSE.txt +9 -0
- data/README.md +47 -50
- data/bin/sidekiq +22 -3
- data/bin/sidekiqload +213 -115
- data/bin/sidekiqmon +11 -0
- data/lib/generators/sidekiq/job_generator.rb +57 -0
- data/lib/generators/sidekiq/templates/{worker.rb.erb → job.rb.erb} +2 -2
- data/lib/generators/sidekiq/templates/{worker_spec.rb.erb → job_spec.rb.erb} +1 -1
- data/lib/generators/sidekiq/templates/{worker_test.rb.erb → job_test.rb.erb} +1 -1
- data/lib/sidekiq/api.rb +556 -351
- data/lib/sidekiq/capsule.rb +127 -0
- data/lib/sidekiq/cli.rb +203 -226
- data/lib/sidekiq/client.rb +121 -101
- data/lib/sidekiq/component.rb +68 -0
- data/lib/sidekiq/config.rb +274 -0
- data/lib/sidekiq/deploy.rb +62 -0
- data/lib/sidekiq/embedded.rb +61 -0
- data/lib/sidekiq/fetch.rb +49 -42
- data/lib/sidekiq/job.rb +374 -0
- data/lib/sidekiq/job_logger.rb +33 -7
- data/lib/sidekiq/job_retry.rb +131 -108
- data/lib/sidekiq/job_util.rb +105 -0
- data/lib/sidekiq/launcher.rb +203 -105
- data/lib/sidekiq/logger.rb +131 -0
- data/lib/sidekiq/manager.rb +43 -46
- data/lib/sidekiq/metrics/query.rb +153 -0
- data/lib/sidekiq/metrics/shared.rb +95 -0
- data/lib/sidekiq/metrics/tracking.rb +136 -0
- data/lib/sidekiq/middleware/chain.rb +113 -56
- data/lib/sidekiq/middleware/current_attributes.rb +56 -0
- data/lib/sidekiq/middleware/i18n.rb +7 -7
- data/lib/sidekiq/middleware/modules.rb +21 -0
- data/lib/sidekiq/monitor.rb +146 -0
- data/lib/sidekiq/paginator.rb +28 -16
- data/lib/sidekiq/processor.rb +108 -107
- data/lib/sidekiq/rails.rb +49 -38
- data/lib/sidekiq/redis_client_adapter.rb +96 -0
- data/lib/sidekiq/redis_connection.rb +38 -107
- data/lib/sidekiq/ring_buffer.rb +29 -0
- data/lib/sidekiq/scheduled.rb +111 -49
- data/lib/sidekiq/sd_notify.rb +149 -0
- data/lib/sidekiq/systemd.rb +24 -0
- data/lib/sidekiq/testing/inline.rb +6 -5
- data/lib/sidekiq/testing.rb +66 -84
- data/lib/sidekiq/transaction_aware_client.rb +44 -0
- data/lib/sidekiq/version.rb +3 -1
- data/lib/sidekiq/web/action.rb +15 -11
- data/lib/sidekiq/web/application.rb +123 -79
- data/lib/sidekiq/web/csrf_protection.rb +180 -0
- data/lib/sidekiq/web/helpers.rb +137 -106
- data/lib/sidekiq/web/router.rb +23 -19
- data/lib/sidekiq/web.rb +56 -107
- data/lib/sidekiq/worker_compatibility_alias.rb +13 -0
- data/lib/sidekiq.rb +92 -182
- data/sidekiq.gemspec +25 -16
- data/web/assets/images/apple-touch-icon.png +0 -0
- data/web/assets/javascripts/application.js +130 -61
- data/web/assets/javascripts/base-charts.js +106 -0
- data/web/assets/javascripts/chart.min.js +13 -0
- data/web/assets/javascripts/chartjs-plugin-annotation.min.js +7 -0
- data/web/assets/javascripts/dashboard-charts.js +166 -0
- data/web/assets/javascripts/dashboard.js +36 -292
- data/web/assets/javascripts/metrics.js +264 -0
- data/web/assets/stylesheets/application-dark.css +147 -0
- data/web/assets/stylesheets/application-rtl.css +2 -95
- data/web/assets/stylesheets/application.css +102 -522
- data/web/locales/ar.yml +71 -65
- data/web/locales/cs.yml +62 -62
- data/web/locales/da.yml +60 -53
- data/web/locales/de.yml +65 -53
- data/web/locales/el.yml +43 -24
- data/web/locales/en.yml +84 -66
- data/web/locales/es.yml +70 -54
- data/web/locales/fa.yml +65 -65
- data/web/locales/fr.yml +83 -62
- data/web/locales/gd.yml +99 -0
- data/web/locales/he.yml +65 -64
- data/web/locales/hi.yml +59 -59
- data/web/locales/it.yml +53 -53
- data/web/locales/ja.yml +75 -64
- data/web/locales/ko.yml +52 -52
- data/web/locales/lt.yml +83 -0
- data/web/locales/nb.yml +61 -61
- data/web/locales/nl.yml +52 -52
- data/web/locales/pl.yml +45 -45
- data/web/locales/pt-br.yml +63 -55
- data/web/locales/pt.yml +51 -51
- data/web/locales/ru.yml +68 -63
- data/web/locales/sv.yml +53 -53
- data/web/locales/ta.yml +60 -60
- data/web/locales/uk.yml +62 -61
- data/web/locales/ur.yml +64 -64
- data/web/locales/vi.yml +83 -0
- data/web/locales/zh-cn.yml +43 -16
- data/web/locales/zh-tw.yml +42 -8
- data/web/views/_footer.erb +6 -3
- data/web/views/_job_info.erb +21 -4
- data/web/views/_metrics_period_select.erb +12 -0
- data/web/views/_nav.erb +1 -1
- data/web/views/_paging.erb +2 -0
- data/web/views/_poll_link.erb +3 -6
- data/web/views/_summary.erb +7 -7
- data/web/views/busy.erb +75 -25
- data/web/views/dashboard.erb +58 -18
- data/web/views/dead.erb +3 -3
- data/web/views/layout.erb +3 -1
- data/web/views/metrics.erb +82 -0
- data/web/views/metrics_for_job.erb +68 -0
- data/web/views/morgue.erb +14 -15
- data/web/views/queue.erb +33 -24
- data/web/views/queues.erb +13 -3
- data/web/views/retries.erb +16 -17
- data/web/views/retry.erb +3 -3
- data/web/views/scheduled.erb +17 -15
- metadata +69 -69
- data/.github/contributing.md +0 -32
- data/.github/issue_template.md +0 -11
- data/.gitignore +0 -15
- data/.travis.yml +0 -11
- data/3.0-Upgrade.md +0 -70
- data/4.0-Upgrade.md +0 -53
- data/5.0-Upgrade.md +0 -56
- data/COMM-LICENSE +0 -97
- data/Ent-Changes.md +0 -238
- data/Gemfile +0 -23
- data/LICENSE +0 -9
- data/Pro-2.0-Upgrade.md +0 -138
- data/Pro-3.0-Upgrade.md +0 -44
- data/Pro-4.0-Upgrade.md +0 -35
- data/Pro-Changes.md +0 -759
- data/Rakefile +0 -9
- data/bin/sidekiqctl +0 -20
- data/code_of_conduct.md +0 -50
- data/lib/generators/sidekiq/worker_generator.rb +0 -49
- data/lib/sidekiq/core_ext.rb +0 -1
- data/lib/sidekiq/ctl.rb +0 -221
- data/lib/sidekiq/delay.rb +0 -42
- data/lib/sidekiq/exception_handler.rb +0 -29
- data/lib/sidekiq/extensions/action_mailer.rb +0 -57
- data/lib/sidekiq/extensions/active_record.rb +0 -40
- data/lib/sidekiq/extensions/class_methods.rb +0 -40
- data/lib/sidekiq/extensions/generic_proxy.rb +0 -31
- data/lib/sidekiq/logging.rb +0 -122
- data/lib/sidekiq/middleware/server/active_record.rb +0 -23
- data/lib/sidekiq/util.rb +0 -66
- data/lib/sidekiq/worker.rb +0 -220
data/web/locales/en.yml
CHANGED
@@ -1,81 +1,99 @@
|
|
1
1
|
# elements like %{queue} are variables and should not be translated
|
2
|
-
en:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
2
|
+
en:
|
3
|
+
Actions: Actions
|
4
|
+
AddToQueue: Add to queue
|
5
|
+
AreYouSure: Are you sure?
|
6
|
+
AreYouSureDeleteJob: Are you sure you want to delete this job?
|
7
|
+
AreYouSureDeleteQueue: Are you sure you want to delete the %{queue} queue? This will delete all jobs within the queue, it will reappear if you push more jobs to it in the future.
|
8
|
+
Arguments: Arguments
|
9
|
+
BackToApp: Back to App
|
9
10
|
Busy: Busy
|
10
|
-
Processed: Processed
|
11
|
-
Failed: Failed
|
12
|
-
Scheduled: Scheduled
|
13
|
-
Retries: Retries
|
14
|
-
Enqueued: Enqueued
|
15
|
-
Worker: Worker
|
16
|
-
LivePoll: Live Poll
|
17
|
-
StopPolling: Stop Polling
|
18
|
-
Queue: Queue
|
19
11
|
Class: Class
|
20
|
-
|
21
|
-
|
22
|
-
Extras: Extras
|
23
|
-
Started: Started
|
24
|
-
ShowAll: Show All
|
12
|
+
Connections: Connections
|
13
|
+
CreatedAt: Created At
|
25
14
|
CurrentMessagesInQueue: Current jobs in <span class='title'>%{queue}</span>
|
15
|
+
Dashboard: Dashboard
|
16
|
+
Dead: Dead
|
17
|
+
DeadJobs: Dead Jobs
|
26
18
|
Delete: Delete
|
27
|
-
AddToQueue: Add to queue
|
28
|
-
AreYouSureDeleteJob: Are you sure you want to delete this job?
|
29
|
-
AreYouSureDeleteQueue: Are you sure you want to delete the %{queue} queue?
|
30
|
-
Queues: Queues
|
31
|
-
Size: Size
|
32
|
-
Actions: Actions
|
33
|
-
NextRetry: Next Retry
|
34
|
-
RetryCount: Retry Count
|
35
|
-
RetryNow: Retry Now
|
36
|
-
Kill: Kill
|
37
|
-
LastRetry: Last Retry
|
38
|
-
OriginallyFailed: Originally Failed
|
39
|
-
AreYouSure: Are you sure?
|
40
19
|
DeleteAll: Delete All
|
41
|
-
|
42
|
-
|
43
|
-
NoRetriesFound: No retries were found
|
20
|
+
Deploy: Deploy
|
21
|
+
Enqueued: Enqueued
|
44
22
|
Error: Error
|
23
|
+
ErrorBacktrace: Error Backtrace
|
45
24
|
ErrorClass: Error Class
|
46
25
|
ErrorMessage: Error Message
|
47
|
-
|
26
|
+
ExecutionTime: Execution Time
|
27
|
+
Extras: Extras
|
28
|
+
Failed: Failed
|
29
|
+
Failures: Failures
|
30
|
+
Failure: Failure
|
48
31
|
GoBack: ← Back
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
32
|
+
History: History
|
33
|
+
Job: Job
|
34
|
+
Jobs: Jobs
|
35
|
+
Kill: Kill
|
36
|
+
KillAll: Kill All
|
37
|
+
LastRetry: Last Retry
|
38
|
+
Latency: Latency
|
39
|
+
LivePoll: Live Poll
|
56
40
|
MemoryUsage: Memory Usage
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
OneMonth: 1 month
|
61
|
-
ThreeMonths: 3 months
|
62
|
-
SixMonths: 6 months
|
63
|
-
Failures: Failures
|
64
|
-
DeadJobs: Dead Jobs
|
41
|
+
Name: Name
|
42
|
+
Namespace: Namespace
|
43
|
+
NextRetry: Next Retry
|
65
44
|
NoDeadJobsFound: No dead jobs were found
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
45
|
+
NoRetriesFound: No retries were found
|
46
|
+
NoScheduledFound: No scheduled jobs were found
|
47
|
+
NotYetEnqueued: Not yet enqueued
|
48
|
+
OneMonth: 1 month
|
49
|
+
OneWeek: 1 week
|
50
|
+
OriginallyFailed: Originally Failed
|
51
|
+
Pause: Pause
|
71
52
|
Paused: Paused
|
72
|
-
|
53
|
+
PeakMemoryUsage: Peak Memory Usage
|
54
|
+
Plugins: Plugins
|
55
|
+
PollingInterval: Polling interval
|
56
|
+
Process: Process
|
57
|
+
Processed: Processed
|
58
|
+
Processes: Processes
|
59
|
+
Queue: Queue
|
60
|
+
Queues: Queues
|
73
61
|
Quiet: Quiet
|
74
|
-
StopAll: Stop All
|
75
62
|
QuietAll: Quiet All
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
63
|
+
Realtime: Real-time
|
64
|
+
Retries: Retries
|
65
|
+
RetryAll: Retry All
|
66
|
+
RetryCount: Retry Count
|
67
|
+
RetryNow: Retry Now
|
68
|
+
Scheduled: Scheduled
|
69
|
+
ScheduledJobs: Scheduled Jobs
|
70
|
+
Seconds: Seconds
|
71
|
+
ShowAll: Show All
|
72
|
+
SixMonths: 6 months
|
73
|
+
Size: Size
|
74
|
+
Started: Started
|
75
|
+
Status: Status
|
76
|
+
Stop: Stop
|
77
|
+
StopAll: Stop All
|
78
|
+
StopPolling: Stop Polling
|
79
|
+
Success: Success
|
80
|
+
Summary: Summary
|
81
|
+
Thread: Thread
|
82
|
+
Threads: Threads
|
83
|
+
ThreeMonths: 3 months
|
84
|
+
Time: Time
|
85
|
+
Unpause: Unpause
|
86
|
+
Uptime: Uptime (days)
|
87
|
+
Utilization: Utilization
|
88
|
+
Version: Version
|
89
|
+
When: When
|
90
|
+
Worker: Worker
|
91
|
+
active: active
|
92
|
+
idle: idle
|
93
|
+
Metrics: Metrics
|
94
|
+
NoDataFound: No data found
|
95
|
+
TotalExecutionTime: Total Execution Time
|
96
|
+
AvgExecutionTime: Average Execution Time
|
97
|
+
Context: Context
|
98
|
+
Bucket: Bucket
|
99
|
+
NoJobMetricsFound: No recent job metrics were found
|
data/web/locales/es.yml
CHANGED
@@ -1,70 +1,86 @@
|
|
1
1
|
# elements like %{queue} are variables and should not be translated
|
2
2
|
es:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
3
|
+
Actions: Acciones
|
4
|
+
AddToQueue: Añadir a la cola
|
5
|
+
AreYouSure: ¿Estás seguro?
|
6
|
+
AreYouSureDeleteJob: ¿Estás seguro de eliminar este trabajo?
|
7
|
+
AreYouSureDeleteQueue: ¿Estás seguro de eliminar la cola %{queue}?
|
8
|
+
Arguments: Argumentos
|
9
|
+
BackToApp: Volver a la Aplicación
|
9
10
|
Busy: Ocupado
|
10
|
-
Processed: Procesadas
|
11
|
-
Failed: Fallidas
|
12
|
-
Scheduled: Programadas
|
13
|
-
Retries: Reintentos
|
14
|
-
Enqueued: En Cola
|
15
|
-
Worker: Trabajador
|
16
|
-
LivePoll: Sondeo en Vivo
|
17
|
-
StopPolling: Detener Sondeo
|
18
|
-
Queue: Cola
|
19
11
|
Class: Clase
|
20
|
-
|
21
|
-
|
22
|
-
Extras: Extras
|
23
|
-
Started: Hora de Inicio
|
24
|
-
ShowAll: Mostrar Todo
|
12
|
+
Connections: Conexiones
|
13
|
+
CreatedAt: Creado en
|
25
14
|
CurrentMessagesInQueue: Mensajes actualmente en <span class='title'>%{queue}</span>
|
15
|
+
Dashboard: Panel de Control
|
16
|
+
Dead: Muerto
|
17
|
+
DeadJobs: Trabajos muertos
|
26
18
|
Delete: Eliminar
|
27
|
-
AddToQueue: Añadir a fila
|
28
|
-
AreYouSureDeleteJob: ¿Estás seguro de eliminar este trabajo?
|
29
|
-
AreYouSureDeleteQueue: ¿Estás seguro de eliminar la fila %{queue}?
|
30
|
-
Queues: Colas
|
31
|
-
Size: Tamaño
|
32
|
-
Actions: Acciones
|
33
|
-
NextRetry: Siguiente Intento
|
34
|
-
RetryCount: Numero de Reintentos
|
35
|
-
RetryNow: Reintentar Ahora
|
36
|
-
Kill: Matar
|
37
|
-
LastRetry: Último Reintento
|
38
|
-
OriginallyFailed: Falló Originalmente
|
39
|
-
AreYouSure: ¿Estás seguro?
|
40
19
|
DeleteAll: Borrar Todo
|
41
|
-
|
42
|
-
NoRetriesFound: No se encontraron reintentos
|
20
|
+
Enqueued: En Cola
|
43
21
|
Error: Error
|
22
|
+
ErrorBacktrace: Trazado del Error
|
44
23
|
ErrorClass: Clase del Error
|
45
24
|
ErrorMessage: Mensaje de Error
|
46
|
-
|
25
|
+
Extras: Extras
|
26
|
+
Failed: Fallidas
|
27
|
+
Failures: Fallas
|
47
28
|
GoBack: ← Regresar
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
29
|
+
History: Historial
|
30
|
+
Job: Trabajo
|
31
|
+
Jobs: Trabajos
|
32
|
+
Kill: Matar
|
33
|
+
KillAll: Matar Todo
|
34
|
+
LastRetry: Último Reintento
|
35
|
+
Latency: Latencia
|
36
|
+
LivePoll: Sondeo en Vivo
|
55
37
|
MemoryUsage: Uso de Memoria
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
OneMonth: 1 mes
|
60
|
-
ThreeMonths: 3 meses
|
61
|
-
SixMonths: 6 meses
|
62
|
-
Failures: Fallas
|
63
|
-
DeadJobs: Trabajos muertos
|
38
|
+
Name: Nombre
|
39
|
+
Namespace: Espacio de Nombre
|
40
|
+
NextRetry: Siguiente Intento
|
64
41
|
NoDeadJobsFound: No hay trabajos muertos
|
65
|
-
|
42
|
+
NoRetriesFound: No se encontraron reintentos
|
43
|
+
NoScheduledFound: No se encontraron trabajos pendientes
|
44
|
+
NotYetEnqueued: Aún no en cola
|
45
|
+
OneMonth: 1 mes
|
46
|
+
OneWeek: 1 semana
|
47
|
+
OriginallyFailed: Falló Originalmente
|
48
|
+
Pause: Pausar
|
49
|
+
Paused: Pausado
|
50
|
+
PeakMemoryUsage: Máximo Uso de Memoria
|
51
|
+
Plugins: Plugins
|
52
|
+
PollingInterval: Intervalo de Sondeo
|
53
|
+
Process: Proceso
|
54
|
+
Processed: Procesadas
|
66
55
|
Processes: Procesos
|
56
|
+
Queue: Cola
|
57
|
+
Queues: Colas
|
58
|
+
Quiet: Silenciar
|
59
|
+
QuietAll: Silenciar Todo
|
60
|
+
Realtime: Tiempo Real
|
61
|
+
Retries: Reintentos
|
62
|
+
RetryAll: Reintentar Todo
|
63
|
+
RetryCount: Numero de Reintentos
|
64
|
+
RetryNow: Reintentar Ahora
|
65
|
+
Scheduled: Programadas
|
66
|
+
ScheduledJobs: Trabajos programados
|
67
|
+
ShowAll: Mostrar Todo
|
68
|
+
SixMonths: 6 meses
|
69
|
+
Size: Tamaño
|
70
|
+
Started: Hora de Inicio
|
71
|
+
Status: Estatus
|
72
|
+
Stop: Detener
|
73
|
+
StopAll: Detener Todo
|
74
|
+
StopPolling: Detener Sondeo
|
67
75
|
Thread: Hilo
|
68
76
|
Threads: Hilos
|
69
|
-
|
70
|
-
|
77
|
+
ThreeMonths: 3 meses
|
78
|
+
Time: Tiempo
|
79
|
+
Unpause: Reanudar
|
80
|
+
Uptime: Tiempo de Funcionamiento (días)
|
81
|
+
Utilization: Utilización
|
82
|
+
Version: Versión
|
83
|
+
When: Cuando
|
84
|
+
Worker: Trabajador
|
85
|
+
active: activo
|
86
|
+
idle: inactivo
|
data/web/locales/fa.yml
CHANGED
@@ -1,80 +1,80 @@
|
|
1
1
|
# elements like %{queue} are variables and should not be translated
|
2
|
-
fa:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
2
|
+
fa:
|
3
|
+
Actions: اعمال
|
4
|
+
AddToQueue: افزودن به صف
|
5
|
+
AreYouSure: آیا مطمعن هستید?
|
6
|
+
AreYouSureDeleteJob: آیا شما مطمعن هستید از حذف این کار ؟
|
7
|
+
AreYouSureDeleteQueue: ایا شما مطمعنید از حذف %{queue} ?
|
8
|
+
Arguments: آرگومنت
|
9
|
+
BackToApp: برگشت به برنامه
|
10
10
|
Busy: مشغول
|
11
|
-
Processed: پردازش شده
|
12
|
-
Failed: ناموفق
|
13
|
-
Scheduled: زمان بندی
|
14
|
-
Retries: تکرار
|
15
|
-
Enqueued: صف بندی نشدند
|
16
|
-
Worker: کارگزار
|
17
|
-
LivePoll: Live Poll
|
18
|
-
StopPolling: Stop Polling
|
19
|
-
Queue: صف
|
20
11
|
Class: کلاس
|
21
|
-
|
22
|
-
|
23
|
-
Extras: اضافی
|
24
|
-
Started: شروع شده
|
25
|
-
ShowAll: نمایش همه
|
12
|
+
Connections: ارتباطات
|
13
|
+
CreatedAt: ساخته شده در
|
26
14
|
CurrentMessagesInQueue: کار فعلی در <span class='title'>%{queue}</span>
|
15
|
+
Dashboard: داشبورد
|
16
|
+
Dead: مرده
|
17
|
+
DeadJobs: کار مرده
|
27
18
|
Delete: حذف
|
28
|
-
AddToQueue: افزودن به صف
|
29
|
-
AreYouSureDeleteJob: آیا شما مطمعن هستید از حذف این کار ؟
|
30
|
-
AreYouSureDeleteQueue: ایا شما مطمعنید از حذف %{queue} ?
|
31
|
-
Queues: صف ها
|
32
|
-
Size: سایز
|
33
|
-
Actions: اعمال
|
34
|
-
NextRetry: بار دیگر تلاش کنید
|
35
|
-
RetryCount: تعداد تلاش ها
|
36
|
-
RetryNow: تلاش مجدد
|
37
|
-
Kill: کشتن
|
38
|
-
LastRetry: آخرین تلاش
|
39
|
-
OriginallyFailed: Originally Failed
|
40
|
-
AreYouSure: آیا مطمعن هستید?
|
41
19
|
DeleteAll: حذف همه
|
42
|
-
|
43
|
-
NoRetriesFound: هیچ تلاش پیدا نشد
|
20
|
+
Enqueued: صف بندی نشدند
|
44
21
|
Error: خطا
|
22
|
+
ErrorBacktrace: خطای معکوس
|
45
23
|
ErrorClass: خطا کلاس
|
46
24
|
ErrorMessage: پیغام خطا
|
47
|
-
|
25
|
+
Extras: اضافی
|
26
|
+
Failed: ناموفق
|
27
|
+
Failures: شکست ها
|
48
28
|
GoBack: ← برگشت
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
Connections: ارتباطات
|
29
|
+
History: تاریخچه
|
30
|
+
Job: کار
|
31
|
+
Jobs: کار ها
|
32
|
+
Kill: کشتن
|
33
|
+
LastRetry: آخرین تلاش
|
34
|
+
LivePoll: Live Poll
|
56
35
|
MemoryUsage: حافظه استفاده شده
|
57
|
-
|
58
|
-
|
59
|
-
OneWeek: ۱ هفته
|
60
|
-
OneMonth: ۱ ماه
|
61
|
-
ThreeMonths: ۳ ماه
|
62
|
-
SixMonths: ۶ ماه
|
63
|
-
Failures: شکست ها
|
64
|
-
DeadJobs: کار مرده
|
36
|
+
Namespace: فضای نام
|
37
|
+
NextRetry: بار دیگر تلاش کنید
|
65
38
|
NoDeadJobsFound: کار مرده ای یافت نشد
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
39
|
+
NoRetriesFound: هیچ تلاش پیدا نشد
|
40
|
+
NoScheduledFound: هیچ کار برنامه ریزی شده ای یافت نشد
|
41
|
+
NotYetEnqueued: بدون صف بندی
|
42
|
+
OneMonth: ۱ ماه
|
43
|
+
OneWeek: ۱ هفته
|
44
|
+
OriginallyFailed: Originally Failed
|
71
45
|
Paused: مکث
|
72
|
-
|
46
|
+
PeakMemoryUsage: اوج حافظه استفاده شده
|
47
|
+
Plugins: پلاگین ها
|
48
|
+
PollingInterval: Polling interval
|
49
|
+
Processed: پردازش شده
|
50
|
+
Processes: پردازش ها
|
51
|
+
Queue: صف
|
52
|
+
Queues: صف ها
|
73
53
|
Quiet: خروج
|
74
|
-
StopAll: توقف همه
|
75
54
|
QuietAll: خروج همه
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
55
|
+
Realtime: زنده
|
56
|
+
Retries: تکرار
|
57
|
+
RetryAll: تلاش مجدد برای همه
|
58
|
+
RetryCount: تعداد تلاش ها
|
59
|
+
RetryNow: تلاش مجدد
|
60
|
+
Scheduled: زمان بندی
|
61
|
+
ScheduledJobs: کار برنامه ریزی شده
|
62
|
+
ShowAll: نمایش همه
|
63
|
+
SixMonths: ۶ ماه
|
64
|
+
Size: سایز
|
65
|
+
Started: شروع شده
|
66
|
+
Status: اعلان
|
67
|
+
Stop: توقف
|
68
|
+
StopAll: توقف همه
|
69
|
+
StopPolling: Stop Polling
|
70
|
+
TextDirection: 'rtl'
|
71
|
+
Thread: رشته
|
72
|
+
Threads: رشته ها
|
73
|
+
ThreeMonths: ۳ ماه
|
74
|
+
Time: رمان
|
75
|
+
Uptime: آپ تایم (روز)
|
76
|
+
Version: ورژن
|
77
|
+
When: وقتی که
|
78
|
+
Worker: کارگزار
|
79
|
+
active: فعال
|
80
|
+
idle: بیهودی
|
data/web/locales/fr.yml
CHANGED
@@ -1,78 +1,99 @@
|
|
1
1
|
# elements like %{queue} are variables and should not be translated
|
2
2
|
fr:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
3
|
+
Actions: Actions
|
4
|
+
AddToQueue: Ajouter à la queue
|
5
|
+
AreYouSure: Êtes-vous certain ?
|
6
|
+
AreYouSureDeleteJob: Êtes-vous certain de vouloir supprimer cette tâche ?
|
7
|
+
AreYouSureDeleteQueue: Êtes-vous certain de vouloir supprimer la queue %{queue} ?
|
8
|
+
Arguments: Arguments
|
9
|
+
Back to App: Retour à l'application
|
9
10
|
Busy: En cours
|
10
|
-
Processed: Traitées
|
11
|
-
Failed: Échouées
|
12
|
-
Scheduled: Planifiées
|
13
|
-
Retries: Tentatives
|
14
|
-
Enqueued: En attente
|
15
|
-
Worker: Travailleur
|
16
|
-
LivePoll: Temps réel
|
17
|
-
StopPolling: Arrêt du temps réel
|
18
|
-
Queue: Queue
|
19
11
|
Class: Classe
|
20
|
-
|
21
|
-
|
22
|
-
Extras: Extras
|
23
|
-
Started: Démarrée
|
24
|
-
ShowAll: Tout montrer
|
12
|
+
Connections: Connexions
|
13
|
+
CreatedAt: Créée le
|
25
14
|
CurrentMessagesInQueue: Messages actuellement dans <span class='title'>%{queue}</span>
|
15
|
+
Dashboard: Tableau de Bord
|
16
|
+
Dead: Mortes
|
17
|
+
DeadJobs: Tâches mortes
|
26
18
|
Delete: Supprimer
|
27
|
-
AddToQueue: Ajouter à la queue
|
28
|
-
AreYouSureDeleteJob: Êtes-vous certain de vouloir supprimer cette tâche ?
|
29
|
-
AreYouSureDeleteQueue: Êtes-vous certain de vouloir supprimer la queue %{queue} ?
|
30
|
-
Queues: Queues
|
31
|
-
Size: Taille
|
32
|
-
Actions: Actions
|
33
|
-
NextRetry: Prochain essai
|
34
|
-
RetryCount: Nombre d'essais
|
35
|
-
RetryNow: Réessayer maintenant
|
36
|
-
Kill: Tuer
|
37
|
-
LastRetry: Dernier essai
|
38
|
-
OriginallyFailed: Échec initial
|
39
|
-
AreYouSure: Êtes-vous certain ?
|
40
19
|
DeleteAll: Tout supprimer
|
41
|
-
|
42
|
-
|
20
|
+
Deploy: Déploiement
|
21
|
+
Enqueued: En attente
|
43
22
|
Error: Erreur
|
23
|
+
ErrorBacktrace: Backtrace d’erreur
|
44
24
|
ErrorClass: Classe d’erreur
|
45
25
|
ErrorMessage: Message d’erreur
|
46
|
-
|
26
|
+
ExecutionTime: Temps d'exécution
|
27
|
+
Extras: Extras
|
28
|
+
Failed: Échouées
|
29
|
+
Failures: Echecs
|
30
|
+
Failure: Echec
|
47
31
|
GoBack: ← Retour
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
32
|
+
History: Historique
|
33
|
+
Job: Tâche
|
34
|
+
Jobs: Tâches
|
35
|
+
Kill: Tuer
|
36
|
+
KillAll: Tout tuer
|
37
|
+
LastRetry: Dernier essai
|
38
|
+
Latency: Latence
|
39
|
+
LivePoll: Temps réel
|
55
40
|
MemoryUsage: Mémoire utilisée
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
OneMonth: 1 mois
|
60
|
-
ThreeMonths: 3 mois
|
61
|
-
SixMonths: 6 mois
|
62
|
-
Failures: Echecs
|
63
|
-
DeadJobs: Tâches mortes
|
41
|
+
Name: Nom
|
42
|
+
Namespace: Namespace
|
43
|
+
NextRetry: Prochain essai
|
64
44
|
NoDeadJobsFound: Aucune tâche morte n'a été trouvée
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
45
|
+
NoRetriesFound: Aucune tâche à réessayer n’a été trouvée
|
46
|
+
NoScheduledFound: Aucune tâche planifiée n'a été trouvée
|
47
|
+
NotYetEnqueued: Pas encore en file d'attente
|
48
|
+
OneMonth: 1 mois
|
49
|
+
OneWeek: 1 semaine
|
50
|
+
OriginallyFailed: Échec initial
|
51
|
+
Pause: Pause
|
70
52
|
Paused: Mise en pause
|
53
|
+
PeakMemoryUsage: Mémoire utilisée (max.)
|
54
|
+
Plugins: Plugins
|
55
|
+
PollingInterval: Intervalle de rafraîchissement
|
56
|
+
Process: Processus
|
57
|
+
Processed: Traitées
|
58
|
+
Processes: Processus
|
59
|
+
Queue: Queue
|
60
|
+
Queues: Queues
|
61
|
+
Quiet: Clore
|
62
|
+
QuietAll: Tout clore
|
63
|
+
Realtime: Temps réel
|
64
|
+
Retries: Tentatives
|
65
|
+
RetryAll: Tout réessayer
|
66
|
+
RetryCount: Nombre d'essais
|
67
|
+
RetryNow: Réessayer maintenant
|
68
|
+
Scheduled: Planifiées
|
69
|
+
ScheduledJobs: Tâches planifiées
|
70
|
+
Seconds: Secondes
|
71
|
+
ShowAll: Tout montrer
|
72
|
+
SixMonths: 6 mois
|
73
|
+
Size: Taille
|
74
|
+
Started: Démarrée
|
75
|
+
Status: État
|
71
76
|
Stop: Arrêter
|
72
|
-
Quiet: Clôturer
|
73
77
|
StopAll: Tout arrêter
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
78
|
+
StopPolling: Arrêt du temps réel
|
79
|
+
Success: Succès
|
80
|
+
Summary: Résumé
|
81
|
+
Thread: Thread
|
82
|
+
Threads: Threads
|
83
|
+
ThreeMonths: 3 mois
|
84
|
+
Time: Heure
|
85
|
+
Unpause: Unpause
|
86
|
+
Uptime: Uptime (jours)
|
87
|
+
Utilization: Utilisation
|
88
|
+
Version: Version
|
89
|
+
When: Quand
|
90
|
+
Worker: Travailleur
|
91
|
+
active: actif
|
92
|
+
idle: inactif
|
93
|
+
Metrics: Métriques
|
94
|
+
NoDataFound: Aucune donnée disponible
|
95
|
+
TotalExecutionTime: Temps d'exécution total
|
96
|
+
AvgExecutionTime: Temps d'exécution moyen
|
97
|
+
Context: Contexte
|
98
|
+
Bucket: Bucket
|
99
|
+
NoJobMetricsFound: Aucune statistique de tâche récente n'a été trouvée
|