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

team_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: 1d60a5fe4e586b282ffe9266d2599e5ea3174abb (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 TeamShort < Base
          def subject_line
            s_('InProductMarketing|Team up in GitLab for greater efficiency')
          end

          def tagline
            nil
          end

          def title
            s_('InProductMarketing|Turn coworkers into collaborators')
          end

          def subtitle
            s_('InProductMarketing|Invite your team today to build better code (and processes) together')
          end

          def body_line1
            ''
          end

          def body_line2
            ''
          end

          def cta_text
            s_('InProductMarketing|Invite your colleagues today')
          end

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

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