mirror of
https://github.com/mleem97/gregWiki.git
synced 2026-04-11 03:29:19 +02:00
- Move markdown and wiki-import tree into docs/; keep app shell at repo root - Point docusaurus docs path to docs/; edit links to mleem97/gregWiki - Sync and i18n scripts use gregWiki root and ../.wiki under gregFramework - Sidebars: workspace layout from root docs ids; plugins under mods/extensions - Fix redirects, module catalog URLs, release note paths, and wiki-import category keys - Update repo inventory for split repos; Dockerfile for single-repo context Made-with: Cursor
53 lines
3.0 KiB
TypeScript
53 lines
3.0 KiB
TypeScript
import type { HomepageContent } from './types';
|
|
|
|
export const de: HomepageContent = {
|
|
heroLine1: 'DATACENTER MODDING HUB.',
|
|
heroLine2: 'SEI SMART WIE GREG.',
|
|
heroSub1: 'Klar. Flexibel. Community-getrieben.',
|
|
heroSub2: 'Mit FrikaMF, Rust-Stacks, Multiplayer und Plugins.',
|
|
ctaStart: 'MODDING STARTEN',
|
|
ctaMods: 'VERFÜGBARE STANDALONE MODS & PLUGINS',
|
|
docsPaths: 'Dokumentationspfade',
|
|
featureTitles: ['Dual-Track Modding', 'Runtime Hook Bridge', 'Wiki-basierte Doku', 'Community-Ökosystem'],
|
|
featureDescriptions: [
|
|
'Baue Mods direkt in C# oder nativ in Rust via C-ABI/FFI.',
|
|
'Harmony-Patches, Event-IDs und deterministische Hook-Weiterleitung.',
|
|
'Source of truth aus .wiki mit Enduser- und Moddev-Pfaden.',
|
|
'Core-Framework-Doku plus Standalone-Plugin- und Ökosystem-Doku.',
|
|
],
|
|
comingSoon: 'Kommt bald',
|
|
comingSoonText: '`datacentermods.com` wird gerade vorbereitet. Bis zum Launch findest du alles unter `Docs Hub → Standalone Mods`.',
|
|
communityTitle: 'Community & Maintainer',
|
|
communityText: 'Dieses Portal bündelt Framework-Doku und Community-Plugins für das Data-Center-Ökosystem.',
|
|
docsEndUserTitle: 'Endnutzer',
|
|
docsEndUserDescription: 'Installation, Updates, FAQ und Fehlerbehebung.',
|
|
docsModDevsTitle: 'Mod-Entwickler',
|
|
docsModDevsDescription: 'Debug-Workflows, Setup, Hooks und Referenzen.',
|
|
docsContributorsTitle: 'Mitwirkende',
|
|
docsContributorsDescription: 'Konventionen, CI-Checks und Contribution-Workflow.',
|
|
docsCapabilityTitle: 'Capability Matrix',
|
|
docsCapabilityDescription: 'Komplette Feature-Übersicht und konkrete Use Cases.',
|
|
ecosystemTitle: 'Ecosystem Coverage',
|
|
ecosystemCoreTitle: 'FrikaMF Core',
|
|
ecosystemCoreDescription: 'Hook-System, FFI-Bridge, Event-Verträge und Runtime-Architektur.',
|
|
ecosystemCoreCta: 'Core-Doku öffnen →',
|
|
ecosystemRustTitle: 'Standalone Rust',
|
|
ecosystemRustDescription: 'Rust/FFI-Implementierungsleitfäden für externe und standalone Runtimes.',
|
|
ecosystemRustCta: 'Rust/FFI-Doku öffnen →',
|
|
ecosystemMultiplayerTitle: 'Multiplayer & Plugins',
|
|
ecosystemMultiplayerDescription: 'Multiplayer-Roadmap, Plugin-Doku und Community-Modul-Referenzen.',
|
|
ecosystemMultiplayerCta: 'Multiplayer-Doku öffnen →',
|
|
gregTitle: 'Die Legende von Greg',
|
|
gregText1:
|
|
'Greg ist der unermüdliche Server-Techniker des Projekts. Er wirkt zwar so, als hätte er seit Monaten nicht mehr geschlafen, und er ist meistens still — aber sobald ein Rack ausfällt oder ein Mod zickt, ist Greg schon da.',
|
|
gregText2:
|
|
'Unterwürfig erfüllt er all deine Wünsche: mehr Uptime, sauberere Configs, bessere Logs und weniger Drama im Deployment. Er fragt nicht viel, er liefert einfach.',
|
|
gregQuote: '"Be smart. Be like Greg."',
|
|
supportTitle: 'Support',
|
|
supportText: 'Melde Bugs, fordere Doku für neue Community-Plugins an und verfolge Workstreams.',
|
|
supportCta: 'GitHub Issues öffnen',
|
|
availableModsLabel: 'Verfügbare Mods',
|
|
repositoryLabel: 'Repository',
|
|
joinLabel: 'BEITRETEN',
|
|
};
|