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.3 KiB
TypeScript
55 lines
3.3 KiB
TypeScript
import type { HomepageContent } from './types';
|
||
import { homepageShellEn } from './sharedLinks';
|
||
|
||
export const ru: HomepageContent = {
|
||
...homepageShellEn,
|
||
heroLine1: 'ХАБ МОДДИНГА DATACENTER.',
|
||
heroLine2: 'БУДЬ УМНЫМ. БУДЬ КАК ГРЕГ.',
|
||
heroSub1: 'Просто. Гибко. Силой сообщества.',
|
||
heroSub2: 'gregFramework, Rust-стек, мультиплеер и плагины.',
|
||
ctaStart: 'НАЧАТЬ МОДДИНГ',
|
||
ctaMods: 'ДОСТУПНЫЕ STANDALONE МОДЫ И ПЛАГИНЫ',
|
||
docsPaths: 'Разделы документации',
|
||
featureTitles: ['Два пути моддинга', 'Runtime Hook Bridge', 'Вики-документация', 'Экосистема сообщества'],
|
||
featureDescriptions: [
|
||
'Пишите моды на C# или нативно на Rust через C-ABI/FFI.',
|
||
'Harmony-патчи, event IDs и детерминированный forwarding.',
|
||
'Единый источник в .wiki для пользователей и моддеров.',
|
||
'Документация ядра и standalone-плагинов сообщества.',
|
||
],
|
||
comingSoon: 'Скоро',
|
||
comingSoonText: '`datacentermods.com` пока готовится. До запуска используйте `Docs Hub → Standalone Mods`.',
|
||
communityTitle: 'Сообщество и мейнтейнеры',
|
||
communityText: 'Портал объединяет документацию gregFramework и community-плагинов экосистемы Data Center.',
|
||
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',
|
||
};
|