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.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/ci/status/build/scheduled.rb b/lib/gitlab/ci/status/build/scheduled.rb
index eebb3f761c5..62ad9083616 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)
@@ -29,7 +29,7 @@ module Gitlab
def execute_in
remaining_seconds = [0, subject.scheduled_at - Time.now].max
- duration_in_numbers(remaining_seconds, true)
+ duration_in_numbers(remaining_seconds)
end
end
end