-
Server Logs
+
{t('settings.logs.title')}
- {entries.length} {entries.length === 1 ? 'line' : 'lines'}
+ {t('settings.logs.lineCount', { count: entries.length })}
@@ -71,11 +73,11 @@ export function LogsPage() {
containerRef.current?.scrollTo({ top: containerRef.current.scrollHeight });
}}
>
- Scroll to bottom
+ {t('settings.logs.scrollToBottom')}
)}
@@ -87,13 +89,8 @@ export function LogsPage() {
>
{entries.length === 0 ? (
-
No log output yet.
- {!import.meta.env?.PROD && (
-
- Server logs are only captured when the app manages the server process (production
- builds).
-
- )}
+
{t('settings.logs.empty')}
+ {!import.meta.env?.PROD &&
{t('settings.logs.devHint')}
}
) : (
entries.map((entry) =>
)
diff --git a/app/src/components/ServerTab/ServerTab.tsx b/app/src/components/ServerTab/ServerTab.tsx
index b2f78dc3..2571dc18 100644
--- a/app/src/components/ServerTab/ServerTab.tsx
+++ b/app/src/components/ServerTab/ServerTab.tsx
@@ -1,11 +1,12 @@
import { Link, Outlet, useMatchRoute } from '@tanstack/react-router';
+import { useTranslation } from 'react-i18next';
import { BOTTOM_SAFE_AREA_PADDING } from '@/lib/constants/ui';
import { cn } from '@/lib/utils/cn';
import { usePlatform } from '@/platform/PlatformContext';
import { usePlayerStore } from '@/stores/playerStore';
interface SettingsTab {
- label: string;
+ labelKey: string;
path:
| '/settings'
| '/settings/generation'
@@ -17,15 +18,16 @@ interface SettingsTab {
}
const tabs: SettingsTab[] = [
- { label: 'General', path: '/settings' },
- { label: 'Generation', path: '/settings/generation' },
- { label: 'GPU', path: '/settings/gpu', tauriOnly: true },
- { label: 'Logs', path: '/settings/logs', tauriOnly: true },
- { label: 'Changelog', path: '/settings/changelog' },
- { label: 'About', path: '/settings/about' },
+ { labelKey: 'settings.tabs.general', path: '/settings' },
+ { labelKey: 'settings.tabs.generation', path: '/settings/generation' },
+ { labelKey: 'settings.tabs.gpu', path: '/settings/gpu', tauriOnly: true },
+ { labelKey: 'settings.tabs.logs', path: '/settings/logs', tauriOnly: true },
+ { labelKey: 'settings.tabs.changelog', path: '/settings/changelog' },
+ { labelKey: 'settings.tabs.about', path: '/settings/about' },
];
export function SettingsLayout() {
+ const { t } = useTranslation();
const platform = usePlatform();
const isPlayerVisible = !!usePlayerStore((state) => state.audioUrl);
const matchRoute = useMatchRoute();
@@ -52,7 +54,7 @@ export function SettingsLayout() {
: 'border-transparent text-muted-foreground hover:text-foreground hover:border-muted-foreground/30',
)}
>
- {tab.label}
+ {t(tab.labelKey)}
);
})}
diff --git a/app/src/components/Sidebar.tsx b/app/src/components/Sidebar.tsx
index e4985a44..457f5918 100644
--- a/app/src/components/Sidebar.tsx
+++ b/app/src/components/Sidebar.tsx
@@ -1,6 +1,7 @@
import { Link, useMatchRoute } from '@tanstack/react-router';
import { AudioLines, Box, Mic, Settings, Speaker, Volume2, Wand2 } from 'lucide-react';
import { useEffect, useState } from 'react';
+import { useTranslation } from 'react-i18next';
import voiceboxLogo from '@/assets/voicebox-logo.png';
import { cn } from '@/lib/utils/cn';
import { usePlatform } from '@/platform/PlatformContext';
@@ -13,16 +14,17 @@ interface SidebarProps {
}
const tabs = [
- { id: 'main', path: '/', icon: Volume2, label: 'Generate' },
- { id: 'stories', path: '/stories', icon: AudioLines, label: 'Stories' },
- { id: 'voices', path: '/voices', icon: Mic, label: 'Voices' },
- { id: 'effects', path: '/effects', icon: Wand2, label: 'Effects' },
- { id: 'audio', path: '/audio', icon: Speaker, label: 'Audio' },
- { id: 'models', path: '/models', icon: Box, label: 'Models' },
- { id: 'settings', path: '/settings', icon: Settings, label: 'Settings' },
+ { id: 'main', path: '/', icon: Volume2, labelKey: 'nav.generate' },
+ { id: 'stories', path: '/stories', icon: AudioLines, labelKey: 'nav.stories' },
+ { id: 'voices', path: '/voices', icon: Mic, labelKey: 'nav.voices' },
+ { id: 'effects', path: '/effects', icon: Wand2, labelKey: 'nav.effects' },
+ { id: 'audio', path: '/audio', icon: Speaker, labelKey: 'nav.audio' },
+ { id: 'models', path: '/models', icon: Box, labelKey: 'nav.models' },
+ { id: 'settings', path: '/settings', icon: Settings, labelKey: 'nav.settings' },
];
export function Sidebar({ isMacOS }: SidebarProps) {
+ const { t } = useTranslation();
const matchRoute = useMatchRoute();
const isPlayerOpen = !!usePlayerStore((s) => s.audioUrl);
const platform = usePlatform();
@@ -72,8 +74,8 @@ export function Sidebar({ isMacOS }: SidebarProps) {
? 'bg-white/[0.07] text-foreground shadow-lg backdrop-blur-sm border border-white/[0.08]'
: 'text-muted-foreground hover:bg-muted/50',
)}
- title={tab.label}
- aria-label={tab.label}
+ title={t(tab.labelKey)}
+ aria-label={t(tab.labelKey)}
>
{isActive && (
- Update
+ {t('nav.updateBadge')}
)}
diff --git a/app/src/i18n/index.ts b/app/src/i18n/index.ts
new file mode 100644
index 00000000..3a987bbb
--- /dev/null
+++ b/app/src/i18n/index.ts
@@ -0,0 +1,33 @@
+import i18n from 'i18next';
+import LanguageDetector from 'i18next-browser-languagedetector';
+import { initReactI18next } from 'react-i18next';
+import en from './locales/en/translation.json';
+import zhCN from './locales/zh-CN/translation.json';
+
+export const SUPPORTED_LANGUAGES = [
+ { code: 'en', label: 'English' },
+ { code: 'zh-CN', label: '简体中文' },
+] as const;
+
+export type LanguageCode = (typeof SUPPORTED_LANGUAGES)[number]['code'];
+
+i18n
+ .use(LanguageDetector)
+ .use(initReactI18next)
+ .init({
+ resources: {
+ en: { translation: en },
+ 'zh-CN': { translation: zhCN },
+ },
+ fallbackLng: 'en',
+ supportedLngs: SUPPORTED_LANGUAGES.map((l) => l.code),
+ nonExplicitSupportedLngs: true,
+ interpolation: { escapeValue: false },
+ detection: {
+ order: ['localStorage', 'navigator'],
+ lookupLocalStorage: 'voicebox:lang',
+ caches: ['localStorage'],
+ },
+ });
+
+export default i18n;
diff --git a/app/src/i18n/locales/en/translation.json b/app/src/i18n/locales/en/translation.json
new file mode 100644
index 00000000..86e12206
--- /dev/null
+++ b/app/src/i18n/locales/en/translation.json
@@ -0,0 +1,329 @@
+{
+ "common": {
+ "cancel": "Cancel",
+ "save": "Save",
+ "delete": "Delete",
+ "edit": "Edit",
+ "close": "Close",
+ "confirm": "Confirm",
+ "loading": "Loading…",
+ "error": "Error",
+ "unknown": "Unknown",
+ "unknownError": "Unknown error"
+ },
+ "nav": {
+ "generate": "Generate",
+ "stories": "Stories",
+ "voices": "Voices",
+ "effects": "Effects",
+ "audio": "Audio",
+ "models": "Models",
+ "settings": "Settings",
+ "updateBadge": "Update"
+ },
+ "generation": {
+ "placeholder": {
+ "storyWithEffects": "Generate speech for \"{{name}}\"… (type / for effects)",
+ "story": "Generate speech for \"{{name}}\"…",
+ "profile": "Generate speech using {{name}}…",
+ "effectsHint": "Type / for effects like [laugh], [sigh]…",
+ "selectVoice": "Select a voice profile above…"
+ },
+ "button": {
+ "generate": "Generate speech",
+ "generating": "Generating…",
+ "selectFirst": "Select a voice profile first"
+ },
+ "instruct": {
+ "show": "Show delivery instructions",
+ "hide": "Hide delivery instructions",
+ "tooltip": "Delivery instructions (tone, emotion, pace)",
+ "placeholder": "Delivery instructions — e.g. Speak slowly with warmth, Authoritative and clear…"
+ },
+ "voiceSelector": {
+ "placeholder": "Select a voice…"
+ },
+ "effects": {
+ "none": "No effects",
+ "profileDefault": "Profile default"
+ }
+ },
+ "main": {
+ "importVoice": "Import Voice",
+ "createVoice": "Create Voice",
+ "import": {
+ "invalidTitle": "Invalid file type",
+ "invalidDescription": "Please select a valid .voicebox.zip file",
+ "successTitle": "Profile imported",
+ "successDescription": "Voice profile imported successfully",
+ "failedTitle": "Failed to import profile",
+ "dialogTitle": "Import Profile",
+ "dialogDescription": "Import the profile from \"{{name}}\". This will create a new profile with all samples.",
+ "importing": "Importing…",
+ "action": "Import"
+ }
+ },
+ "settings": {
+ "tabs": {
+ "general": "General",
+ "generation": "Generation",
+ "gpu": "GPU",
+ "logs": "Logs",
+ "changelog": "Changelog",
+ "about": "About"
+ },
+ "language": {
+ "label": "Language",
+ "description": "Choose the display language for Voicebox."
+ },
+ "general": {
+ "docs": { "title": "Read the Docs" },
+ "discord": { "title": "Join the Discord", "subtitle": "Get help & share voices" },
+ "serverUrl": {
+ "title": "Server URL",
+ "description": "The address of your voicebox backend server.",
+ "invalidUrl": "Please enter a valid URL",
+ "updatedTitle": "Server URL updated",
+ "updatedDescription": "Connected to {{url}}"
+ },
+ "keepServerRunning": {
+ "title": "Keep server running when app closes",
+ "description": "The server will continue running in the background after closing the app.",
+ "failedTitle": "Failed to update setting",
+ "failedDescription": "Could not sync setting to backend.",
+ "updatedTitle": "Setting updated",
+ "runningDescription": "Server will continue running when app closes",
+ "stoppedDescription": "Server will stop when app closes"
+ },
+ "networkAccess": {
+ "title": "Allow network access",
+ "description": "Makes the server accessible from other devices on your network. Restart the app after changing.",
+ "enabled": "Network access enabled. Restart the app to apply.",
+ "disabled": "Network access disabled. Restart the app to apply."
+ },
+ "connection": {
+ "connecting": "Connecting",
+ "offline": "Offline",
+ "online": "Online"
+ },
+ "updates": {
+ "title": "App Updates",
+ "devSuffix": " (dev)",
+ "devMode": {
+ "title": "Development mode",
+ "description": "Auto-updates are disabled in development mode."
+ },
+ "check": {
+ "title": "Check for updates",
+ "available": "Version {{version}} available",
+ "checking": "Checking…",
+ "upToDate": "You're up to date",
+ "button": "Check"
+ },
+ "error": "Update error",
+ "download": {
+ "title": "Update to {{version}}",
+ "description": "Download and install the latest version.",
+ "button": "Download"
+ },
+ "downloading": "Downloading update…",
+ "ready": {
+ "title": "Update ready to install",
+ "description": "Version {{version}} has been downloaded. Restart to complete.",
+ "button": "Restart Now"
+ }
+ },
+ "api": {
+ "title": "API Access",
+ "description": "Integrate Voicebox into your workflow via the REST API at
{{url}}",
+ "viewReference": "View the full API reference",
+ "endpoints": {
+ "generate": "Generate speech",
+ "health": "Server status",
+ "profiles": "List voices",
+ "history": "Past generations"
+ }
+ }
+ },
+ "generation": {
+ "title": "Generation",
+ "description": "Controls for long text generation. These settings apply to all engines.",
+ "chunkLimit": {
+ "title": "Auto-chunking limit",
+ "description": "Long text is split into chunks at sentence boundaries. Lower values can improve quality for long outputs.",
+ "value": "{{count}} chars"
+ },
+ "crossfade": {
+ "title": "Chunk crossfade",
+ "description": "Blends audio between chunks to smooth transitions. Set to 0 for a hard cut.",
+ "cut": "Cut",
+ "ms": "{{ms}}ms"
+ },
+ "normalize": {
+ "title": "Normalize audio",
+ "description": "Adjusts output volume to a consistent level across generations."
+ },
+ "autoplay": {
+ "title": "Autoplay on generate",
+ "description": "Automatically play audio when a generation completes."
+ },
+ "folder": {
+ "title": "Generations folder",
+ "description": "Where generated audio files are stored on disk.",
+ "open": "Open"
+ }
+ },
+ "gpu": {
+ "cpuOnly": "CPU Only",
+ "vramUsed": "{{mb}} MB VRAM",
+ "noAcceleration": "No GPU acceleration detected",
+ "active": "Active",
+ "cuda": {
+ "title": "CUDA Backend",
+ "description": "NVIDIA GPU acceleration via a downloadable CUDA backend.",
+ "downloading": "Downloading CUDA backend…",
+ "downloadingShort": "Downloading…",
+ "updating": "Updating…"
+ },
+ "restart": {
+ "ready": "Server restarted successfully",
+ "waiting": "Restarting server…",
+ "stopping": "Stopping server…"
+ },
+ "download": {
+ "title": "Download CUDA backend",
+ "description": "~2.4 GB download. Requires an NVIDIA GPU with CUDA support.",
+ "button": "Download"
+ },
+ "switchToCuda": {
+ "title": "Switch to CUDA backend",
+ "description": "CUDA backend is downloaded and ready. Restart to enable.",
+ "button": "Restart"
+ },
+ "switchToCpu": {
+ "title": "Switch to CPU backend",
+ "description": "Disable GPU acceleration. You can re-download CUDA later.",
+ "button": "Switch"
+ },
+ "remove": {
+ "title": "Remove CUDA backend",
+ "description": "Delete the downloaded CUDA binary to free disk space.",
+ "button": "Remove"
+ },
+ "errors": {
+ "downloadFailed": "Download failed",
+ "downloadStart": "Failed to start download",
+ "restartFailed": "Restart failed",
+ "switchCpu": "Failed to switch to CPU",
+ "deleteCuda": "Failed to delete CUDA backend"
+ },
+ "footer": "Voicebox automatically detects and uses the best available GPU on your system. On Apple Silicon Macs, the MLX backend runs natively on the Neural Engine and GPU via Metal Performance Shaders (MPS), with no additional setup required. On Windows and Linux with NVIDIA GPUs, you can download an optional CUDA backend for hardware-accelerated inference. AMD ROCm, Intel XPU, and DirectML are also supported where available through PyTorch. When no GPU is detected, Voicebox falls back to CPU — all engines still work, just slower."
+ },
+ "logs": {
+ "title": "Server Logs",
+ "lineCount_one": "{{count}} line",
+ "lineCount_other": "{{count}} lines",
+ "scrollToBottom": "Scroll to bottom",
+ "clear": "Clear",
+ "empty": "No log output yet.",
+ "devHint": "Server logs are only captured when the app manages the server process (production builds)."
+ },
+ "changelog": {
+ "devBadge": "dev",
+ "showLess": "Show less",
+ "showMore": "Show more"
+ },
+ "about": {
+ "tagline": "The open-source voice synthesis studio. Clone voices, generate speech, apply effects, and build voice-powered apps — all running locally on your machine.",
+ "createdBy": "Created by",
+ "buyCoffee": "Buy me a coffee",
+ "license": "Licensed under
MIT"
+ }
+ },
+ "models": {
+ "title": "Models",
+ "subtitle": "Download and manage AI models for voice generation and transcription",
+ "defaultName": "Model",
+ "unknownSize": "Unknown size",
+ "sections": {
+ "voiceGeneration": "Voice Generation",
+ "transcription": "Transcription"
+ },
+ "status": {
+ "loaded": "Loaded"
+ },
+ "storage": {
+ "location": "Storage location",
+ "open": "Open",
+ "change": "Change",
+ "migrating": "Migrating…",
+ "reset": "Reset",
+ "pickerTitle": "Choose model storage folder"
+ },
+ "progress": {
+ "connecting": "Connecting…",
+ "connectingHf": "Connecting to HuggingFace…"
+ },
+ "problems": {
+ "title": "Problems",
+ "clearAll": "Clear All",
+ "noDetails": "No error details available. Try downloading again.",
+ "startedAt": "started at {{time}}"
+ },
+ "detail": {
+ "loadingInfo": "Loading model info…",
+ "byAuthor": "by {{author}}",
+ "downloads": "Downloads",
+ "likes": "Likes",
+ "license": "License",
+ "languagesCount": "{{count}} languages supported",
+ "languagesList": "Languages: {{list}}",
+ "onDisk": "{{size}} on disk"
+ },
+ "actions": {
+ "download": "Download",
+ "retry": "Retry Download",
+ "unload": "Unload",
+ "unloading": "Unloading…",
+ "unloadFirst": "Unload model before deleting",
+ "deleteModel": "Delete Model"
+ },
+ "deleteDialog": {
+ "title": "Delete Model",
+ "body": "Are you sure you want to delete
{{name}}?",
+ "sizeNote": "This will free up {{size}} of disk space. The model will need to be re-downloaded if you want to use it again.",
+ "deleting": "Deleting…"
+ },
+ "migrateDialog": {
+ "title": "Move models to new location?",
+ "description": "The server will shut down while models are being moved to the new folder. It will restart automatically once the migration is complete.",
+ "action": "Move Models",
+ "preparing": "Preparing…",
+ "restartingServer": "Restarting server…"
+ },
+ "migrate": {
+ "title": "Moving models",
+ "offline": "The server is offline while models are being moved."
+ },
+ "toast": {
+ "downloadFailed": "Download failed",
+ "cancelFailed": "Cancel failed",
+ "cancelFailedDescription": "Could not cancel the download task.",
+ "deleted": "Model deleted",
+ "deletedDescription": "{{name}} has been deleted successfully.",
+ "deleteFailed": "Delete failed",
+ "unloaded": "Model unloaded",
+ "unloadedDescription": "{{name}} has been unloaded from memory.",
+ "unloadFailed": "Unload failed",
+ "openFolderFailed": "Failed to open model folder",
+ "pickerFailed": "Failed to open folder picker",
+ "resetToDefault": "Reset to default location. Restarting server…",
+ "noModelsToMigrate": "No models to migrate",
+ "noModelsToMigrateDescription": "Download at least one model before changing the storage location.",
+ "migrated": "Models moved successfully",
+ "migrationFailed": "Migration failed",
+ "migrationFailedGeneric": "Failed to migrate models",
+ "migrationConnectionLost": "Lost connection during migration"
+ }
+ }
+}
diff --git a/app/src/i18n/locales/zh-CN/translation.json b/app/src/i18n/locales/zh-CN/translation.json
new file mode 100644
index 00000000..0937f5d1
--- /dev/null
+++ b/app/src/i18n/locales/zh-CN/translation.json
@@ -0,0 +1,329 @@
+{
+ "common": {
+ "cancel": "取消",
+ "save": "保存",
+ "delete": "删除",
+ "edit": "编辑",
+ "close": "关闭",
+ "confirm": "确认",
+ "loading": "加载中…",
+ "error": "错误",
+ "unknown": "未知",
+ "unknownError": "未知错误"
+ },
+ "nav": {
+ "generate": "生成",
+ "stories": "故事",
+ "voices": "声音",
+ "effects": "效果",
+ "audio": "音频",
+ "models": "模型",
+ "settings": "设置",
+ "updateBadge": "更新"
+ },
+ "generation": {
+ "placeholder": {
+ "storyWithEffects": "为 \"{{name}}\" 生成语音… (输入 / 使用效果)",
+ "story": "为 \"{{name}}\" 生成语音…",
+ "profile": "使用 {{name}} 生成语音…",
+ "effectsHint": "输入 / 使用效果,如 [笑声]、[叹息]…",
+ "selectVoice": "请在上方选择一个声音档案…"
+ },
+ "button": {
+ "generate": "生成语音",
+ "generating": "生成中…",
+ "selectFirst": "请先选择声音档案"
+ },
+ "instruct": {
+ "show": "显示传达说明",
+ "hide": "隐藏传达说明",
+ "tooltip": "传达说明 (语气、情感、节奏)",
+ "placeholder": "传达说明——例如:温柔缓慢地说、威严清晰…"
+ },
+ "voiceSelector": {
+ "placeholder": "选择声音…"
+ },
+ "effects": {
+ "none": "无效果",
+ "profileDefault": "档案默认"
+ }
+ },
+ "main": {
+ "importVoice": "导入声音",
+ "createVoice": "创建声音",
+ "import": {
+ "invalidTitle": "文件类型无效",
+ "invalidDescription": "请选择有效的 .voicebox.zip 文件",
+ "successTitle": "声音已导入",
+ "successDescription": "成功导入声音档案",
+ "failedTitle": "导入声音档案失败",
+ "dialogTitle": "导入声音档案",
+ "dialogDescription": "从 \"{{name}}\" 导入声音档案。这将创建一个新的声音档案,包含所有样本。",
+ "importing": "导入中…",
+ "action": "导入"
+ }
+ },
+ "settings": {
+ "tabs": {
+ "general": "常规",
+ "generation": "生成",
+ "gpu": "GPU",
+ "logs": "日志",
+ "changelog": "更新日志",
+ "about": "关于"
+ },
+ "language": {
+ "label": "语言",
+ "description": "选择 Voicebox 的显示语言。"
+ },
+ "general": {
+ "docs": { "title": "阅读文档" },
+ "discord": { "title": "加入 Discord", "subtitle": "获取帮助 & 分享声音" },
+ "serverUrl": {
+ "title": "服务器 URL",
+ "description": "Voicebox 后端服务器的地址。",
+ "invalidUrl": "请输入有效的 URL",
+ "updatedTitle": "服务器 URL 已更新",
+ "updatedDescription": "已连接到 {{url}}"
+ },
+ "keepServerRunning": {
+ "title": "关闭应用时保持服务器运行",
+ "description": "关闭应用后,服务器将继续在后台运行。",
+ "failedTitle": "更新设置失败",
+ "failedDescription": "无法将设置同步到后端。",
+ "updatedTitle": "设置已更新",
+ "runningDescription": "关闭应用时服务器将继续运行",
+ "stoppedDescription": "关闭应用时服务器将停止"
+ },
+ "networkAccess": {
+ "title": "允许网络访问",
+ "description": "使网络上的其他设备可以访问服务器。更改后请重启应用。",
+ "enabled": "已启用网络访问。重启应用以应用更改。",
+ "disabled": "已禁用网络访问。重启应用以应用更改。"
+ },
+ "connection": {
+ "connecting": "连接中",
+ "offline": "离线",
+ "online": "在线"
+ },
+ "updates": {
+ "title": "应用更新",
+ "devSuffix": "(开发版)",
+ "devMode": {
+ "title": "开发模式",
+ "description": "开发模式下已禁用自动更新。"
+ },
+ "check": {
+ "title": "检查更新",
+ "available": "版本 {{version}} 可用",
+ "checking": "检查中…",
+ "upToDate": "已是最新版本",
+ "button": "检查"
+ },
+ "error": "更新错误",
+ "download": {
+ "title": "更新到 {{version}}",
+ "description": "下载并安装最新版本。",
+ "button": "下载"
+ },
+ "downloading": "下载更新中…",
+ "ready": {
+ "title": "更新已准备就绪",
+ "description": "版本 {{version}} 已下载。重启以完成。",
+ "button": "立即重启"
+ }
+ },
+ "api": {
+ "title": "API 访问",
+ "description": "通过
{{url}} 的 REST API 将 Voicebox 集成到您的工作流程中",
+ "viewReference": "查看完整的 API 参考",
+ "endpoints": {
+ "generate": "生成语音",
+ "health": "服务器状态",
+ "profiles": "声音列表",
+ "history": "历史生成"
+ }
+ }
+ },
+ "generation": {
+ "title": "生成",
+ "description": "长文本生成的控件。这些设置适用于所有引擎。",
+ "chunkLimit": {
+ "title": "自动分块上限",
+ "description": "长文本在句子边界处分块。较低的值可以提高长输出的质量。",
+ "value": "{{count}} 字符"
+ },
+ "crossfade": {
+ "title": "块间淡入淡出",
+ "description": "在块之间混合音频以平滑过渡。设为 0 表示硬切换。",
+ "cut": "切换",
+ "ms": "{{ms}}毫秒"
+ },
+ "normalize": {
+ "title": "音频归一化",
+ "description": "将输出音量调整到所有生成结果一致的水平。"
+ },
+ "autoplay": {
+ "title": "生成后自动播放",
+ "description": "生成完成后自动播放音频。"
+ },
+ "folder": {
+ "title": "生成文件夹",
+ "description": "生成的音频文件在磁盘上的存储位置。",
+ "open": "打开"
+ }
+ },
+ "gpu": {
+ "cpuOnly": "仅 CPU",
+ "vramUsed": "{{mb}} MB 显存",
+ "noAcceleration": "未检测到 GPU 加速",
+ "active": "活动",
+ "cuda": {
+ "title": "CUDA 后端",
+ "description": "通过可下载的 CUDA 后端实现 NVIDIA GPU 加速。",
+ "downloading": "下载 CUDA 后端中…",
+ "downloadingShort": "下载中…",
+ "updating": "更新中…"
+ },
+ "restart": {
+ "ready": "服务器重启成功",
+ "waiting": "重启服务器中…",
+ "stopping": "停止服务器中…"
+ },
+ "download": {
+ "title": "下载 CUDA 后端",
+ "description": "约 2.4 GB 下载。需要支持 CUDA 的 NVIDIA GPU。",
+ "button": "下载"
+ },
+ "switchToCuda": {
+ "title": "切换到 CUDA 后端",
+ "description": "CUDA 后端已下载完成。重启以启用。",
+ "button": "重启"
+ },
+ "switchToCpu": {
+ "title": "切换到 CPU 后端",
+ "description": "禁用 GPU 加速。您之后可以重新下载 CUDA。",
+ "button": "切换"
+ },
+ "remove": {
+ "title": "移除 CUDA 后端",
+ "description": "删除已下载的 CUDA 二进制文件以释放磁盘空间。",
+ "button": "移除"
+ },
+ "errors": {
+ "downloadFailed": "下载失败",
+ "downloadStart": "启动下载失败",
+ "restartFailed": "重启失败",
+ "switchCpu": "切换到 CPU 失败",
+ "deleteCuda": "删除 CUDA 后端失败"
+ },
+ "footer": "Voicebox 会自动检测并使用系统上可用的最佳 GPU。在 Apple Silicon Mac 上,MLX 后端通过 Metal Performance Shaders (MPS) 在神经引擎和 GPU 上原生运行,无需额外设置。在配备 NVIDIA GPU 的 Windows 和 Linux 上,您可以下载可选的 CUDA 后端以获得硬件加速推理。AMD ROCm、Intel XPU 和 DirectML 也通过 PyTorch 获得支持。未检测到 GPU 时,Voicebox 会退回到 CPU——所有引擎仍可工作,只是速度较慢。"
+ },
+ "logs": {
+ "title": "服务器日志",
+ "lineCount_one": "{{count}} 行",
+ "lineCount_other": "{{count}} 行",
+ "scrollToBottom": "滚动到底部",
+ "clear": "清除",
+ "empty": "暂无日志输出。",
+ "devHint": "仅当应用管理服务器进程(生产构建)时才会捕获服务器日志。"
+ },
+ "changelog": {
+ "devBadge": "开发版",
+ "showLess": "收起",
+ "showMore": "展开"
+ },
+ "about": {
+ "tagline": "开源语音合成工作室。克隆声音、生成语音、应用效果、构建语音驱动的应用——全部在您的本地机器上运行。",
+ "createdBy": "创建者",
+ "buyCoffee": "请我喝杯咖啡",
+ "license": "采用
MIT 协议"
+ }
+ },
+ "models": {
+ "title": "模型",
+ "subtitle": "下载和管理用于语音生成和转录的 AI 模型",
+ "defaultName": "模型",
+ "unknownSize": "未知大小",
+ "sections": {
+ "voiceGeneration": "语音生成",
+ "transcription": "语音转录"
+ },
+ "status": {
+ "loaded": "已加载"
+ },
+ "storage": {
+ "location": "存储位置",
+ "open": "打开",
+ "change": "更改",
+ "migrating": "迁移中…",
+ "reset": "重置",
+ "pickerTitle": "选择模型存储文件夹"
+ },
+ "progress": {
+ "connecting": "连接中…",
+ "connectingHf": "连接到 HuggingFace 中…"
+ },
+ "problems": {
+ "title": "问题",
+ "clearAll": "全部清除",
+ "noDetails": "没有可用的错误详情。请重试下载。",
+ "startedAt": "开始于 {{time}}"
+ },
+ "detail": {
+ "loadingInfo": "加载模型信息中…",
+ "byAuthor": "由 {{author}}",
+ "downloads": "下载量",
+ "likes": "点赞数",
+ "license": "许可",
+ "languagesCount": "支持 {{count}} 种语言",
+ "languagesList": "语言:{{list}}",
+ "onDisk": "磁盘占用 {{size}}"
+ },
+ "actions": {
+ "download": "下载",
+ "retry": "重试下载",
+ "unload": "卸载",
+ "unloading": "卸载中…",
+ "unloadFirst": "删除前请先卸载模型",
+ "deleteModel": "删除模型"
+ },
+ "deleteDialog": {
+ "title": "删除模型",
+ "body": "确定要删除
{{name}} 吗?",
+ "sizeNote": "这将释放 {{size}} 磁盘空间。如果您想再次使用该模型,需要重新下载。",
+ "deleting": "删除中…"
+ },
+ "migrateDialog": {
+ "title": "移动模型到新位置?",
+ "description": "在模型迁移到新文件夹期间,服务器将关闭。迁移完成后会自动重启。",
+ "action": "移动模型",
+ "preparing": "准备中…",
+ "restartingServer": "重启服务器中…"
+ },
+ "migrate": {
+ "title": "移动模型中",
+ "offline": "模型迁移期间服务器处于离线状态。"
+ },
+ "toast": {
+ "downloadFailed": "下载失败",
+ "cancelFailed": "取消失败",
+ "cancelFailedDescription": "无法取消下载任务。",
+ "deleted": "模型已删除",
+ "deletedDescription": "{{name}} 已成功删除。",
+ "deleteFailed": "删除失败",
+ "unloaded": "模型已卸载",
+ "unloadedDescription": "{{name}} 已从内存中卸载。",
+ "unloadFailed": "卸载失败",
+ "openFolderFailed": "打开模型文件夹失败",
+ "pickerFailed": "打开文件夹选择器失败",
+ "resetToDefault": "已重置到默认位置。重启服务器中…",
+ "noModelsToMigrate": "没有可迁移的模型",
+ "noModelsToMigrateDescription": "更改存储位置前请先下载至少一个模型。",
+ "migrated": "模型已成功移动",
+ "migrationFailed": "迁移失败",
+ "migrationFailedGeneric": "迁移模型失败",
+ "migrationConnectionLost": "迁移期间丢失连接"
+ }
+ }
+}
diff --git a/app/src/main.tsx b/app/src/main.tsx
index 2607811e..52dc9044 100644
--- a/app/src/main.tsx
+++ b/app/src/main.tsx
@@ -3,6 +3,7 @@ import { QueryClientProvider } from '@tanstack/react-query';
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
+import './i18n';
import './index.css';
import { queryClient } from './lib/queryClient';
diff --git a/bun.lock b/bun.lock
index a6f353a2..157138af 100644
--- a/bun.lock
+++ b/bun.lock
@@ -17,7 +17,7 @@
},
"app": {
"name": "@voicebox/app",
- "version": "0.4.1",
+ "version": "0.4.2",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
@@ -49,11 +49,14 @@
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^12.29.0",
+ "i18next": "^26.0.6",
+ "i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^0.454.0",
"motion": "^12.29.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-hook-form": "^7.53.0",
+ "react-i18next": "^17.0.4",
"react-sound-visualizer": "^1.4.0",
"tailwind-merge": "^2.5.4",
"wavesurfer.js": "^7.0.0",
@@ -72,7 +75,7 @@
},
"landing": {
"name": "@voicebox/landing",
- "version": "0.4.1",
+ "version": "0.4.2",
"dependencies": {
"@fontsource/space-grotesk": "^5.2.10",
"@icons-pack/react-simple-icons": "^13.13.0",
@@ -101,7 +104,7 @@
},
"tauri": {
"name": "@voicebox/tauri",
- "version": "0.4.1",
+ "version": "0.4.2",
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
@@ -124,7 +127,7 @@
},
"web": {
"name": "@voicebox/web",
- "version": "0.4.1",
+ "version": "0.4.2",
"dependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.3.0",
@@ -182,6 +185,8 @@
"@babel/plugin-transform-react-jsx-source": ["@babel/plugin-transform-react-jsx-source@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw=="],
+ "@babel/runtime": ["@babel/runtime@7.29.2", "", {}, "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g=="],
+
"@babel/template": ["@babel/template@7.28.6", "", { "dependencies": { "@babel/code-frame": "^7.28.6", "@babel/parser": "^7.28.6", "@babel/types": "^7.28.6" } }, "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ=="],
"@babel/traverse": ["@babel/traverse@7.28.6", "", { "dependencies": { "@babel/code-frame": "^7.28.6", "@babel/generator": "^7.28.6", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.6", "@babel/template": "^7.28.6", "@babel/types": "^7.28.6", "debug": "^4.3.1" } }, "sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg=="],
@@ -786,7 +791,7 @@
"fraction.js": ["fraction.js@5.3.4", "", {}, "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ=="],
- "framer-motion": ["framer-motion@12.29.0", "", { "dependencies": { "motion-dom": "^12.29.0", "motion-utils": "^12.27.2", "tslib": "^2.4.0" }, "peerDependencies": { "@emotion/is-prop-valid": "*", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@emotion/is-prop-valid", "react", "react-dom"] }, "sha512-1gEFGXHYV2BD42ZPTFmSU9buehppU+bCuOnHU0AD18DKh9j4DuTx47MvqY5ax+NNWRtK32qIcJf1UxKo1WwjWg=="],
+ "framer-motion": ["framer-motion@12.36.0", "", { "dependencies": { "motion-dom": "^12.36.0", "motion-utils": "^12.36.0", "tslib": "^2.4.0" }, "peerDependencies": { "@emotion/is-prop-valid": "*", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@emotion/is-prop-valid", "react", "react-dom"] }, "sha512-4PqYHAT7gev0ke0wos+PyrcFxI0HScjm3asgU8nSYa8YzJFuwgIvdj3/s3ZaxLq0bUSboIn19A2WS/MHwLCvfw=="],
"fs.realpath": ["fs.realpath@1.0.0", "", {}, "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="],
@@ -814,6 +819,12 @@
"hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="],
+ "html-parse-stringify": ["html-parse-stringify@3.0.1", "", { "dependencies": { "void-elements": "3.1.0" } }, "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg=="],
+
+ "i18next": ["i18next@26.0.6", "", { "dependencies": { "@babel/runtime": "^7.29.2" }, "peerDependencies": { "typescript": "^5 || ^6" }, "optionalPeers": ["typescript"] }, "sha512-A4U6eCXodIbrhf8EarRurB9/4ebyaurH4+fu4gig9bqxmpSt+fCAFm/GpRQDcN1Xzu/LdFCx4nYHsnM1edIIbg=="],
+
+ "i18next-browser-languagedetector": ["i18next-browser-languagedetector@8.2.1", "", { "dependencies": { "@babel/runtime": "^7.23.2" } }, "sha512-bZg8+4bdmaOiApD7N7BPT9W8MLZG+nPTOFlLiJiT8uzKXFjhxw4v2ierCXOwB5sFDMtuA5G4kgYZ0AznZxQ/cw=="],
+
"ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="],
"import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="],
@@ -910,9 +921,9 @@
"motion": ["motion@12.29.0", "", { "dependencies": { "framer-motion": "^12.29.0", "tslib": "^2.4.0" }, "peerDependencies": { "@emotion/is-prop-valid": "*", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@emotion/is-prop-valid", "react", "react-dom"] }, "sha512-rjB5CP2N9S2ESAyEFnAFMgTec6X8yvfxLNcz8n12gPq3M48R7ZbBeVYkDOTj8SPMwfvGIFI801SiPSr1+HCr9g=="],
- "motion-dom": ["motion-dom@12.29.0", "", { "dependencies": { "motion-utils": "^12.27.2" } }, "sha512-3eiz9bb32yvY8Q6XNM4AwkSOBPgU//EIKTZwsSWgA9uzbPBhZJeScCVcBuwwYVqhfamewpv7ZNmVKTGp5qnzkA=="],
+ "motion-dom": ["motion-dom@12.36.0", "", { "dependencies": { "motion-utils": "^12.36.0" } }, "sha512-Ep1pq8P88rGJ75om8lTCA13zqd7ywPGwCqwuWwin6BKc0hMLkVfcS6qKlRqEo2+t0DwoUcgGJfXwaiFn4AOcQA=="],
- "motion-utils": ["motion-utils@12.27.2", "", {}, "sha512-B55gcoL85Mcdt2IEStY5EEAsrMSVE2sI14xQ/uAdPL+mfQxhKKFaEag9JmfxedJOR4vZpBGoPeC/Gm13I/4g5Q=="],
+ "motion-utils": ["motion-utils@12.36.0", "", {}, "sha512-eHWisygbiwVvf6PZ1vhaHCLamvkSbPIeAYxWUuL3a2PD/TROgE7FvfHWTIH4vMl798QLfMw15nRqIaRDXTlYRg=="],
"ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
@@ -988,6 +999,8 @@
"react-hook-form": ["react-hook-form@7.71.1", "", { "peerDependencies": { "react": "^16.8.0 || ^17 || ^18 || ^19" } }, "sha512-9SUJKCGKo8HUSsCO+y0CtqkqI5nNuaDqTxyqPsZPqIwudpj4rCrAz/jZV+jn57bx5gtZKOh3neQu94DXMc+w5w=="],
+ "react-i18next": ["react-i18next@17.0.4", "", { "dependencies": { "@babel/runtime": "^7.29.2", "html-parse-stringify": "^3.0.1", "use-sync-external-store": "^1.6.0" }, "peerDependencies": { "i18next": ">= 26.0.1", "react": ">= 16.8.0", "typescript": "^5 || ^6" }, "optionalPeers": ["typescript"] }, "sha512-hQipmK4EF0y6RO6tt6WuqnmWpWYEXmQUUzecmMBuNsIgYd3smXcG4GtYPWhvgxn0pqMOItKlEO8H24HCs5hc3g=="],
+
"react-is": ["react-is@16.13.1", "", {}, "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="],
"react-loaders": ["react-loaders@3.0.1", "", { "dependencies": { "classnames": "^2.2.3" }, "peerDependencies": { "prop-types": ">=15.6.0", "react": ">=15" } }, "sha512-4igMNqs9Fb3d4Z+0UHIGQNJsw/37gX0nUO8QxupnEKRn1dtyYC1LGwk5GuaoDciMQCQc/MmPwb4Fn6ZfdoX1FQ=="],
@@ -1100,7 +1113,9 @@
"vite": ["vite@5.4.21", "", { "dependencies": { "esbuild": "^0.21.3", "postcss": "^8.4.43", "rollup": "^4.20.0" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || >=20.0.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" }, "optionalPeers": ["@types/node", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser"], "bin": { "vite": "bin/vite.js" } }, "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw=="],
- "wavesurfer.js": ["wavesurfer.js@7.12.1", "", {}, "sha512-NswPjVHxk0Q1F/VMRemCPUzSojjuHHisQrBqQiRXg7MVbe3f5vQ6r0rTTXA/a/neC/4hnOEC4YpXca4LpH0SUg=="],
+ "void-elements": ["void-elements@3.1.0", "", {}, "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w=="],
+
+ "wavesurfer.js": ["wavesurfer.js@7.12.2", "", {}, "sha512-akVYISAHCw2gNw/7n8Pk/zH1Zz91WJyL/2MaNQCLD1XV3A226gKlWoDHWp9UdWqQ3zXnWttDf9ewZQQ3cxbOmQ=="],
"which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="],
@@ -1160,20 +1175,20 @@
"@typescript-eslint/typescript-estree/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
- "@voicebox/landing/framer-motion": ["framer-motion@12.36.0", "", { "dependencies": { "motion-dom": "^12.36.0", "motion-utils": "^12.36.0", "tslib": "^2.4.0" }, "peerDependencies": { "@emotion/is-prop-valid": "*", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@emotion/is-prop-valid", "react", "react-dom"] }, "sha512-4PqYHAT7gev0ke0wos+PyrcFxI0HScjm3asgU8nSYa8YzJFuwgIvdj3/s3ZaxLq0bUSboIn19A2WS/MHwLCvfw=="],
-
"@voicebox/landing/lucide-react": ["lucide-react@0.316.0", "", { "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0" } }, "sha512-dTmYX1H4IXsRfVcj/KUxworV6814ApTl7iXaS21AimK2RUEl4j4AfOmqD3VR8phe5V91m4vEJ8tCK4uT1jE5nA=="],
"@voicebox/landing/tailwind-merge": ["tailwind-merge@3.4.0", "", {}, "sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g=="],
"@voicebox/landing/tailwindcss": ["tailwindcss@3.4.19", "", { "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", "chokidar": "^3.6.0", "didyoumean": "^1.2.2", "dlv": "^1.1.3", "fast-glob": "^3.3.2", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", "jiti": "^1.21.7", "lilconfig": "^3.1.3", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.4.47", "postcss-import": "^15.1.0", "postcss-js": "^4.0.1", "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", "postcss-nested": "^6.2.0", "postcss-selector-parser": "^6.1.2", "resolve": "^1.22.8", "sucrase": "^3.35.0" }, "bin": { "tailwind": "lib/cli.js", "tailwindcss": "lib/cli.js" } }, "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ=="],
- "@voicebox/landing/wavesurfer.js": ["wavesurfer.js@7.12.2", "", {}, "sha512-akVYISAHCw2gNw/7n8Pk/zH1Zz91WJyL/2MaNQCLD1XV3A226gKlWoDHWp9UdWqQ3zXnWttDf9ewZQQ3cxbOmQ=="],
+ "@voicebox/web/wavesurfer.js": ["wavesurfer.js@7.12.1", "", {}, "sha512-NswPjVHxk0Q1F/VMRemCPUzSojjuHHisQrBqQiRXg7MVbe3f5vQ6r0rTTXA/a/neC/4hnOEC4YpXca4LpH0SUg=="],
"chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="],
"fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="],
+ "motion/framer-motion": ["framer-motion@12.29.0", "", { "dependencies": { "motion-dom": "^12.29.0", "motion-utils": "^12.27.2", "tslib": "^2.4.0" }, "peerDependencies": { "@emotion/is-prop-valid": "*", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@emotion/is-prop-valid", "react", "react-dom"] }, "sha512-1gEFGXHYV2BD42ZPTFmSU9buehppU+bCuOnHU0AD18DKh9j4DuTx47MvqY5ax+NNWRtK32qIcJf1UxKo1WwjWg=="],
+
"next/postcss": ["postcss@8.4.31", "", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }, "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ=="],
"sharp/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
@@ -1182,8 +1197,8 @@
"@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
- "@voicebox/landing/framer-motion/motion-dom": ["motion-dom@12.36.0", "", { "dependencies": { "motion-utils": "^12.36.0" } }, "sha512-Ep1pq8P88rGJ75om8lTCA13zqd7ywPGwCqwuWwin6BKc0hMLkVfcS6qKlRqEo2+t0DwoUcgGJfXwaiFn4AOcQA=="],
+ "motion/framer-motion/motion-dom": ["motion-dom@12.29.0", "", { "dependencies": { "motion-utils": "^12.27.2" } }, "sha512-3eiz9bb32yvY8Q6XNM4AwkSOBPgU//EIKTZwsSWgA9uzbPBhZJeScCVcBuwwYVqhfamewpv7ZNmVKTGp5qnzkA=="],
- "@voicebox/landing/framer-motion/motion-utils": ["motion-utils@12.36.0", "", {}, "sha512-eHWisygbiwVvf6PZ1vhaHCLamvkSbPIeAYxWUuL3a2PD/TROgE7FvfHWTIH4vMl798QLfMw15nRqIaRDXTlYRg=="],
+ "motion/framer-motion/motion-utils": ["motion-utils@12.27.2", "", {}, "sha512-B55gcoL85Mcdt2IEStY5EEAsrMSVE2sI14xQ/uAdPL+mfQxhKKFaEag9JmfxedJOR4vZpBGoPeC/Gm13I/4g5Q=="],
}
}