This commit is contained in:
Maxx Crawford 2022-06-17 09:41:35 -05:00 коммит произвёл GitHub
Родитель 31bf886763
Коммит aadb037110
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -110,3 +110,9 @@ phone-headline = Introducing phone number masking
## Replies
profile-label-replies = Replies
profile-replies-tooltip = You can reply to emails received through this mask, and Firefox Relay will continue to protect your true email address.
# Loyalist Upsell Banner:
banner-upgrade-loyalist-headline-2 = Protect your privacy, save the internet
# Variables:
# $monthly_price (string) - the monthly cost (including currency symbol) for Relay Premium. Examples: $0.99, 0,99 €
banner-upgrade-loyalist-copy-2 = Protect your privacy while joining our mission to build a better internet, all for { $monthly_price }

Просмотреть файл

@ -233,7 +233,7 @@ const LoyalistPremiumBanner = (props: NoPremiumBannerProps) => {
<Banner
key="premium-banner"
type="promo"
title={l10n.getString("banner-upgrade-loyalist-headline")}
title={l10n.getString("banner-upgrade-loyalist-headline-2")}
illustration={<img src={FirefoxLogo.src} alt="" width={60} height={60} />}
ctaLargeButton={{
target: getPremiumSubscribeLink(props.runtimeData),
@ -246,7 +246,7 @@ const LoyalistPremiumBanner = (props: NoPremiumBannerProps) => {
}}
>
<p>
{l10n.getString("banner-upgrade-loyalist-copy", {
{l10n.getString("banner-upgrade-loyalist-copy-2", {
monthly_price: getPlan(props.runtimeData).price,
})}
</p>