docs: cut to v0.9.0 with unified .de/.en naming
- Remove all prior release notes and version snapshots (v0.6.0-v0.8.6) - Rename handbook to *.de.md; keep *.en.md - New release notes v0.9.0.de.md/.en.md with v0.9.0 snapshot - generate-docs.mjs: .de/.en convention incl. search index and en-fallback - docs.tsx: release fallback now uses version.de.md - Wording: neutral tagline, anonymous user, no gender forms - Add docs/examples/import-tools.yaml and link from administration docs
This commit is contained in:
@@ -69,7 +69,7 @@
|
||||
},
|
||||
"home": {
|
||||
"welcome": "Willkommen bei toolr",
|
||||
"tagline": "Die Community-Plattform, auf der Ingenieure die Tools, die sie täglich nutzen, ehrlich bewerten.",
|
||||
"tagline": "Bewerte dein Tool.",
|
||||
"totalTools": "Tools gesamt",
|
||||
"totalRatings": "Bewertungen gesamt",
|
||||
"avgRating": "Ø Bewertung",
|
||||
@@ -189,7 +189,7 @@
|
||||
"nameOptional": "Name (optional)",
|
||||
"nameLabel": "Name",
|
||||
"anonymousPlaceholder": "Anonym",
|
||||
"anonymousEngineer": "Anonymer Ingenieur",
|
||||
"anonymousEngineer": "Anonymer Benutzer",
|
||||
"beFirstToReview": "Sei der Erste, der seine Gedanken zu diesem Tool teilt.",
|
||||
"shareExperience": "Teile deine Erfahrung mit {{name}}",
|
||||
"score": "Punktestand",
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
},
|
||||
"home": {
|
||||
"welcome": "Welcome to toolr",
|
||||
"tagline": "The community hub where engineers honestly rate the tools they use daily.",
|
||||
"tagline": "Rate your Tool.",
|
||||
"totalTools": "Total Tools",
|
||||
"totalRatings": "Total Ratings",
|
||||
"avgRating": "Avg Rating",
|
||||
@@ -189,7 +189,7 @@
|
||||
"nameOptional": "Name (Optional)",
|
||||
"nameLabel": "Name",
|
||||
"anonymousPlaceholder": "Anonymous",
|
||||
"anonymousEngineer": "Anonymous Engineer",
|
||||
"anonymousEngineer": "Anonymous User",
|
||||
"beFirstToReview": "Be the first to share your thoughts on this tool.",
|
||||
"shareExperience": "Share your experience with {{name}}",
|
||||
"score": "Score",
|
||||
|
||||
@@ -740,7 +740,7 @@ function ReleasesView({ versions }: { versions: ReleaseDoc[] }) {
|
||||
|
||||
function ReleaseNoteView({ version, doc }: { version: string; doc: ReleaseDoc | null }) {
|
||||
const locale = useDocsLocale();
|
||||
const file = doc ? `releases/${localizedFile(doc.file, doc.fileEn, locale)}` : `releases/${version}.md`;
|
||||
const file = doc ? `releases/${localizedFile(doc.file, doc.fileEn, locale)}` : `releases/${version}.de.md`;
|
||||
return (
|
||||
<div className="flex flex-col lg:flex-row gap-8">
|
||||
<div className="flex-1 min-w-0 max-w-3xl">
|
||||
|
||||
Reference in New Issue
Block a user