Update translation

This commit is contained in:
Brayd 2024-01-04 21:51:09 +01:00
parent 152018a60f
commit e86489089d
Signed by: brayd
SSH Key Fingerprint: SHA256:qfebJ1zYUipSSbdcVk/qygkt0xr4VSzCKk7LXw6DGe0
1 changed files with 3 additions and 3 deletions

View File

@ -24,20 +24,20 @@ const { page, uniqueTags } = Astro.props;
const meta = {
title: "Posts",
description: "Ready my collection of posts and the things that interest me",
description: "Eine Kollektion meiner Blogsposts",
};
const paginationProps = {
...(page.url.prev && {
prevUrl: {
url: page.url.prev,
text: `← Previous Posts`,
text: `← Vorherige Posts`,
},
}),
...(page.url.next && {
nextUrl: {
url: page.url.next,
text: `Next Posts →`,
text: `Nächste Posts →`,
},
}),
};