feat(translate): refonte du design de la page de traduction et du sélecteur de moteurs (Etapes 1-3)
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 2m12s

This commit is contained in:
2026-05-31 10:14:23 +02:00
parent 9532fef2cd
commit c1ea65f10f
17 changed files with 956 additions and 325 deletions

View File

@@ -147,6 +147,10 @@ export function useTranslationSubmit(): UseTranslationSubmitReturn {
if (config.glossaryId) {
formData.append('glossary_id', config.glossaryId);
}
// Translate images toggle
if (config.translateImages !== undefined) {
formData.append('translate_images', String(config.translateImages));
}
// System prompt from Context page (Pro only)
const { settings } = await import('@/lib/store').then(m => m.useTranslationStore.getState());
if (settings.systemPrompt?.trim()) {