Update translations

This commit is contained in:
Kevin Kandlbinder 2021-11-07 00:55:41 +00:00 committed by GitHub
parent 06a2bd793f
commit e2057c517e
3 changed files with 109 additions and 105 deletions

View file

@ -81,6 +81,8 @@
"name": "Scambox",
"description": "Tauche mit mir ein in die Welt der Scams, die ich tagtäglich so bekomme, und lach ein bisschen mit mir!"
}
}
},
"sections": "Rubriken",
"posts": "Beiträge"
}
}

View file

@ -81,6 +81,8 @@
"name": "Scambox",
"description": "Take a dive with me into all of the scams I get on the daily, and maybe laugh at them a little!"
}
}
},
"sections": "Sections",
"posts": "Posts"
}
}

View file

@ -34,7 +34,7 @@ const BlogListing = ({ data, pageContext }) => {
{!hasSection && (
<>
<h2>Sections</h2>
<h2>{t("blog.sections")}</h2>
<div className={styles.sectionList}>
<Link
@ -46,7 +46,7 @@ const BlogListing = ({ data, pageContext }) => {
<StaticImage src="https://source.unsplash.com/gf8e6XvG_3E/300x150"></StaticImage>
</div>
<span className={styles.sectionName}>
Scambox
{t("blog.section.scambox.name")}
</span>
</div>
</Link>
@ -54,7 +54,7 @@ const BlogListing = ({ data, pageContext }) => {
</>
)}
<h2>Posts</h2>
<h2>{t("blog.posts")}</h2>
<div className={styles.list}>
{data.posts.nodes.map((post) => {