2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
module Status
|
|
|
|
class Preparing < Status::Core
|
|
|
|
def text
|
|
|
|
s_('CiStatusText|preparing')
|
|
|
|
end
|
|
|
|
|
|
|
|
def label
|
|
|
|
s_('CiStatusLabel|preparing')
|
|
|
|
end
|
|
|
|
|
|
|
|
def icon
|
2019-12-21 20:55:43 +05:30
|
|
|
'status_preparing'
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def favicon
|
2019-12-21 20:55:43 +05:30
|
|
|
'favicon_status_preparing'
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|