summaryrefslogtreecommitdiff
path: root/src/i18n/translations.ts
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2026-01-30 20:45:07 +0100
committerDawid Rycerz <dawid@rycerz.xyz>2026-01-30 20:45:07 +0100
commit650249e1a8fe7d6645bb712026930dd7e8906ef8 (patch)
tree4a4f5c46c72f7b8b0f6bef21ce6938e8a8978084 /src/i18n/translations.ts
parent2345a208663efff76837d1228bf14b8847f3177f (diff)
feat(blog): add next/previous post navigation scoped by category
Navigate between posts within the same category (regular, microblog, archived). Newer post links left, older post links right. Includes i18n support for English and Polish. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'src/i18n/translations.ts')
-rw-r--r--src/i18n/translations.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/i18n/translations.ts b/src/i18n/translations.ts
index 5659257..0cead23 100644
--- a/src/i18n/translations.ts
+++ b/src/i18n/translations.ts
@@ -4,12 +4,20 @@ export const translations = {
backToTop: "Back to top",
updated: "Updated:",
viewMoreWithTag: "View more blogs with the tag",
+ newerPost: "← Newer post",
+ olderPost: "Older post →",
+ newerPostSr: "Go to newer post:",
+ olderPostSr: "Go to older post:",
},
pl: {
viewOriginalPost: "Zobacz oryginalny wpis na Fediversum →",
backToTop: "Powrót na górę",
updated: "Zaktualizowano:",
viewMoreWithTag: "Zobacz więcej wpisów z tagiem",
+ newerPost: "← Następny wpis",
+ olderPost: "Poprzedni wpis →",
+ newerPostSr: "Przejdź do następnego wpisu:",
+ olderPostSr: "Przejdź do poprzedniego wpisu:",
},
} as const;