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

team.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: 46c2797e534e02ceeb4dfa5867cacaaa82f997ed (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# frozen_string_literal: true

module Gitlab
  module Email
    module Message
      module InProductMarketing
        class Team < Base
          def subject_line
            [
              s_('InProductMarketing|Working in GitLab = more efficient'),
              s_("InProductMarketing|Multiple owners, confusing workstreams? We've got you covered"),
              s_('InProductMarketing|Your teams can be more efficient')
            ][series]
          end

          def tagline
            [
              s_('InProductMarketing|Invite your colleagues to join in less than one minute'),
              s_('InProductMarketing|Get your team set up on GitLab'),
              nil
            ][series]
          end

          def title
            [
              s_('InProductMarketing|Team work makes the dream work'),
              s_('InProductMarketing|*GitLab*, noun: a synonym for efficient teams'),
              s_('InProductMarketing|Find out how your teams are really doing')
            ][series]
          end

          def subtitle
            [
              s_('InProductMarketing|Actually, GitLab makes the team work (better)'),
              s_('InProductMarketing|Our tool brings all the things together'),
              s_("InProductMarketing|It's all in the stats")
            ][series]
          end

          def body_line1
            [
              [
                s_('InProductMarketing|Did you know teams that use GitLab are far more efficient?'),
                list([
                  s_('InProductMarketing|Goldman Sachs went from 1 build every two weeks to thousands of builds a day'),
                  s_('InProductMarketing|Ticketmaster decreased their CI build time by 15X')
                ])
              ].join("\n"),
              s_("InProductMarketing|We know a thing or two about efficiency and we don't want to keep that to ourselves. Sign up for a free trial of GitLab Ultimate and your teams will be on it from day one."),
              [
                s_('InProductMarketing|Stop wondering and use GitLab to answer questions like:'),
                list([
                  s_('InProductMarketing|How long does it take us to close issues/MRs by types like feature requests, bugs, tech debt, security?'),
                  s_('InProductMarketing|How many days does it take our team to complete various tasks?'),
                  s_('InProductMarketing|What does our value stream timeline look like from product to development to review and production?')
                ])
              ].join("\n")
            ][series]
          end

          def body_line2
            [
              s_('InProductMarketing|Invite your colleagues and start shipping code faster.'),
              s_("InProductMarketing|Streamline code review, know at a glance who's unavailable, communicate in comments or in email and integrate with Slack so everyone's on the same page."),
              s_('InProductMarketing|When your team is on GitLab these answers are a click away.')
            ][series]
          end

          def cta_text
            [
              s_('InProductMarketing|Invite your colleagues today'),
              s_('InProductMarketing|Invite your team in less than 60 seconds'),
              s_('InProductMarketing|Invite your team now')
            ][series]
          end
        end
      end
    end
  end
end