diff --git a/src/components/pages/blog-post.svelte b/src/components/pages/blog-post.svelte
index 3a9b6c89..274bc648 100644
--- a/src/components/pages/blog-post.svelte
+++ b/src/components/pages/blog-post.svelte
@@ -118,6 +118,9 @@
+
+ {t('blog.pre-footer.related')}
+
diff --git a/src/lib/i18n/data.json b/src/lib/i18n/data.json
index 7db6e534..eb6e0b63 100644
--- a/src/lib/i18n/data.json
+++ b/src/lib/i18n/data.json
@@ -89,5 +89,16 @@
"a11y.physics-add": "Create new physics block",
"a11y.see-post": "See post",
"a11y.see-career": "Se career",
- "blog.tag-meta-description": "We design, we code, and we write about it too! Discover our blog with articles about: {{tags}}"
+ "blog.tag-meta-description": "We design, we code, and we write about it too! Discover our blog with articles about: {{tags}}",
+ "proposals.password-form.login": "Log in",
+ "proposals.password-form.trouble.label": "Having trouble logging in?",
+ "proposals.password-form.trouble.email": "shorui@significa.co",
+ "proposals.password-form.title": "Proposal.",
+ "proposals.password-form.subtitle": "Enter your password.",
+ "proposals.password-form.field.label": "Password",
+ "proposals.password-form.error": "Either this link has expired or the provided password is incorrect.",
+ "proposals.nav.action.long": "Reply to proposal",
+ "proposals.nav.action.short": "Reply",
+ "proposals.nav.title": "Proposal",
+ "blog.pre-footer.related": "Related articles"
}
diff --git a/src/lib/i18n/types.ts b/src/lib/i18n/types.ts
index 850cfcb8..88e70732 100644
--- a/src/lib/i18n/types.ts
+++ b/src/lib/i18n/types.ts
@@ -89,7 +89,18 @@ export const TranslationKeys = [
'a11y.physics-add',
'a11y.see-post',
'a11y.see-career',
- 'blog.tag-meta-description'
+ 'blog.tag-meta-description',
+ 'proposals.password-form.login',
+ 'proposals.password-form.trouble.label',
+ 'proposals.password-form.trouble.email',
+ 'proposals.password-form.title',
+ 'proposals.password-form.subtitle',
+ 'proposals.password-form.field.label',
+ 'proposals.password-form.error',
+ 'proposals.nav.action.long',
+ 'proposals.nav.action.short',
+ 'proposals.nav.title',
+ 'blog.pre-footer.related'
] as const;
export type TranslationKey = (typeof TranslationKeys)[number];