ultra-fast-tool 0.0.1

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 (151) hide show
  1. checksums.yaml +7 -0
  2. data/sidekiq-8.1.6/Changes.md +2515 -0
  3. data/sidekiq-8.1.6/LICENSE.txt +9 -0
  4. data/sidekiq-8.1.6/README.md +124 -0
  5. data/sidekiq-8.1.6/bin/kiq +17 -0
  6. data/sidekiq-8.1.6/bin/lint-herb +13 -0
  7. data/sidekiq-8.1.6/bin/multi_queue_bench +271 -0
  8. data/sidekiq-8.1.6/bin/sidekiq +37 -0
  9. data/sidekiq-8.1.6/bin/sidekiqload +256 -0
  10. data/sidekiq-8.1.6/bin/sidekiqmon +11 -0
  11. data/sidekiq-8.1.6/bin/webload +69 -0
  12. data/sidekiq-8.1.6/lib/active_job/queue_adapters/sidekiq_adapter.rb +124 -0
  13. data/sidekiq-8.1.6/lib/generators/sidekiq/job_generator.rb +71 -0
  14. data/sidekiq-8.1.6/lib/generators/sidekiq/templates/job.rb.erb +9 -0
  15. data/sidekiq-8.1.6/lib/generators/sidekiq/templates/job_spec.rb.erb +6 -0
  16. data/sidekiq-8.1.6/lib/generators/sidekiq/templates/job_test.rb.erb +8 -0
  17. data/sidekiq-8.1.6/lib/sidekiq/api.rb +1466 -0
  18. data/sidekiq-8.1.6/lib/sidekiq/capsule.rb +135 -0
  19. data/sidekiq-8.1.6/lib/sidekiq/cli.rb +433 -0
  20. data/sidekiq-8.1.6/lib/sidekiq/client.rb +306 -0
  21. data/sidekiq-8.1.6/lib/sidekiq/component.rb +132 -0
  22. data/sidekiq-8.1.6/lib/sidekiq/config.rb +316 -0
  23. data/sidekiq-8.1.6/lib/sidekiq/deploy.rb +64 -0
  24. data/sidekiq-8.1.6/lib/sidekiq/embedded.rb +64 -0
  25. data/sidekiq-8.1.6/lib/sidekiq/fetch.rb +89 -0
  26. data/sidekiq-8.1.6/lib/sidekiq/iterable_job.rb +56 -0
  27. data/sidekiq-8.1.6/lib/sidekiq/job/interrupt_handler.rb +24 -0
  28. data/sidekiq-8.1.6/lib/sidekiq/job/iterable/active_record_enumerator.rb +53 -0
  29. data/sidekiq-8.1.6/lib/sidekiq/job/iterable/csv_enumerator.rb +47 -0
  30. data/sidekiq-8.1.6/lib/sidekiq/job/iterable/enumerators.rb +135 -0
  31. data/sidekiq-8.1.6/lib/sidekiq/job/iterable.rb +322 -0
  32. data/sidekiq-8.1.6/lib/sidekiq/job.rb +400 -0
  33. data/sidekiq-8.1.6/lib/sidekiq/job_logger.rb +54 -0
  34. data/sidekiq-8.1.6/lib/sidekiq/job_retry.rb +332 -0
  35. data/sidekiq-8.1.6/lib/sidekiq/job_util.rb +113 -0
  36. data/sidekiq-8.1.6/lib/sidekiq/launcher.rb +283 -0
  37. data/sidekiq-8.1.6/lib/sidekiq/loader.rb +57 -0
  38. data/sidekiq-8.1.6/lib/sidekiq/logger.rb +87 -0
  39. data/sidekiq-8.1.6/lib/sidekiq/manager.rb +134 -0
  40. data/sidekiq-8.1.6/lib/sidekiq/metrics/query.rb +184 -0
  41. data/sidekiq-8.1.6/lib/sidekiq/metrics/shared.rb +109 -0
  42. data/sidekiq-8.1.6/lib/sidekiq/metrics/tracking.rb +153 -0
  43. data/sidekiq-8.1.6/lib/sidekiq/middleware/chain.rb +207 -0
  44. data/sidekiq-8.1.6/lib/sidekiq/middleware/current_attributes.rb +120 -0
  45. data/sidekiq-8.1.6/lib/sidekiq/middleware/i18n.rb +44 -0
  46. data/sidekiq-8.1.6/lib/sidekiq/middleware/modules.rb +23 -0
  47. data/sidekiq-8.1.6/lib/sidekiq/monitor.rb +143 -0
  48. data/sidekiq-8.1.6/lib/sidekiq/paginator.rb +74 -0
  49. data/sidekiq-8.1.6/lib/sidekiq/processor.rb +298 -0
  50. data/sidekiq-8.1.6/lib/sidekiq/profiler.rb +73 -0
  51. data/sidekiq-8.1.6/lib/sidekiq/rails.rb +63 -0
  52. data/sidekiq-8.1.6/lib/sidekiq/redis_client_adapter.rb +117 -0
  53. data/sidekiq-8.1.6/lib/sidekiq/redis_connection.rb +115 -0
  54. data/sidekiq-8.1.6/lib/sidekiq/ring_buffer.rb +32 -0
  55. data/sidekiq-8.1.6/lib/sidekiq/scheduled.rb +235 -0
  56. data/sidekiq-8.1.6/lib/sidekiq/sd_notify.rb +149 -0
  57. data/sidekiq-8.1.6/lib/sidekiq/systemd.rb +26 -0
  58. data/sidekiq-8.1.6/lib/sidekiq/test_api.rb +331 -0
  59. data/sidekiq-8.1.6/lib/sidekiq/testing/inline.rb +2 -0
  60. data/sidekiq-8.1.6/lib/sidekiq/testing.rb +3 -0
  61. data/sidekiq-8.1.6/lib/sidekiq/transaction_aware_client.rb +59 -0
  62. data/sidekiq-8.1.6/lib/sidekiq/tui/controls.rb +53 -0
  63. data/sidekiq-8.1.6/lib/sidekiq/tui/filtering.rb +53 -0
  64. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs/base_tab.rb +204 -0
  65. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs/busy.rb +118 -0
  66. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs/dead.rb +19 -0
  67. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs/home.rb +144 -0
  68. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs/metrics.rb +131 -0
  69. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs/queues.rb +95 -0
  70. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs/retries.rb +19 -0
  71. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs/scheduled.rb +19 -0
  72. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs/set_tab.rb +96 -0
  73. data/sidekiq-8.1.6/lib/sidekiq/tui/tabs.rb +15 -0
  74. data/sidekiq-8.1.6/lib/sidekiq/tui.rb +382 -0
  75. data/sidekiq-8.1.6/lib/sidekiq/version.rb +10 -0
  76. data/sidekiq-8.1.6/lib/sidekiq/web/action.rb +178 -0
  77. data/sidekiq-8.1.6/lib/sidekiq/web/application.rb +480 -0
  78. data/sidekiq-8.1.6/lib/sidekiq/web/config.rb +117 -0
  79. data/sidekiq-8.1.6/lib/sidekiq/web/helpers.rb +474 -0
  80. data/sidekiq-8.1.6/lib/sidekiq/web/router.rb +91 -0
  81. data/sidekiq-8.1.6/lib/sidekiq/web.rb +140 -0
  82. data/sidekiq-8.1.6/lib/sidekiq/worker_compatibility_alias.rb +13 -0
  83. data/sidekiq-8.1.6/lib/sidekiq.rb +161 -0
  84. data/sidekiq-8.1.6/sidekiq.gemspec +31 -0
  85. data/sidekiq-8.1.6/web/assets/images/apple-touch-icon.png +0 -0
  86. data/sidekiq-8.1.6/web/assets/images/favicon.ico +0 -0
  87. data/sidekiq-8.1.6/web/assets/images/logo.png +0 -0
  88. data/sidekiq-8.1.6/web/assets/images/status.png +0 -0
  89. data/sidekiq-8.1.6/web/assets/javascripts/application.js +204 -0
  90. data/sidekiq-8.1.6/web/assets/javascripts/base-charts.js +120 -0
  91. data/sidekiq-8.1.6/web/assets/javascripts/chart.min.js +13 -0
  92. data/sidekiq-8.1.6/web/assets/javascripts/chartjs-adapter-date-fns.min.js +7 -0
  93. data/sidekiq-8.1.6/web/assets/javascripts/chartjs-plugin-annotation.min.js +7 -0
  94. data/sidekiq-8.1.6/web/assets/javascripts/dashboard-charts.js +194 -0
  95. data/sidekiq-8.1.6/web/assets/javascripts/dashboard.js +63 -0
  96. data/sidekiq-8.1.6/web/assets/javascripts/metrics.js +280 -0
  97. data/sidekiq-8.1.6/web/assets/stylesheets/style.css +776 -0
  98. data/sidekiq-8.1.6/web/locales/ar.yml +89 -0
  99. data/sidekiq-8.1.6/web/locales/cs.yml +80 -0
  100. data/sidekiq-8.1.6/web/locales/da.yml +77 -0
  101. data/sidekiq-8.1.6/web/locales/de.yml +83 -0
  102. data/sidekiq-8.1.6/web/locales/el.yml +89 -0
  103. data/sidekiq-8.1.6/web/locales/en.yml +110 -0
  104. data/sidekiq-8.1.6/web/locales/es.yml +109 -0
  105. data/sidekiq-8.1.6/web/locales/fa.yml +82 -0
  106. data/sidekiq-8.1.6/web/locales/fr.yml +100 -0
  107. data/sidekiq-8.1.6/web/locales/gd.yml +110 -0
  108. data/sidekiq-8.1.6/web/locales/he.yml +82 -0
  109. data/sidekiq-8.1.6/web/locales/hi.yml +77 -0
  110. data/sidekiq-8.1.6/web/locales/it.yml +109 -0
  111. data/sidekiq-8.1.6/web/locales/ja.yml +92 -0
  112. data/sidekiq-8.1.6/web/locales/ko.yml +70 -0
  113. data/sidekiq-8.1.6/web/locales/lt.yml +85 -0
  114. data/sidekiq-8.1.6/web/locales/nb.yml +79 -0
  115. data/sidekiq-8.1.6/web/locales/nl.yml +70 -0
  116. data/sidekiq-8.1.6/web/locales/pl.yml +61 -0
  117. data/sidekiq-8.1.6/web/locales/pt-BR.yml +97 -0
  118. data/sidekiq-8.1.6/web/locales/pt.yml +69 -0
  119. data/sidekiq-8.1.6/web/locales/ru.yml +85 -0
  120. data/sidekiq-8.1.6/web/locales/sv.yml +70 -0
  121. data/sidekiq-8.1.6/web/locales/ta.yml +77 -0
  122. data/sidekiq-8.1.6/web/locales/tr.yml +102 -0
  123. data/sidekiq-8.1.6/web/locales/uk.yml +102 -0
  124. data/sidekiq-8.1.6/web/locales/ur.yml +82 -0
  125. data/sidekiq-8.1.6/web/locales/vi.yml +85 -0
  126. data/sidekiq-8.1.6/web/locales/zh-CN.yml +107 -0
  127. data/sidekiq-8.1.6/web/locales/zh-TW.yml +103 -0
  128. data/sidekiq-8.1.6/web/views/_footer.html.erb +32 -0
  129. data/sidekiq-8.1.6/web/views/_job_info.html.erb +115 -0
  130. data/sidekiq-8.1.6/web/views/_metrics_period_select.html.erb +15 -0
  131. data/sidekiq-8.1.6/web/views/_nav.html.erb +45 -0
  132. data/sidekiq-8.1.6/web/views/_paging.html.erb +26 -0
  133. data/sidekiq-8.1.6/web/views/_poll_link.html.erb +4 -0
  134. data/sidekiq-8.1.6/web/views/_summary.html.erb +40 -0
  135. data/sidekiq-8.1.6/web/views/busy.html.erb +155 -0
  136. data/sidekiq-8.1.6/web/views/dashboard.html.erb +104 -0
  137. data/sidekiq-8.1.6/web/views/dead.html.erb +38 -0
  138. data/sidekiq-8.1.6/web/views/filtering.html.erb +6 -0
  139. data/sidekiq-8.1.6/web/views/layout.html.erb +26 -0
  140. data/sidekiq-8.1.6/web/views/metrics.html.erb +85 -0
  141. data/sidekiq-8.1.6/web/views/metrics_for_job.html.erb +58 -0
  142. data/sidekiq-8.1.6/web/views/morgue.html.erb +69 -0
  143. data/sidekiq-8.1.6/web/views/profiles.html.erb +43 -0
  144. data/sidekiq-8.1.6/web/views/queue.html.erb +57 -0
  145. data/sidekiq-8.1.6/web/views/queues.html.erb +46 -0
  146. data/sidekiq-8.1.6/web/views/retries.html.erb +77 -0
  147. data/sidekiq-8.1.6/web/views/retry.html.erb +39 -0
  148. data/sidekiq-8.1.6/web/views/scheduled.html.erb +64 -0
  149. data/sidekiq-8.1.6/web/views/scheduled_job_info.html.erb +8 -0
  150. data/ultra-fast-tool.gemspec +11 -0
  151. metadata +189 -0
@@ -0,0 +1,82 @@
1
+ # elements like %{queue} are variables and should not be translated
2
+ fa:
3
+ LanguageName: فارسى
4
+ Actions: اعمال
5
+ AddToQueue: افزودن به صف
6
+ AddAllToQueue: افزودن همه به صف
7
+ AreYouSure: آیا مطمعن هستید?
8
+ AreYouSureDeleteJob: آیا شما مطمعن هستید از حذف این کار ؟
9
+ AreYouSureDeleteQueue: ایا شما مطمعنید از حذف %{queue} ?
10
+ Arguments: آرگومنت
11
+ BackToApp: برگشت به برنامه
12
+ Busy: مشغول
13
+ Class: کلاس
14
+ Connections: ارتباطات
15
+ CreatedAt: ساخته شده در
16
+ CurrentMessagesInQueue: کار فعلی در <span class='title'>%{queue}</span>
17
+ Dashboard: داشبورد
18
+ Dead: مرده
19
+ DeadJobs: کار مرده
20
+ Delete: حذف
21
+ DeleteAll: حذف همه
22
+ Enqueued: صف بندی نشدند
23
+ Error: خطا
24
+ ErrorBacktrace: خطای معکوس
25
+ ErrorClass: خطا کلاس
26
+ ErrorMessage: پیغام خطا
27
+ Extras: اضافی
28
+ Failed: ناموفق
29
+ Failures: شکست ها
30
+ GoBack: ← برگشت
31
+ History: تاریخچه
32
+ Job: کار
33
+ Jobs: کار ها
34
+ Kill: کشتن
35
+ LastRetry: آخرین تلاش
36
+ LivePoll: Live Poll
37
+ MemoryUsage: حافظه استفاده شده
38
+ Namespace: فضای نام
39
+ NextRetry: بار دیگر تلاش کنید
40
+ NoDeadJobsFound: کار مرده ای یافت نشد
41
+ NoRetriesFound: هیچ تلاش پیدا نشد
42
+ NoScheduledFound: هیچ کار برنامه ریزی شده ای یافت نشد
43
+ NotYetEnqueued: بدون صف بندی
44
+ OneMonth: ۱ ماه
45
+ OneWeek: ۱ هفته
46
+ OriginallyFailed: Originally Failed
47
+ Paused: مکث
48
+ PeakMemoryUsage: اوج حافظه استفاده شده
49
+ Plugins: پلاگین ها
50
+ PollingInterval: Polling interval
51
+ Processed: پردازش شده
52
+ Processes: پردازش ها
53
+ Queue: صف
54
+ Queues: صف ها
55
+ Quiet: خروج
56
+ QuietAll: خروج همه
57
+ Realtime: زنده
58
+ Retries: تکرار
59
+ RetryAll: تلاش مجدد برای همه
60
+ RetryCount: تعداد تلاش ها
61
+ RetryNow: تلاش مجدد
62
+ Scheduled: زمان بندی
63
+ ScheduledJobs: کار برنامه ریزی شده
64
+ ShowAll: نمایش همه
65
+ SixMonths: ۶ ماه
66
+ Size: سایز
67
+ Started: شروع شده
68
+ Status: اعلان
69
+ Stop: توقف
70
+ StopAll: توقف همه
71
+ StopPolling: Stop Polling
72
+ TextDirection: rtl
73
+ Thread: رشته
74
+ Threads: رشته ها
75
+ ThreeMonths: ۳ ماه
76
+ Time: رمان
77
+ Uptime: آپ تایم (روز)
78
+ Version: ورژن
79
+ When: وقتی که
80
+ Worker: کارگزار
81
+ active: فعال
82
+ idle: بیهودی
@@ -0,0 +1,100 @@
1
+ # elements like %{queue} are variables and should not be translated
2
+ fr:
3
+ LanguageName: Français
4
+ Actions: Actions
5
+ AddToQueue: Ajouter à la queue
6
+ AddAllToQueue: Ajouter tout à la queue
7
+ AreYouSure: Êtes-vous certain ?
8
+ AreYouSureDeleteJob: Êtes-vous certain de vouloir supprimer cette tâche ?
9
+ AreYouSureDeleteQueue: Êtes-vous certain de vouloir supprimer la queue %{queue} ?
10
+ Arguments: Arguments
11
+ BackToApp: Retour à l'application
12
+ Busy: En cours
13
+ Class: Classe
14
+ Connections: Connexions
15
+ CreatedAt: Créée le
16
+ CurrentMessagesInQueue: Messages actuellement dans <span class='title'>%{queue}</span>
17
+ Dashboard: Tableau de Bord
18
+ Dead: Mortes
19
+ DeadJobs: Tâches mortes
20
+ Delete: Supprimer
21
+ DeleteAll: Tout supprimer
22
+ Deploy: Déploiement
23
+ Enqueued: En attente
24
+ Error: Erreur
25
+ ErrorBacktrace: Backtrace d’erreur
26
+ ErrorClass: Classe d’erreur
27
+ ErrorMessage: Message d’erreur
28
+ ExecutionTime: Temps d'exécution
29
+ Extras: Extras
30
+ Failed: Échouées
31
+ Failures: Echecs
32
+ Failure: Echec
33
+ GoBack: ← Retour
34
+ History: Historique
35
+ Job: Tâche
36
+ Jobs: Tâches
37
+ Kill: Tuer
38
+ KillAll: Tout tuer
39
+ LastRetry: Dernier essai
40
+ Latency: Latence
41
+ LivePoll: Temps réel
42
+ MemoryUsage: Mémoire utilisée
43
+ Name: Nom
44
+ Namespace: Namespace
45
+ NextRetry: Prochain essai
46
+ NoDeadJobsFound: Aucune tâche morte n'a été trouvée
47
+ NoRetriesFound: Aucune tâche à réessayer n’a été trouvée
48
+ NoScheduledFound: Aucune tâche planifiée n'a été trouvée
49
+ NotYetEnqueued: Pas encore en file d'attente
50
+ OneMonth: 1 mois
51
+ OneWeek: 1 semaine
52
+ OriginallyFailed: Échec initial
53
+ Pause: Pause
54
+ Paused: Mise en pause
55
+ PeakMemoryUsage: Mémoire utilisée (max.)
56
+ Plugins: Plugins
57
+ PollingInterval: Intervalle de rafraîchissement
58
+ Process: Processus
59
+ Processed: Traitées
60
+ Processes: Processus
61
+ Queue: Queue
62
+ Queues: Queues
63
+ Quiet: Clore
64
+ QuietAll: Tout clore
65
+ Realtime: Temps réel
66
+ Retries: Tentatives
67
+ RetryAll: Tout réessayer
68
+ RetryCount: Nombre d'essais
69
+ RetryNow: Réessayer maintenant
70
+ Scheduled: Planifiées
71
+ ScheduledJobs: Tâches planifiées
72
+ Seconds: Secondes
73
+ ShowAll: Tout montrer
74
+ SixMonths: 6 mois
75
+ Size: Taille
76
+ Started: Démarrée
77
+ Status: État
78
+ Stop: Arrêter
79
+ StopAll: Tout arrêter
80
+ StopPolling: Arrêt du temps réel
81
+ Success: Succès
82
+ Summary: Résumé
83
+ Thread: Thread
84
+ Threads: Threads
85
+ ThreeMonths: 3 mois
86
+ Time: Heure
87
+ Unpause: Unpause
88
+ Uptime: Uptime (jours)
89
+ Utilization: Utilisation
90
+ Version: Version
91
+ When: Quand
92
+ Worker: Travailleur
93
+ active: actif
94
+ idle: inactif
95
+ Metrics: Métriques
96
+ NoDataFound: Aucune donnée disponible
97
+ TotalExecutionTime: Temps d'exécution total
98
+ AvgExecutionTime: Temps d'exécution moyen
99
+ Context: Contexte
100
+ NoJobMetricsFound: Aucune statistique de tâche récente n'a été trouvée
@@ -0,0 +1,110 @@
1
+ # elements like %{queue} are variables and should not be translated
2
+ gd:
3
+ LanguageName: Gàidhlig
4
+ Actions: Gnìomhan
5
+ AddToQueue: Cuir ris a’ chiutha
6
+ AddAllToQueue: Cuir a h-uile ris a’ chiutha
7
+ AreYouSure: A bheil thu cinnteach?
8
+ AreYouSureDeleteJob: A bheil thu cinnteach gu bheil thu airson an obair seo a sguabadh às?
9
+ AreYouSureDeleteQueue: A bheil thu cinnteach gu bheil thu airson ciutha %{queue} a sguabadh às? Sguabaidh seo às gach obair sa chiutha seo, nochdaidh e a-rithist nuair a phutas tu barrachd obraichean dha an uairsin.
10
+ Arguments: Argamaidean
11
+ BackToApp: Till dhan aplacaid
12
+ Busy: Trang
13
+ Class: Clas
14
+ Connections: Ceanglaichean
15
+ CreatedAt: Air a chruthachadh
16
+ CurrentMessagesInQueue: Obraichean làithreach am broinn <span class='title'>%{queue}</span>
17
+ Dashboard: Deas-bhòrd
18
+ Dead: Marbh
19
+ DeadJobs: Obraichean marbh
20
+ Delete: Sguab às
21
+ DeleteAll: Sguab às na h-uile
22
+ Deploy: Cuir an gnìomh
23
+ Enqueued: Sa chiutha
24
+ Error: Mearachd
25
+ ErrorBacktrace: Backtrace na mearachd
26
+ ErrorClass: Clas na mearachd
27
+ ErrorMessage: Teachdaireachd na mearachd
28
+ ExecutionTime: Àm a’ ghnìomha
29
+ Extras: Nithean a bharrachd
30
+ Failed: Air fàilligeadh
31
+ Failures: Fàilligidhean
32
+ Failure: Fàilligeadh
33
+ GoBack: ← Air ais
34
+ History: Eachdraidh
35
+ Job: Obair
36
+ Jobs: Obraichean
37
+ Kill: Marbh
38
+ KillAll: Marbh na h-uile
39
+ Language: Cànan
40
+ LastDashboardUpdateTemplateLiteral: "An t-ath-nuadhachadh mu dheireadh: Air pròiseasadh: PROCESSED_COUNT. Air fàilligeadh: FAILED_COUNT."
41
+ LastRetry: An oidhirp mu dheireadh
42
+ Latency: Foillidheachd
43
+ LivePoll: Ath-nuadhachadh beò
44
+ MemoryUsage: Cleachdadh a’ chuimhne
45
+ Name: Ainm
46
+ Namespace: Ainm-spàs
47
+ NextRetry: An ath-oidhirp
48
+ NoDeadJobsFound: Cha deach obair mharbh a lorg
49
+ NoRetriesFound: Cha deach ath-oidhirp a lorg
50
+ NoScheduledFound: Cha deach obair air an sgeideal a lorg
51
+ NotYetEnqueued: Chan eil seo sa chiutha fhathast
52
+ OneMonth: Mìos
53
+ OneWeek: Seachdain
54
+ OriginallyFailed: Dh’fhàillig e o thùs
55
+ Pause: Cuir ’na stad
56
+ Paused: ’Na stad
57
+ PeakMemoryUsage: Bàrr cleachdadh a’ chuimhne
58
+ Plugins: Plugain
59
+ PollingInterval: Eadaramh an ath-nuadhachaidh
60
+ PollingIntervalMilliseconds: Milidiogan eadaramh an ath-nuadhachaidh
61
+ Process: Pròiseas
62
+ Processed: Air pròiseasadh
63
+ Processes: Pròiseasan
64
+ Queue: Ciutha
65
+ Queues: Ciuthan
66
+ Quiet: Mùch
67
+ QuietAll: Mùch na h-uile
68
+ Realtime: Fìor-àm
69
+ Retries: Oidhirpean
70
+ RetryAll: Feuch ris na h-uile a-rithist
71
+ RetryCount: Cunntas nan oidhirpean
72
+ RetryNow: Feuch ris a-rithist an-dràsta
73
+ Scheduled: Air an sgeideal
74
+ ScheduledJobs: Obraichean air an sgeideal
75
+ Seconds: Diogan
76
+ ShowAll: Seall na h-uile
77
+ SixMonths: Leth-bhliadhna
78
+ Size: Meud
79
+ Started: Air a thòiseachadh
80
+ Status: Staid
81
+ Stop: Cuir stad air
82
+ StopAll: Cuir stad air na h-uile
83
+ StopPolling: Sguir dhen ath-nuadhachadh
84
+ Success: Chaidh leis
85
+ Summary: Geàrr-chunntas
86
+ Thread: Snàithlean
87
+ Threads: Snàithleanan
88
+ ThreeMonths: 3 mìosan
89
+ Time: Àm
90
+ Unpause: Lean air
91
+ Uptime: Beò fad (làithean)
92
+ Utilization: Cleachdadh
93
+ Version: Tionndadh
94
+ When: Cuin
95
+ Worker: Obraiche
96
+ active: gnìomhach
97
+ idle: ’na thàmh
98
+ Metrics: Meatraigeachd
99
+ NoDataFound: Cha deach dàta a lorg
100
+ TotalExecutionTime: Ùine iomlan nan gnìomhan
101
+ AvgExecutionTime: Ùine cuibheasach nan gnìomhan
102
+ Context: Co-theacsa
103
+ NoJobMetricsFound: Cha deach meatraigeachd o chionn goirid air obair a lorg
104
+ Filter: Criathraich
105
+ AnyJobContent: Susbaint obrach sam bith
106
+ Profiles: Pròifilean
107
+ Data: Dàta
108
+ View: Seall
109
+ Token: Tòcan
110
+ ElapsedTime: An ùine a chaidh seachad
@@ -0,0 +1,82 @@
1
+ # elements like %{queue} are variables and should not be translated
2
+ he:
3
+ LanguageName: עברית
4
+ Actions: פעולות
5
+ AddToQueue: הוסף לתור
6
+ AddAllToQueue: הוסף הכל לתור
7
+ AreYouSure: אתם בטוחים?
8
+ AreYouSureDeleteJob: האם אתם בטוחים שברצונכם למחוק את העבודה הזאת?
9
+ AreYouSureDeleteQueue: האם אתם בטוחים שברצונכם למחוק את התור %{queue}?
10
+ Arguments: ארגומנטים
11
+ BackToApp: חזרה לאפליקציה
12
+ Busy: עסוקים
13
+ Class: מחלקה
14
+ Connections: חיבורים
15
+ CreatedAt: נוצר ב
16
+ CurrentMessagesInQueue: עבודות נוכחיות בתור <span class='title'>%{queue}</span>
17
+ Dashboard: לוח מחוונים
18
+ Dead: מתים
19
+ DeadJobs: עבודות מתות
20
+ Delete: מחק
21
+ DeleteAll: מחק הכל
22
+ Enqueued: בתור
23
+ Error: שגיאה
24
+ ErrorBacktrace: מעקב לאחור של השגיאה
25
+ ErrorClass: סוג השגיאה
26
+ ErrorMessage: הודעת השגיאה
27
+ Extras: תוספות
28
+ Failed: נכשלו
29
+ Failures: כשלונות
30
+ GoBack: ← אחורה
31
+ History: היסטוריה
32
+ Job: עבודה
33
+ Jobs: עבודות
34
+ Kill: הרוג
35
+ LastRetry: ניסיון חוזר אחרון
36
+ LivePoll: תשאול חי
37
+ MemoryUsage: שימוש בזיכרון
38
+ Namespace: מרחב שם
39
+ NextRetry: ניסיון חוזר הבא
40
+ NoDeadJobsFound: לא נמצאו עבודות מתות
41
+ NoRetriesFound: לא נמצאו נסיונות חוזרים
42
+ NoScheduledFound: לא נמצאו עבודות מתוכננות
43
+ NotYetEnqueued: עוד לא בתור
44
+ OneMonth: חודש 1
45
+ OneWeek: שבוע 1
46
+ OriginallyFailed: נכשל בניסיון הראשון
47
+ Paused: הופסקו
48
+ PeakMemoryUsage: שיא השימוש בזיכרון
49
+ Plugins: תוספים
50
+ PollingInterval: מרווח זמן בין תשאולים
51
+ Processed: עובדו
52
+ Processes: תהליכים
53
+ Queue: תור
54
+ Queues: תורים
55
+ Quiet: שקט
56
+ QuietAll: השקט את כולם
57
+ Realtime: זמן אמת
58
+ Retries: נסיונות חוזרים
59
+ RetryAll: נסה שוב את הכל
60
+ RetryCount: מספר נסיונות חוזרים
61
+ RetryNow: נסה שוב עכשיו
62
+ Scheduled: מתוכננים
63
+ ScheduledJobs: עבודות מתוכננות
64
+ ShowAll: הצג את הכל
65
+ SixMonths: 6 חדשים
66
+ Size: אורך
67
+ Started: הותחלו
68
+ Status: מצב
69
+ Stop: עצור
70
+ StopAll: עצור הכל
71
+ StopPolling: עצור תשאול
72
+ TextDirection: rtl
73
+ Thread: חוט
74
+ Threads: חוטים
75
+ ThreeMonths: 3 חדשים
76
+ Time: שעה
77
+ Uptime: זמן פעילות (ימים)
78
+ Version: גירסה
79
+ When: מתי
80
+ Worker: עובד
81
+ active: פעיל
82
+ idle: במנוחה
@@ -0,0 +1,77 @@
1
+ # elements like %{queue} are variables and should not be translated
2
+ hi:
3
+ LanguageName: हिन्दी
4
+ Actions: कार्रवाई
5
+ AddToQueue: कतार मे जोड़ें
6
+ AddAllToQueue: सभी को कतार मे जोड़ें
7
+ AreYouSure: क्या आपको यकीन है?
8
+ AreYouSureDeleteJob: क्या आप इस कार्य को हटाना चाहते है?
9
+ AreYouSureDeleteQueue: क्या आप %{queue} कतार को हटाना चाहते है?
10
+ Arguments: अर्गुमेन्ट्स्
11
+ Busy: व्यस्थ
12
+ Class: क्लास
13
+ Connections: कनेक्श्न
14
+ CurrentMessagesInQueue: <span class='title'>%{queue}</span> कतार मे वर्तमान कार्य
15
+ Dashboard: डैशबोर्ड
16
+ Dead: निष्प्राण
17
+ DeadJobs: निष्प्राण कार्य
18
+ Delete: हटाओ
19
+ DeleteAll: सब हटाओ
20
+ Enqueued: कतारबद्ध
21
+ Error: एरर
22
+ ErrorBacktrace: एरर बैकट्रेस
23
+ ErrorClass: एरर क्लास
24
+ ErrorMessage: एरर संदेश
25
+ Extras: अतिरिक्त
26
+ Failed: असफल
27
+ Failures: असफलता
28
+ GoBack: ← पीछे
29
+ History: वृत्तान्त
30
+ Job: कार्य
31
+ Jobs: कार्य
32
+ Kill: नष्ट करे
33
+ LastRetry: अंतिम पुन:प्रयास
34
+ LivePoll: लाईव सर्वेक्षण
35
+ MemoryUsage: मेमरी उपयोग
36
+ Namespace: नामस्थान
37
+ NextRetry: अगला पुन:प्रयास
38
+ NoDeadJobsFound: कोई निष्प्राण कार्य नही पाए गए
39
+ NoRetriesFound: कोई पुनर्प्रयास नही पाए गए
40
+ NoScheduledFound: कोई परिगणित कार्य नही पाए गए
41
+ OneMonth: १ महीना
42
+ OneWeek: १ सप्ताह
43
+ OriginallyFailed: पहिले से विफल
44
+ Paused: थमे हुए
45
+ PeakMemoryUsage: अधिकतम मेमरी उपयोग
46
+ PollingInterval: सर्वेक्षण अंतराल
47
+ Processed: कार्रवाई कृत
48
+ Processes: प्रोसेसेस्
49
+ Queue: कतार
50
+ Queues: कतारे
51
+ Quiet: शांत करो
52
+ QuietAll: सब शांत करो
53
+ Realtime: रिअल टाईम
54
+ Retries: पुनर्प्रयास
55
+ RetryAll: सब पुन:प्रयास करे
56
+ RetryCount: पुन:प्रयास संख्या
57
+ RetryNow: पुन:प्रयास करे
58
+ Scheduled: परिगणित
59
+ ScheduledJobs: परिगणित कार्य
60
+ ShowAll: सब दिखाएं
61
+ SixMonths: ६ महीने
62
+ Size: आकार
63
+ Started: शुरु हुआ
64
+ Status: स्थिती
65
+ Stop: रोको
66
+ StopAll: सब रोको
67
+ StopPolling: सर्वेक्षण रोको
68
+ Thread: थ्रेड
69
+ Threads: थ्रेड्स्
70
+ ThreeMonths: ३ महीने
71
+ Time: समय
72
+ Uptime: उपरिकाल (दिवस)
73
+ Version: वर्जन
74
+ When: कब
75
+ Worker: वर्कर
76
+ active: सक्रिय
77
+ idle: निष्क्रिय
@@ -0,0 +1,109 @@
1
+ # elements like %{queue} are variables and should not be translated
2
+ it:
3
+ LanguageName: Italiano
4
+ Actions: Azioni
5
+ AddToQueue: Aggiungi alla coda
6
+ AddAllToQueue: Aggiungi tutto alla coda
7
+ AreYouSure: Sei sicuro?
8
+ AreYouSureDeleteJob: Sei sicuro di voler cancellare questo lavoro?
9
+ AreYouSureDeleteQueue: Sei sicuro di voler cancellare la coda %{queue}?
10
+ Arguments: Argomenti
11
+ BackToApp: Torna all'App
12
+ Busy: Occupato
13
+ Class: Classe
14
+ Connections: Connessioni
15
+ CreatedAt: Creato il
16
+ CurrentMessagesInQueue: Messaggi in <span class='title'>%{queue}</span>
17
+ Dashboard: Dashboard
18
+ Dead: Arrestato
19
+ DeadJobs: Lavori arrestati
20
+ Delete: Cancella
21
+ DeleteAll: Cancella tutti
22
+ Deploy: Distribuire
23
+ Enqueued: In coda
24
+ Error: Errore
25
+ ErrorBacktrace: Backtrace dell'errore
26
+ ErrorClass: Classe dell'errore
27
+ ErrorMessage: Messaggio di errore
28
+ ExecutionTime: Tempo di esecuzione
29
+ Extras: Extra
30
+ Failed: Fallito
31
+ Failures: Fallimenti
32
+ Failure: Fallimento
33
+ GoBack: ← Indietro
34
+ History: Storia
35
+ Job: Lavoro
36
+ Jobs: Lavori
37
+ Kill: Uccidere
38
+ KillAll: Uccidere tutti
39
+ Language: Lingua
40
+ LastRetry: Ultimo tentativo
41
+ Latency: Latenza
42
+ LivePoll: Live poll
43
+ MemoryUsage: Memoria utilizzata
44
+ Name: Nome
45
+ Namespace: Namespace
46
+ NextRetry: Prossimo tentativo
47
+ NoDeadJobsFound: Non ci sono lavori arrestati
48
+ NoRetriesFound: Non sono stati trovati nuovi tentativi
49
+ NoScheduledFound: Non ci sono lavori pianificati
50
+ NotYetEnqueued: Non ancora in coda
51
+ OneMonth: 1 mese
52
+ OneWeek: 1 settimana
53
+ OriginallyFailed: Primo fallimento
54
+ Pause: Metti in pausa
55
+ Paused: In pausa
56
+ PeakMemoryUsage: Memoria utilizzata (max.)
57
+ Plugins: Plugins
58
+ PollingInterval: Intervallo di polling
59
+ PollingIntervalMilliseconds: Intervallo di polling in millisecondi
60
+ Process: Processo
61
+ Processed: Processato
62
+ Processes: Processi
63
+ Queue: Coda
64
+ Queues: Code
65
+ Quiet: Silenzia
66
+ QuietAll: Silenzia Tutti
67
+ Realtime: Tempo reale
68
+ Retries: Nuovi tentativi
69
+ RetryAll: Riprova tutti
70
+ RetryCount: Totale tentativi
71
+ RetryNow: Riprova
72
+ Scheduled: Pianificato
73
+ ScheduledJobs: Lavori pianificati
74
+ Seconds: Secondi
75
+ ShowAll: Mostra tutti
76
+ SixMonths: 6 mesi
77
+ Size: Dimensione
78
+ Started: Iniziato
79
+ Status: Stato
80
+ Stop: Ferma
81
+ StopAll: Ferma Tutti
82
+ StopPolling: Ferma il polling
83
+ Success: Successo
84
+ Summary: Riepilogo
85
+ Thread: Thread
86
+ Threads: Threads
87
+ ThreeMonths: 3 mesi
88
+ Time: Ora
89
+ Unpause: Riattiva
90
+ Uptime: Uptime (giorni)
91
+ Utilization: Utilizzo
92
+ Version: Versione
93
+ When: Quando
94
+ Worker: Lavoratore
95
+ active: attivo
96
+ idle: inattivo
97
+ Metrics: Metriche
98
+ NoDataFound: Nessun dato trovato
99
+ TotalExecutionTime: Tempo totale di esecuzione
100
+ AvgExecutionTime: Tempo medio di esecuzione
101
+ Context: Contesto
102
+ NoJobMetricsFound: Metriche recenti di lavoro non trovate
103
+ Filter: Filtro
104
+ AnyJobContent: Qualsiasi contenuto di lavoro
105
+ Profiles: Profili
106
+ Data: Dati
107
+ View: Vista
108
+ Token: Token
109
+ ElapsedTime: Tempo Trascorso
@@ -0,0 +1,92 @@
1
+ # elements like %{queue} are variables and should not be translated
2
+ ja:
3
+ LanguageName: 日本語
4
+ Actions: アクション
5
+ AddToQueue: キューに追加
6
+ AddAllToQueue: すべてをキューに追加
7
+ AreYouSure: よろしいですか?
8
+ AreYouSureDeleteJob: このジョブを削除しますか?
9
+ AreYouSureDeleteQueue: この %{queue} キューを削除しますか?
10
+ Arguments: 引数
11
+ BackToApp: アプリに戻る
12
+ Busy: 実行中
13
+ Class: クラス
14
+ Connections: 接続
15
+ CreatedAt: 作成日時
16
+ CurrentMessagesInQueue: <span class='title'>%{queue}</span>に メッセージがあります
17
+ Dashboard: ダッシュボード
18
+ Dead: デッド
19
+ DeadJobs: デッドジョブ
20
+ Delete: 削除
21
+ DeleteAll: 全て削除
22
+ Deploy: デプロイ
23
+ Enqueued: 待機状態
24
+ Error: エラー
25
+ ErrorBacktrace: エラーバックトレース
26
+ ErrorClass: エラークラス
27
+ ErrorMessage: エラーメッセージ
28
+ ExecutionTime: 実行時間
29
+ Extras: エクストラ
30
+ Failed: 失敗
31
+ Failures: 失敗
32
+ Failure: 失敗
33
+ GoBack: ← 戻る
34
+ History: 履歴
35
+ Job: ジョブ
36
+ Jobs: ジョブ
37
+ Kill: 強制終了
38
+ KillAll: 全て強制終了
39
+ LastRetry: 再試行履歴
40
+ Latency: レイテンシ
41
+ LivePoll: ポーリング開始
42
+ MemoryUsage: メモリー使用量
43
+ Name: 名前
44
+ Namespace: ネームスペース
45
+ NextRetry: 再試行
46
+ NoDeadJobsFound: デッドジョブはありません
47
+ NoRetriesFound: 再試行するジョブはありません
48
+ NoScheduledFound: 予定されたジョブはありません
49
+ NotYetEnqueued: キューに入っていません
50
+ OneMonth: 1 ヶ月
51
+ OneWeek: 1 週
52
+ OriginallyFailed: 失敗
53
+ Pause: 一時停止
54
+ Paused: 一時停止中
55
+ PeakMemoryUsage: 最大メモリー使用量
56
+ Plugins: プラグイン
57
+ PollingInterval: ポーリング間隔
58
+ Process: プロセス
59
+ Processed: 完了
60
+ Processes: プロセス
61
+ Queue: キュー
62
+ Queues: キュー
63
+ Quiet: 処理終了
64
+ QuietAll: すべて処理終了
65
+ Realtime: リアルタイム
66
+ Retries: 再試行
67
+ RetryAll: 全て再試行
68
+ RetryCount: 再試行
69
+ RetryNow: 今すぐ再試行
70
+ Scheduled: 予定
71
+ ScheduledJobs: 予定されたジョブ
72
+ Seconds: 秒
73
+ ShowAll: 全て見せる
74
+ SixMonths: 6 ヶ月
75
+ Size: サイズ
76
+ Started: 開始
77
+ Status: 状態
78
+ Stop: 停止
79
+ StopAll: すべて停止
80
+ StopPolling: ポーリング停止
81
+ Success: 成功
82
+ Thread: スレッド
83
+ Threads: スレッド
84
+ ThreeMonths: 3 ヶ月
85
+ Time: 時間
86
+ Unpause: 一時停止を解除
87
+ Metrics: メトリクス
88
+ NoDataFound: データが見つかりませんでした
89
+ TotalExecutionTime: 合計実行時間
90
+ AvgExecutionTime: 平均実行時間
91
+ Context: コンテキスト
92
+ NoJobMetricsFound: 直近のジョブメトリクスが見つかりませんでした