Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions webui/native/src/lib/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,11 @@ const english: Record<string, string> = {
'studio.subtitle.music': 'Create music and sound from a prompt, lyrics, or reference audio when supported.',
'studio.subtitle.vc': 'Transform a recording into another voice while preserving the spoken or sung performance.',
'studio.subtitle.sep': 'Split a recording into vocals, instruments, or other available audio stems.',
// The workflow tabs are keyed 'conversion' and 'separation' while the task
// labels above use 'vc' and 'sep'. Both spellings resolve so the hero subtitle
// renders text rather than the lookup key itself.
'studio.subtitle.conversion': 'Transform a recording into another voice while preserving the spoken or sung performance.',
'studio.subtitle.separation': 'Split a recording into vocals, instruments, or other available audio stems.',
'studio.subtitle.analysis': 'Analyze audio for speech activity, speakers, timing, and alignment.',
'studio.subtitle.design': 'Create or refine a voice from a written description and supported reference controls.',
'studio.model': 'Model',
Expand Down
2 changes: 1 addition & 1 deletion webui/native/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@
applyingModelsFolder = true;
warningStatus = '';
errorStatus = '';
status = useDefault ? 'Restoring the default models folder…' : 'Changing models folder…';
status = useDefault ? 'Restoring the default models folder…' : 'Changing models folder…';
try {
const root = await setModelsRoot(useDefault ? '' : modelsFolderInput.trim());
acceptModelsRoot(root);
Expand Down
Loading