added de-DE translation, fix quality small vs. minimum

This commit is contained in:
Lurkars
2022-01-26 10:33:07 +01:00
parent 2cf51a058a
commit a55e5373fc
15 changed files with 355 additions and 24 deletions
+27
View File
@@ -0,0 +1,27 @@
import type { BaseTranslation } from "../i18n-types";
const follow: BaseTranslation = {
interactStatus: {
following: "{leader} folgen",
waitingFollowers: "Warte auf Bestätigung der Gefolgschaft",
followed: {
one: "{follower} folgt dir",
two: "{firstFollower} und {secondFollower} folgen dir",
many: "{followers} und {lastFollower} folgen dir",
},
},
interactMenu: {
title: {
interact: "Interaktion",
follow: "Möchtest du {leader} folgen?",
},
stop: {
leader: "Möchtest du nicht weiter den Weg weisen?",
follower: "Möchtest du nicht mehr {leader} folgen?",
},
yes: "Ja",
no: "Nein",
},
};
export default follow;