Files
office_translator/frontend/src/app/dashboard/context/page.tsx
sepehr ca8abc560d
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 1m28s
feat: multilingual glossary templates + inline GlossarySelector rewrite
- Enriched 8 glossary templates with 18,191 translations across 11 languages
  using LLM batch generation + back-translation validation (99.98% confirmed)
- Rewrote GlossarySelector as inline section with template creation
- Fixed sidebar duplicate (single Glossaries link with proOnly flag)
- Added glossaryId reset when sourceLang changes
- Always show GlossarySelector (locked with Pro badge for free users)
- Added source_language flag on glossary cards
- Redirected /dashboard/context to /dashboard/glossaries
- Updated import endpoint to read translations from templates
- Added enrichment script (scripts/enrich_glossary_templates.py)
- Added 6 i18n keys across all 13 locales

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-17 00:52:24 +02:00

13 lines
264 B
TypeScript

'use client';
import { useEffect } from 'react';
import { useRouter } from 'next/navigation';
export default function ContextPage() {
const router = useRouter();
useEffect(() => {
router.replace('/dashboard/glossaries');
}, [router]);
return null;
}