Welcome to mirror list, hosted at ThFree Co, Russian Federation.

trial_short.rb « in_product_marketing « message « email « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fcd3fde4a6b27ab5ab9cc6dbe9621b3d0738703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true

module Gitlab
  module Email
    module Message
      module InProductMarketing
        class TrialShort < Base
          def subject_line
            s_('InProductMarketing|Be a DevOps hero')
          end

          def tagline
            nil
          end

          def title
            s_('InProductMarketing|Expand your DevOps journey with a free GitLab trial')
          end

          def subtitle
            s_('InProductMarketing|Start your trial today to experience single application success and discover all the features of GitLab Ultimate for free!')
          end

          def body_line1
            ''
          end

          def body_line2
            ''
          end

          def cta_text
            s_('InProductMarketing|Start a trial')
          end

          def progress
            super(total: 4, track_name: 'Trial')
          end

          def logo_path
            'mailers/in_product_marketing/trial-0.png'
          end
        end
      end
    end
  end
end