diff --git a/app/views/good_job/processes/index.html.erb b/app/views/good_job/processes/index.html.erb index ef1c2982a..1ec40ca11 100644 --- a/app/views/good_job/processes/index.html.erb +++ b/app/views/good_job/processes/index.html.erb @@ -8,6 +8,7 @@
<%= t ".process" %>
<%= t ".schedulers" %>
+
<%= t ".cron_enabled" %>
<%= t ".started" %>
@@ -44,6 +45,7 @@
<%= scheduler.is_a?(Hash) ? scheduler['name'] : scheduler %>
<% end %>
+
<%= t(ActiveModel::Type::Boolean.new.cast(process.state["cron_enabled"]), scope: "good_job.shared.boolean") %>
<%= relative_time(process.created_at) %>
<%= relative_time(process.updated_at) %>
diff --git a/config/locales/de.yml b/config/locales/de.yml index 94cb50750..f373ce3b4 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -198,6 +198,7 @@ de: unit: '' processes: index: + cron_enabled: Cron aktiviert no_good_job_processes_found: Keine GoodJob-Prozesse gefunden. process: Verfahren schedulers: Planer @@ -205,6 +206,9 @@ de: title: Prozesse updated: Aktualisiert shared: + boolean: + 'false': Nein + 'true': Ja error: Fehler filter: all: Alle diff --git a/config/locales/en.yml b/config/locales/en.yml index 0efa2ad4f..fddb7ff56 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -198,6 +198,7 @@ en: unit: '' processes: index: + cron_enabled: Cron enabled no_good_job_processes_found: No GoodJob processes found. process: Process schedulers: Schedulers @@ -205,6 +206,9 @@ en: title: Processes updated: Updated shared: + boolean: + 'false': 'No' + 'true': 'Yes' error: Error filter: all: All diff --git a/config/locales/es.yml b/config/locales/es.yml index 72084527f..0bea78869 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -196,6 +196,7 @@ es: unit: '' processes: index: + cron_enabled: Cron habilitado no_good_job_processes_found: No hay procesos de GoodJob. process: Proceso schedulers: Schedulers @@ -203,6 +204,9 @@ es: title: Procesos updated: Actualizado shared: + boolean: + 'false': 'No' + 'true': Sí error: Error filter: all: Todas diff --git a/config/locales/fr.yml b/config/locales/fr.yml index e804e77e8..77bc378a0 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -198,6 +198,7 @@ fr: unit: '' processes: index: + cron_enabled: Cron activé no_good_job_processes_found: Aucun processus GoodJob trouvé. process: Processus schedulers: Schedulers @@ -205,6 +206,9 @@ fr: title: Processus updated: Mis à jour shared: + boolean: + 'false': Non + 'true': Oui error: Erreur filter: all: Tous diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 762c86cc3..9a321431d 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -198,6 +198,7 @@ ja: unit: '' processes: index: + cron_enabled: Cron が有効になっている no_good_job_processes_found: GoodJobのプロセスが見つかりませんでした。 process: プロセス schedulers: スケジューラー @@ -205,6 +206,9 @@ ja: title: プロセス updated: 更新された shared: + boolean: + 'false': いいえ + 'true': はい error: エラー filter: all: 全て diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 63b027f7f..dff3f2875 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -198,6 +198,7 @@ nl: unit: '' processes: index: + cron_enabled: Cron ingeschakeld no_good_job_processes_found: Geen GoodJob-processen gevonden. process: Proces schedulers: Planners @@ -205,6 +206,9 @@ nl: title: Processen updated: Bijgewerkt shared: + boolean: + 'false': Nee + 'true': Ja error: Fout filter: all: Alle diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 927bf02a4..7da5104a9 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -224,6 +224,7 @@ ru: unit: '' processes: index: + cron_enabled: Крон включен no_good_job_processes_found: Процессы GoodJob не найдены. process: Процесс schedulers: Планировщики @@ -231,6 +232,9 @@ ru: title: Процессы updated: Обновлено shared: + boolean: + 'false': Нет + 'true': Да error: Ошибка filter: all: Все diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 75c1e0dba..ee4e49f81 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -198,6 +198,7 @@ tr: unit: '' processes: index: + cron_enabled: Cron etkin no_good_job_processes_found: GoodJob süreci bulunamadı. process: Süreç schedulers: Planlayıcılar @@ -205,6 +206,9 @@ tr: title: Süreçler updated: Güncellenmiş shared: + boolean: + 'false': Hayır + 'true': Evet error: Hata filter: all: Tümü diff --git a/config/locales/uk.yml b/config/locales/uk.yml index d6b5c3505..ff3c9a2c7 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -224,6 +224,7 @@ uk: unit: '' processes: index: + cron_enabled: Cron увімкнено no_good_job_processes_found: Процеси GoodJob не знайдені. process: Процес schedulers: Планувальники @@ -231,6 +232,9 @@ uk: title: Процеси updated: Оновлено shared: + boolean: + 'false': Ні + 'true': Так error: Помилка filter: all: Всі diff --git a/i18n-tasks.yml b/i18n-tasks.yml index 4ee03a642..3f9797ab5 100644 --- a/i18n-tasks.yml +++ b/i18n-tasks.yml @@ -98,6 +98,7 @@ ignore_unused: - "good_job.status.*" - "good_job.error_event.*" - "good_job.number.*" + - "good_job.shared.boolean.*" ## Exclude these keys from the `i18n-tasks eq-base' report: # ignore_eq_base: