Skip to content

Commit

Permalink
Rename "All breaches" to "Recent data breaches"
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinnl committed Aug 26, 2024
1 parent c6aff97 commit d47d7aa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
8 changes: 4 additions & 4 deletions locales-pending/landing-premium.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

## Top navbar

landing-all-hero-navbar-link-how-it-works = How it works
landing-all-hero-navbar-link-pricing = Pricing
landing-all-hero-navbar-link-faqs = FAQs
landing-all-hero-navbar-link-all-breaches = All breaches
landing-premium-hero-navbar-link-how-it-works = How it works
landing-premium-hero-navbar-link-pricing = Pricing
landing-premium-hero-navbar-link-faqs = FAQs
landing-premium-hero-navbar-link-recent-breaches = Recent data breaches
##

Expand Down
2 changes: 0 additions & 2 deletions locales/en/app.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,6 @@ mozilla = { -brand-mozilla }
terms-of-service = Terms of Service
privacy-notice = Privacy Notice
github = { -brand-github }
# Deprecated
footer-nav-all-breaches = All Breaches
footer-nav-recent-breaches = Recent Data Breaches
footer-external-link-faq-label = FAQs
footer-external-link-faq-tooltip = Frequently asked questions
Expand Down
8 changes: 4 additions & 4 deletions src/app/(proper_react)/(redesign)/(public)/LandingView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ export const TopNavBar = ({ l10n }: { l10n: ExtendedReactLocalization }) => {
link_id: "navbar_how_it_works",
}}
>
{l10n.getString("landing-all-hero-navbar-link-how-it-works")}
{l10n.getString("landing-premium-hero-navbar-link-how-it-works")}
</TelemetryLink>
<TelemetryLink
className={styles.navbarLinks}
Expand All @@ -283,7 +283,7 @@ export const TopNavBar = ({ l10n }: { l10n: ExtendedReactLocalization }) => {
link_id: "navbar_pricing",
}}
>
{l10n.getString("landing-all-hero-navbar-link-pricing")}
{l10n.getString("landing-premium-hero-navbar-link-pricing")}
</TelemetryLink>
<TelemetryLink
data-testid="navbar_faqs"
Expand All @@ -293,7 +293,7 @@ export const TopNavBar = ({ l10n }: { l10n: ExtendedReactLocalization }) => {
link_id: "navbar_faqs",
}}
>
{l10n.getString("landing-all-hero-navbar-link-faqs")}
{l10n.getString("landing-premium-hero-navbar-link-faqs")}
</TelemetryLink>
<TelemetryLink
className={styles.navbarLinks}
Expand All @@ -302,7 +302,7 @@ export const TopNavBar = ({ l10n }: { l10n: ExtendedReactLocalization }) => {
link_id: "navbar_breaches",
}}
>
{l10n.getString("landing-all-hero-navbar-link-all-breaches")}
{l10n.getString("landing-premium-hero-navbar-link-recent-breaches")}
</TelemetryLink>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(proper_react)/(redesign)/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const Footer = ({
link_id: "all_breaches_footer",
}}
>
{l10n.getString("footer-nav-all-breaches")}
{l10n.getString("footer-nav-recent-breaches")}
</TelemetryLink>
</li>
{countryCode === "us" && !session && (
Expand Down

0 comments on commit d47d7aa

Please sign in to comment.