Added Translation

This commit is contained in:
Jonathan Noack 2023-05-01 21:18:49 +02:00
parent 0bd2aadb10
commit 920d313c8a
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,6 @@
{
"Previous": "Zurück",
"Next": "Weiter",
"Back": "Zurück",
"Newer Posts": "Neuere Artikel",
"Older Posts": "Ältere Artikel",

View File

@ -56,7 +56,7 @@
<nav class="gh-navigation">
<div class="gh-navigation-previous">
{{#prev_post}}
<a class="gh-navigation-link" href="{{url}}">← Previous</a>
<a class="gh-navigation-link" href="{{url}}">← {{t "Previous"}}</a>
{{/prev_post}}
</div>
@ -64,7 +64,7 @@
<div class="gh-navigation-next">
{{#next_post}}
<a class="gh-navigation-link" href="{{url}}">Next →</a>
<a class="gh-navigation-link" href="{{url}}">{{t "Next"}} →</a>
{{/next_post}}
</div>
</nav>