diff --git a/src/components/Card.astro b/src/components/Card.astro
index caa8668..aa7a975 100644
--- a/src/components/Card.astro
+++ b/src/components/Card.astro
@@ -1,6 +1,8 @@
---
import { defaultLocale } from "astro-i18n-aut";
import type { CollectionEntry } from "astro:content";
+import { getLocaleFromUrl } from "../utils/locale";
+import { getPhrases } from "../phrases";
type Props = {
entry: CollectionEntry<"terms">;
@@ -13,6 +15,8 @@ const {
const slug = rawSlug.startsWith(`${defaultLocale}/`)
? rawSlug.slice(defaultLocale.length + 1)
: rawSlug;
+const locale = getLocaleFromUrl(Astro.url);
+const phrases = getPhrases(locale);
---