Files
hugo-theme-stack/i18n/ca.toml
T
4ad88a327e feat: add GDPR cookie consent banner (#1216)
* feat: add GDPR cookie consent banner

Add a GDPR-compliant cookie consent banner that gates analytics (Google
Analytics) and functional cookies (comments) until user consent is given.

Features:
- Theme-consistent styling using CSS variables (light/dark mode)
- Settings panel with category toggles (necessary, analytics, functional)
- Consent stored in cookie for 365 days
- Google Analytics only loads after analytics consent
- Comments only load after functional consent
- Translations for all 32 supported languages
- Accessible with proper ARIA attributes and focus management

Configuration in hugo.yaml:
  params:
    cookies:
      enabled: true
      categories:
        analytics: true
        functional: true

When cookies.enabled is false, scripts load normally without consent gating.

Closes #412

* refactor: move consent-gated GA to cookies/analytics.html

Move Google Analytics consent logic to avoid shadowing Hugo's internal
`_internal/google_analytics.html` template.

Changes:
- Rename google_analytics.html → cookies/analytics.html
- Update head.html to conditionally load:
  - cookies.enabled=true: cookies/analytics.html (consent-gated)
  - cookies.enabled=false: Hugo's _internal/google_analytics.html
- Align cookies/analytics.html with Hugo's internal template:
  - Support Privacy.GoogleAnalytics.Disable setting
  - Support Privacy.GoogleAnalytics.RespectDoNotTrack setting
  - Add UA- prefix deprecation warning

Note: Custom JS is required for consent-gated GA because Hugo templates
render at build time, but consent happens at runtime. We cannot call
Hugo's internal template after the user grants consent - we must
dynamically inject the GA script via JavaScript.

* style: indent cookies/analytics.html

* refactor: don't use default, put default configurations in params.toml

* fix: don't use `description` as translation key because it's reserved and will throw error

* fix: remove footer/components/custom-font.html call

* fix: banner showSettings key

* style: indent comments/include

* Add missing article.alert translation back

* style: format i18n toml files

* style: indent head/head.html

* style adjustment

* style: add missing -

* style: format demo/config/params.toml

* style: remove redundant comments from cookies.scss

* style: update box-shadow for cookie banner content

---------

Co-authored-by: delize <4028612+delize@users.noreply.github.com>
Co-authored-by: Jimmy Cai <jimmy@cai.im>
2026-02-19 17:21:25 +01:00

79 lines
2.3 KiB
TOML

toggleMenu = "Toggle Menu"
darkMode = "Mode fosc"
[list]
section = "Secció"
[list.page]
one = "{{ .Count }} pàgina"
other = "{{ .Count }} pàgines"
[list.subsection]
one = "Subsecció"
other = "Subseccions"
[article]
back = "Tornar"
tableOfContents = "Taula de contingut"
relatedContent = "Continguts relacionats"
lastUpdatedOn = "Última vegada actualitzat"
[article.readingTime]
one = "{{ .Count }} minut a llegir"
other = "{{ .Count }} minuts a llegir"
[article.alert]
note = "Nota"
tip = "Consell"
important = "Important"
warning = "Avís"
caution = "Precaució"
[notFound]
title = "No Trobat"
subtitle = "Aquesta pàgina no existeix"
[widget]
[widget.archives]
title = "Arxiu"
more = "Més"
[widget.tagCloud]
title = "Etiquetes"
[widget.categoriesCloud]
title = "Categories"
[search]
title = "Cerca"
placeholder = "Tecleja alguna cosa..."
resultTitle = "#PAGES_COUNT pàgines en (#TIME_SECONDS segons)"
[footer]
builtWith = "Creat amb {{ .Generator }}"
designedBy = "Tema {{ .Theme }} dissenyat per {{ .DesignedBy }}"
[cookies]
title = "Consentiment de galetes"
text = "Utilitzem galetes per millorar la vostra experiència de navegació i analitzar el trànsit del lloc."
acceptAll = "Acceptar-ho tot"
deny = "Denegar"
managePreferences = "Gestionar preferències"
settingsTitle = "Preferències de galetes"
savePreferences = "Desar preferències"
cancel = "Cancel·lar"
footerLink = "Configuració de galetes"
commentsDisabled = "Els comentaris estan desactivats fins que accepteu les galetes funcionals."
[cookies.necessary]
title = "Necessàries"
text = "Aquestes galetes són necessàries perquè el lloc web funcioni i no es poden desactivar."
[cookies.analytics]
title = "Analítiques"
text = "Aquestes galetes ens ajuden a entendre com els visitants interactuen amb el nostre lloc web."
[cookies.functional]
title = "Funcionals"
text = "Aquestes galetes habiliten funcionalitats com comentaris i contingut incrustat."