summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2018-10-19 16:28:41 +0000
committerKamil TrzciƄski <ayufan@ayufan.eu>2018-10-19 16:28:41 +0000
commit1f1b3923ecb263d512a0340cd5b44cc249f3f698 (patch)
treec2b024ac7ed800d32aed9264593c11965e52b4f5 /lib/gitlab/ci/status/build
parent041e03169f072fa8e403d705314c0e739ebac6f9 (diff)
downloadgitlab-ce-1f1b3923ecb263d512a0340cd5b44cc249f3f698.tar.gz
Rename "scheduled" label/badge of delayed jobs to "delayed"
Diffstat (limited to 'lib/gitlab/ci/status/build')
-rw-r--r--lib/gitlab/ci/status/build/scheduled.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/ci/status/build/scheduled.rb b/lib/gitlab/ci/status/build/scheduled.rb
index eebb3f761c5..6f460b62fa9 100644
--- a/lib/gitlab/ci/status/build/scheduled.rb
+++ b/lib/gitlab/ci/status/build/scheduled.rb
@@ -7,7 +7,7 @@ module Gitlab
{
image: 'illustrations/illustrations_scheduled-job_countdown.svg',
size: 'svg-394',
- title: _("This is a scheduled to run in ") + " #{execute_in}",
+ title: _("This is a delayed to run in ") + " #{execute_in}",
content: _("This job will automatically run after it's timer finishes. " \
"Often they are used for incremental roll-out deploys " \
"to production environments. When unscheduled it converts " \
@@ -16,7 +16,7 @@ module Gitlab
end
def status_tooltip
- "scheduled manual action (#{execute_in})"
+ "delayed manual action (#{execute_in})"
end
def self.matches?(build, user)