more translations

This commit is contained in:
Vincent van der Wal
2026-08-01 16:36:04 +02:00
parent ae88140f79
commit d7fe0bafc8
24 changed files with 762 additions and 215 deletions
+6 -6
View File
@@ -89,7 +89,7 @@
<a
class="text-foreground/80 underline-offset-2 hover:text-foreground hover:underline"
href={href('/weather/week/[location]', { location: city.slug })}
>{city.label} weather</a
>{m.city_weather({ city: city.label })}</a
>
</li>
{/each}
@@ -102,21 +102,21 @@
class="mt-10 flex flex-col items-start justify-between gap-3 border-t border-border/70 pt-5 text-xs text-muted-foreground sm:flex-row sm:items-center"
>
<span>© {year} Drizz.li</span>
<nav aria-label="Legal" class="flex flex-wrap items-center gap-x-5 gap-y-1">
<nav aria-label={m.legal_nav()} class="flex flex-wrap items-center gap-x-5 gap-y-1">
<a class="underline-offset-2 hover:text-foreground hover:underline" href={href('/about')}
>About</a
>{m.legal_about()}</a
>
<a
class="underline-offset-2 hover:text-foreground hover:underline"
href={href('/legal/imprint')}>Imprint</a
href={href('/legal/imprint')}>{m.legal_imprint()}</a
>
<a
class="underline-offset-2 hover:text-foreground hover:underline"
href={href('/legal/privacy')}>Privacy</a
href={href('/legal/privacy')}>{m.legal_privacy()}</a
>
<a
class="underline-offset-2 hover:text-foreground hover:underline"
href={href('/legal/terms')}>Terms</a
href={href('/legal/terms')}>{m.legal_terms()}</a
>
</nav>
</div>