Commit a0d9b35b authored by Marvin Karegyeya's avatar Marvin Karegyeya Committed by Kerri Miller

Externalize strings in _confirmation_instructions_account.html.haml

parent 45505fbc
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
- if @resource.unconfirmed_email.present? || !@resource.created_recently? - if @resource.unconfirmed_email.present? || !@resource.created_recently?
#content #content
= email_default_heading(@resource.unconfirmed_email || @resource.email) = email_default_heading(@resource.unconfirmed_email || @resource.email)
%p Click the link below to confirm your email address. %p= _('Click the link below to confirm your email address.')
#cta #cta
= link_to 'Confirm your email address', confirmation_link = link_to _('Confirm your email address'), confirmation_link
- else - else
#content #content
- if Gitlab.com? - if Gitlab.com?
= email_default_heading('Thanks for signing up to GitLab!') = email_default_heading(_('Thanks for signing up to GitLab!'))
- else - else
= email_default_heading("Welcome, #{@resource.name}!") = email_default_heading(_("Welcome, %{name}!") % { name: @resource.name })
%p To get started, click the link below to confirm your account. %p= _("To get started, click the link below to confirm your account.")
#cta #cta
= link_to 'Confirm your account', confirmation_link = link_to _('Confirm your account'), confirmation_link
---
title: Externalize strings in _confirmation_instructions_account.html.haml
merge_request: 58214
author: nuwe1
type: other
...@@ -6378,6 +6378,9 @@ msgstr "" ...@@ -6378,6 +6378,9 @@ msgstr ""
msgid "Click the button below." msgid "Click the button below."
msgstr "" msgstr ""
msgid "Click the link below to confirm your email address."
msgstr ""
msgid "Click to expand it." msgid "Click to expand it."
msgstr "" msgstr ""
...@@ -8153,6 +8156,12 @@ msgstr "" ...@@ -8153,6 +8156,12 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
msgid "Confirm your account"
msgstr ""
msgid "Confirm your email address"
msgstr ""
msgid "Confirmation email sent to %{email}" msgid "Confirmation email sent to %{email}"
msgstr "" msgstr ""
...@@ -30615,6 +30624,9 @@ msgstr "" ...@@ -30615,6 +30624,9 @@ msgstr ""
msgid "Thank you for your support request! We are tracking your request as ticket #%{issue_iid}, and will respond as soon as we can." msgid "Thank you for your support request! We are tracking your request as ticket #%{issue_iid}, and will respond as soon as we can."
msgstr "" msgstr ""
msgid "Thanks for signing up to GitLab!"
msgstr ""
msgid "Thanks for your purchase!" msgid "Thanks for your purchase!"
msgstr "" msgstr ""
...@@ -34904,6 +34916,9 @@ msgstr "" ...@@ -34904,6 +34916,9 @@ msgstr ""
msgid "Welcome to the guided GitLab tour" msgid "Welcome to the guided GitLab tour"
msgstr "" msgstr ""
msgid "Welcome, %{name}!"
msgstr ""
msgid "What are you searching for?" msgid "What are you searching for?"
msgstr "" msgstr ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment