From 3dedf345c68831fbb59bde73920b5f7133ffc041 Mon Sep 17 00:00:00 2001 From: oliveiraleo Date: Tue, 24 Mar 2026 20:18:51 -0300 Subject: [PATCH 1/5] Enable localization for countdown banner footer message --- src/components/Footer.astro | 4 +++- src/content/config.ts | 1 + src/content/pages/en/index.md | 1 + src/layouts/Default.astro | 3 +++ 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 91e37b8..cecfe36 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -9,6 +9,7 @@ interface Props { site_disclaimer?: string; site_privacy?: string; site_copyright?: string; + banner_footer_message?: string; } const { @@ -19,6 +20,7 @@ const { site_disclaimer = "**Disclaimer:** This website is a community-driven noncommercial undertaking. It is operated solely for informational and educational purposes.", site_privacy = "**Privacy:** This site uses no cookies and performs no user tracking or logging.", site_copyright = "**Copyright:** None. This work is marked", + banner_footer_message = "Add countdown banner to your site", } = Astro.props; ---