Files
verse-quote-app/app/i18n/en-US.ts
T
exe.dev user 0a18c774a5
CI / build (push) Successful in 4m26s
Build Verse: a poem-quote app on the agent-native chat template
Adds a Postgres-backed quotes domain (poems/quotes/favorites) exposed as
five agent-native actions (list-quotes, get-random-quote, create-quote,
toggle-favorite, list-favorites) callable from both chat and the React UI
via useActionQuery/useActionMutation. Moves the primary UI from chat to a
mobile-first Quotes/Favorites experience (chat moves to /chat), adds
manual OpenTelemetry instrumentation exporting traces/metrics/logs over
OTLP, and wires a local Docker Postgres for shared state.
2026-07-25 17:42:04 +00:00

73 lines
2.4 KiB
TypeScript

const messages = {
settings: {
title: "Settings",
description: "Language and workspace preferences for this app.",
languageTitle: "Language",
languageDescription:
"Choose the interface language. This preference is saved for your account.",
languageLabel: "Interface language",
workspaceTitle: "Workspace",
workspaceDescription:
"Manage team members, organization access, and shared workspace preferences.",
openTeamSettings: "Open team settings",
openResourceSettings: "Open resource settings",
agentTitle: "Manage agent",
agentDescription:
"Manage the agent's model, API keys, automations, voice, and other controls.",
openAgentSettings: "Manage agent",
},
chat: {
archiveChat: "Archive Chat",
archiveFailed: "Archive Failed",
chats: "Chats",
composerPlaceholder: "Ask the agent...",
emptyState: "Ask me anything",
heroDescription: "Ask the agent to inspect, explain, or change this app.",
heroTitle: "How can I help?",
inspectEmptyState: "Ask me anything about this app",
inspectSuggestionAction: "Show available actions",
inspectSuggestionCapabilities: "What can this app do?",
inspectSuggestionHello: "Help me get started",
newChat: "New Chat",
optionsFor: "Options For",
pinChat: "Pin Chat",
renameChat: "Rename Chat",
renameFailed: "Rename Failed",
renameThread: "Rename Thread",
suggestionActions: "Show me the available actions",
suggestionCapabilities: "What can this app do?",
suggestionCustomize: "Help me customize this app",
unpinChat: "Unpin Chat",
},
navigation: {
chat: "Chat",
collapseSidebar: "Collapse Sidebar",
database: "Database",
expandSidebar: "Expand Sidebar",
extensions: "Extensions",
favorites: "Favorites",
navigation: "Navigation",
navigationDescription: "Main navigation",
observability: "Observability",
openNavigation: "Open navigation",
quotes: "Quotes",
settings: "Settings",
team: "Team",
},
pages: {
databaseTitle: "Database",
observabilityPageTitle: "Agent Observability",
teamTitle: "Team",
teamCreateOrgDescription:
"Create an organization to invite teammates and share this app.",
},
root: {
commandActions: "Actions",
commandAppearance: "Appearance",
commandSearch: "Search",
toggleTheme: "Toggle theme",
},
};
export default messages;