mirror of
https://github.com/mleem97/gregWiki.git
synced 2026-04-11 03:29:19 +02:00
- Introduced a new file for Mods page localization with translations for multiple languages (en, de, fr, es, ru, ja). - Updated existing homepage localization files to include references to the new `gregFramework` terminology. - Added shared links for knowledge and workflow sections to enhance documentation accessibility across different languages.
55 lines
3.1 KiB
TypeScript
55 lines
3.1 KiB
TypeScript
import type { HomepageContent } from './types';
|
|
import { homepageShellEn } from './sharedLinks';
|
|
|
|
export const ja: HomepageContent = {
|
|
...homepageShellEn,
|
|
heroLine1: 'DATACENTER MODDING HUB.',
|
|
heroLine2: 'BE SMART. BE LIKE GREG.',
|
|
heroSub1: 'シンプル。柔軟。コミュニティ主導。',
|
|
heroSub2: 'gregFramework、Rustスタック、マルチプレイ、プラグインを網羅。',
|
|
ctaStart: 'MODDING を始める',
|
|
ctaMods: '利用可能な STANDALONE MODS & PLUGINS',
|
|
docsPaths: 'ドキュメント導線',
|
|
featureTitles: ['デュアルトラック Modding', 'ランタイム Hook Bridge', 'Wiki ベース Docs', 'コミュニティ エコシステム'],
|
|
featureDescriptions: [
|
|
'C# または Rust (C-ABI/FFI) で Mod を開発。',
|
|
'Harmony パッチ、Event ID、決定的な Hook 転送。',
|
|
'.wiki を source of truth としたユーザー/開発者向け導線。',
|
|
'Framework 本体と Standalone プラグインの情報を統合。',
|
|
],
|
|
comingSoon: '近日公開',
|
|
comingSoonText: '`datacentermods.com` は準備中です。公開まで `Docs Hub → Standalone Mods` をご利用ください。',
|
|
communityTitle: 'コミュニティ & メンテナー',
|
|
communityText: 'このポータルは Data Center エコシステム向けに gregFramework docs と community plugins をまとめています。',
|
|
docsEndUserTitle: 'End-User',
|
|
docsEndUserDescription: 'Install, update, FAQ, troubleshooting.',
|
|
docsModDevsTitle: 'Mod-Devs',
|
|
docsModDevsDescription: 'Debug workflows, setup, hooks and references.',
|
|
docsContributorsTitle: 'Contributors',
|
|
docsContributorsDescription: 'Conventions, CI checks, contribution workflow.',
|
|
docsCapabilityTitle: 'Capability Matrix',
|
|
docsCapabilityDescription: 'Complete feature map and implementation use cases.',
|
|
ecosystemTitle: 'Ecosystem Coverage',
|
|
ecosystemCoreTitle: 'gregFramework core',
|
|
ecosystemCoreDescription: 'Hook system, FFI bridge, event contracts and runtime architecture.',
|
|
ecosystemCoreCta: 'Open core docs →',
|
|
ecosystemRustTitle: 'Standalone Rust',
|
|
ecosystemRustDescription: 'Rust/FFI implementation guides for external and standalone runtimes.',
|
|
ecosystemRustCta: 'Open Rust/FFI docs →',
|
|
ecosystemMultiplayerTitle: 'Multiplayer & Plugins',
|
|
ecosystemMultiplayerDescription: 'Multiplayer roadmap, plugin docs, and community module references.',
|
|
ecosystemMultiplayerCta: 'Open multiplayer docs →',
|
|
gregTitle: 'The Legend of Greg',
|
|
gregText1:
|
|
'Greg is the tireless server technician of this project. He looks like he has not slept for months, and he is usually quiet — but once a rack fails or a mod breaks, Greg is already there.',
|
|
gregText2:
|
|
'He quietly fulfills your wishes: more uptime, cleaner configs, better logs and less deployment drama. He does not ask much, he just ships.',
|
|
gregQuote: '"Be smart. Be like Greg."',
|
|
supportTitle: 'Support',
|
|
supportText: 'Report bugs, request docs for new community plugins, and track workstreams.',
|
|
supportCta: 'Open GitHub Issues',
|
|
availableModsLabel: 'Available Mods',
|
|
repositoryLabel: 'Repository',
|
|
joinLabel: 'JOIN',
|
|
};
|