summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/build/scheduled.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/status/build/scheduled.rb')
-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)