update: doc

This commit is contained in:
Tom Boullay
2026-05-11 13:14:08 +02:00
parent 808fd1631b
commit b077b65640
4 changed files with 16 additions and 3 deletions
+3 -1
View File
@@ -361,7 +361,9 @@ async function validateDialogueAssets(): Promise<DialogueValidationResult> {
if (enSubtitlePath) {
const resolvedEnPath = resolvePublicPath(enSubtitlePath);
if (!resolvedEnPath || !fs.existsSync(resolvedEnPath)) {
warnings.push(`English subtitle file missing for voice ${voice.id}`);
warnings.push(
`English subtitle file missing for voice ${voice.id}; runtime will fall back to French`,
);
}
}
}