Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(l10n): localize translation banner in Spanish #11004

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ export function LocalizedContentNote({
"This page was translated from English by the community. Learn more and join the MDN Web Docs community.",
url: "/en-US/docs/MDN/Community/Contributing/Translated_content#active_locales",
},
es: {
linkText:
"Esta página ha sido traducida del inglés por la comunidad. Aprende más y únete a la comunidad de MDN Web Docs.",
url: "/es/docs/MDN/Community/Contributing/Translated_content#locales_activos",
},
fr: {
linkText:
"Cette page a été traduite à partir de l'anglais par la communauté. Vous pouvez également contribuer en rejoignant la communauté francophone sur MDN Web Docs.",
Expand Down Expand Up @@ -42,10 +47,6 @@ export function LocalizedContentNote({
linkText:
"This page was translated from English by the community, but it's not maintained and may be out-of-date. To help maintain it, learn how to activate locales.",
},
es: {
linkText:
"Esta página fue traducida del inglés por la comunidad, pero no se mantiene activamente, por lo que puede estar desactualizada. Si desea ayudar a mantenerlo, descubra cómo activar las configuraciones regionales inactivas.",
},
};

const linkText = isActive
Expand Down
Loading