Skip to content

Commit

Permalink
adding option to use email to contribute
Browse files Browse the repository at this point in the history
  • Loading branch information
riesentoaster committed Oct 18, 2023
1 parent b9c6eb0 commit 35f193b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
7 changes: 4 additions & 3 deletions src/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@
"installExplanationLink": "https://web.archive.org/web/21000000000000if_/https://mobilesyrup.com/2020/05/24/how-install-progressive-web-app-pwa-android-ios-pc-mac/",
"installExplanationText": "folge dieser Anleitung.",
"contribute": "Mitwirken",
"contributeIntro": "deep ist open source and du darfst gerne Ideen für Fragen beitragen, Tipp-Fehler oder Bugs melden oder Code-Änderungen vorschlagen auf ",
"contributeLink": "https://github.com/riesentoaster/deep/issues",
"contributeIntro": "deep ist open source and du darfst gerne Ideen für Fragen beitragen, Tipp-Fehler oder Bugs melden oder Code-Änderungen vorschlagen entweder direkt auf ",
"contributeLinkText": "GitHub",
"contributePostLink": "."
"contributePostLink": ", oder per ",
"contributeEmailLinkText": "Mail",
"contributePostEmailLinkText": "."
}
}
9 changes: 5 additions & 4 deletions src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@
"installExplanationLink": "https://web.archive.org/web/21000000000000if_/https://mobilesyrup.com/2020/05/24/how-install-progressive-web-app-pwa-android-ios-pc-mac/",
"installExplanationText": "follow these instructions.",
"contribute": "Contribute",
"contributeIntro": "deep is open source and you're welcome to contribute question ideas, report spelling errors or bugs, or propose code changes in ",
"contributeLink": "https://github.com/riesentoaster/deep/issues",
"contributeLinkText": "GitHub.",
"contributePostLink": "."
"contributeIntro": "deep is open source and you're welcome to contribute question ideas, report spelling errors or bugs, or propose code changes either directly in ",
"contributeLinkText": "GitHub",
"contributePostLink": ", or by writing me an ",
"contributeEmailLinkText": "email",
"contributePostEmailLinkText": "."
}
}
6 changes: 5 additions & 1 deletion src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,14 @@ export const Home: FC = () => {
<h2>{t( 'contribute' )}</h2>
<p className={styles.center}>
{t( 'contributeIntro' )}
<a href={t( 'contributeLink' )}>
<a href='https://github.com/riesentoaster/deep/issues'>
{t( 'contributeLinkText' )}
</a>
{t( 'contributePostLink' )}
<a href="mailto:[email protected]">
{t( 'contributeEmailLinkText' )}
</a>
{t( 'contributePostEmailLinkText' )}
</p>
</div>
)
Expand Down

0 comments on commit 35f193b

Please sign in to comment.