92 lines
2.3 KiB
TypeScript
92 lines
2.3 KiB
TypeScript
import type { Translations } from '../types';
|
|
|
|
const en: Translations = {
|
|
meta: {
|
|
title: 'Chief Beaver Officer',
|
|
description: 'AI agent for life management through Obsidian. Action cures fear.'
|
|
},
|
|
header: {
|
|
logo: 'Chief Beaver Officer'
|
|
},
|
|
hero: {
|
|
titleLine1: 'Your LifeOS',
|
|
titleLine2: 'manager.',
|
|
subtitle: 'AI agent, Obsidian, planning, tasks, decisions, mindset.',
|
|
philosophy: 'Action cures fear. Build, we\'ll think for you.'
|
|
},
|
|
fakeObsidian: {
|
|
sectionTitle: 'Explore the structure',
|
|
sectionSubtitle: 'Your second brain. Your rules.',
|
|
emptyState: 'Select a file to view',
|
|
caption: 'We don\'t give you files to download. Explore, understand, build your own.'
|
|
},
|
|
promptBuilder: {
|
|
sectionTitle: 'Get your Chief Beaver Officer',
|
|
sectionSubtitle: 'Import into Raycast or any interface',
|
|
openInRaycast: 'Open in Raycast',
|
|
copyPrompt: 'Copy prompt',
|
|
copied: 'Copied!',
|
|
setupTitle: 'Recommended: Semantic Notes Vault MCP',
|
|
setupDescription: 'Install via BRAT: aaronsb/obsidian-mcp-plugin. This connects manager to your vault.',
|
|
presets: [
|
|
{
|
|
id: 'pro',
|
|
name: 'Chief Beaver Pro',
|
|
description: 'Gemini 3 Pro (High) for Raycast, choose reasoning manually',
|
|
icon: 'beaver',
|
|
model: 'google-gemini-3-pro',
|
|
reasoning_effort: 'high'
|
|
},
|
|
{
|
|
id: 'flash',
|
|
name: 'Chief Beaver Flash',
|
|
description: 'Gemini 3 Flash (Minimal) for Raycast',
|
|
icon: 'zap',
|
|
model: 'google-gemini-3-flash',
|
|
reasoning_effort: 'minimal'
|
|
},
|
|
{
|
|
id: 'copy',
|
|
name: 'Copy Prompt',
|
|
description: 'Use in any AI client',
|
|
icon: 'clipboard',
|
|
model: '',
|
|
reasoning_effort: 'minimal'
|
|
}
|
|
]
|
|
},
|
|
personalityCards: {
|
|
sectionTitle: 'Recommended models',
|
|
sectionSubtitle: 'Different tools for different tasks',
|
|
gemini: {
|
|
name: 'Gemini 3',
|
|
tagline: 'For personal',
|
|
traits: [
|
|
'Daily planning',
|
|
'Life decisions',
|
|
'Emotional support',
|
|
'Journaling prompts',
|
|
'Your life coach'
|
|
],
|
|
color: 'aurora-2'
|
|
},
|
|
claude: {
|
|
name: 'Claude Opus 4.5',
|
|
tagline: 'For work',
|
|
traits: [
|
|
'Code review',
|
|
'Technical writing',
|
|
'Research & analysis',
|
|
'Project planning',
|
|
'Your senior colleague'
|
|
],
|
|
color: 'aurora-3'
|
|
}
|
|
},
|
|
footer: {
|
|
builtBy: 'h@kotikot.com'
|
|
}
|
|
};
|
|
|
|
export default en;
|