From ca01888fe278b9fb23dc95fecef2f0f5a3abf55e Mon Sep 17 00:00:00 2001 From: "Nolann B." <100787331+nolannbiron@users.noreply.github.com> Date: Mon, 30 Mar 2026 09:46:37 +0200 Subject: [PATCH] Localize footer links title (#4143) --- .../gitbook/src/components/Footer/FooterLinksGroup.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/gitbook/src/components/Footer/FooterLinksGroup.tsx b/packages/gitbook/src/components/Footer/FooterLinksGroup.tsx index 0d027db43..8cad60c94 100644 --- a/packages/gitbook/src/components/Footer/FooterLinksGroup.tsx +++ b/packages/gitbook/src/components/Footer/FooterLinksGroup.tsx @@ -8,6 +8,7 @@ import { import { resolveContentRef } from '@/lib/references'; import { tcls } from '@/lib/tailwind'; +import { getLocalizedTitle } from '@/lib/sites'; import { Link } from '../primitives'; export function FooterLinksGroup(props: { @@ -15,10 +16,11 @@ export function FooterLinksGroup(props: { context: GitBookAnyContext; }) { const { group, context } = props; + const title = getLocalizedTitle(group, context.locale); return (