Skip to content

Commit

Permalink
Fix German traduction (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinejaussoin authored Jun 24, 2023
1 parent 0bbf95e commit 47629ef
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
16 changes: 8 additions & 8 deletions marketing/public/locales/de/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"link": "Zurück!"
},
"Banner": {
"heading": "A **simple** & **powerful** app for **efficient** online retros.",
"text": "**Level up** your team with a **modern** and **easy-to-use** retrospective tool. Highly **customizable**, multi-language, use online or on-premises… Make your sprints as **impactful** as possible!",
"heading": "Deine erste **Retro** wirst du **nie vergessen**.",
"text": "Bieten Sie Ihrem Team **kontinuierliche Verbesserungen** mit einem **modernen** und **einfach zu bedienenden** Retrospektiv-Tool.",
"tagline": "*Keine Kreditkarte nötig",
"subscribeToday": "Kostenlos probieren",
"demo": "1-Klick Demo"
Expand All @@ -24,7 +24,7 @@
"faq": "Häufig gestellte Fragen",
"subscribe": "Abonnieren",
"login": "Login",
"selfhosting": "Self-Hosting"
"selfhosting": "Selbsthosting"
},
"Clients": {
"main": "Werden auch Sie Mitglied der Hunderten von Unternehmen, die Retrospected bereits nutzen"
Expand All @@ -36,16 +36,16 @@
"text": "Mit nur einem Klick eine Retrospektive starten."
},
"2": {
"title": "Multilingual interface",
"title": "Unser mehrsprachiger Support",
"text": "Unsere App ist in 15 Sprachen erhältlich!"
},
"3": {
"title": "Customisation options",
"title": "Unsere Anpassungsoptionen",
"text": "Sie können die App an Ihre Bedürfnisse anpassen. Spalten, Abstimmungen, Emojis, egal was."
},
"4": {
"title": "Self-hosting",
"text": "If you want complete control of your data, you can host Retrospected on your premises."
"title": "Unsere Möglichkeit zum Selbsthosting",
"text": "Für eine vollständige Kontrolle über Ihre Daten können Sie Retrospected selbst hosten."
}
},
"Testimonials": {
Expand Down Expand Up @@ -125,7 +125,7 @@
"Kostenlose Updates, für immer"
],
"button": {
"label": "Learn more"
"label": "Entdecken Sie unsere Dokumentation"
}
},
"Features": {
Expand Down
11 changes: 10 additions & 1 deletion marketing/src/containers/Callback/Callback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ export function Callback() {
return (
<Container href={LINK} target="_blank">
<Icon src={phoneIcon} alt="phone" height={20} />
<span>{t('Callback.message')}</span>
<Text>{t('Callback.message')}</Text>
</Container>
);
}

const Text = styled.span`
display: none;
visibility: hidden;
`;

const Container = styled.a`
font-size: 12px;
display: flex;
Expand All @@ -30,6 +35,10 @@ const Container = styled.a`
color: white;
:hover {
background-color: hsl(350, 100%, 55%);
${Text} {
display: inline;
visibility: visible;
}
}
cursor: pointer;
z-index: 1000;
Expand Down

0 comments on commit 47629ef

Please sign in to comment.