diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2018-10-22 21:43:47 +0200 |
---|---|---|
committer | Winnie Hellmann <winnie@gitlab.com> | 2018-10-22 22:07:43 +0200 |
commit | 8ab27e64fe307ec75032a0597fd96caa80e40b67 (patch) | |
tree | 880ab547e76db860a8ab392dc4a1f4be0b517190 /app | |
parent | 53be95daf41fc4e59deab149485210835e7e54cd (diff) | |
download | gitlab-ce-8ab27e64fe307ec75032a0597fd96caa80e40b67.tar.gz |
Update confirmation modal text for starting delayed jobs immediately
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/environments/components/environment_actions.vue | 2 | ||||
-rw-r--r-- | app/assets/javascripts/pipelines/components/pipelines_actions.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/environments/components/environment_actions.vue b/app/assets/javascripts/environments/components/environment_actions.vue index 2d51a13d8a0..6f729676f89 100644 --- a/app/assets/javascripts/environments/components/environment_actions.vue +++ b/app/assets/javascripts/environments/components/environment_actions.vue @@ -34,7 +34,7 @@ export default { if (action.scheduledAt) { const confirmationMessage = sprintf( s__( - "DelayedJobs|Are you sure you want to run %{jobName} immediately? This job will run automatically after it's timer finishes.", + "DelayedJobs|Are you sure you want to run %{jobName} immediately? Otherwise this job will run automatically after it's timer finishes.", ), { jobName: action.name }, ); diff --git a/app/assets/javascripts/pipelines/components/pipelines_actions.vue b/app/assets/javascripts/pipelines/components/pipelines_actions.vue index 16e69759091..83f16c0ffdb 100644 --- a/app/assets/javascripts/pipelines/components/pipelines_actions.vue +++ b/app/assets/javascripts/pipelines/components/pipelines_actions.vue @@ -28,7 +28,7 @@ export default { if (action.scheduled_at) { const confirmationMessage = sprintf( s__( - "DelayedJobs|Are you sure you want to run %{jobName} immediately? This job will run automatically after it's timer finishes.", + "DelayedJobs|Are you sure you want to run %{jobName} immediately? Otherwise this job will run automatically after it's timer finishes.", ), { jobName: action.name }, ); |