/** English translations. Keep keys nested by feature area. * * We deliberately annotate the literal with `Translations` (not `as const`) * so sibling locale files can widen their string values without fighting * literal-string type mismatches. */ export interface Translations { common: Record; auth: Record; nav: Record; privacy: Record; feedback: Record; theme: Record; } const en: Translations = { common: { cancel: "Cancel", save: "Save", delete: "Delete", edit: "Edit", close: "Close", back: "Back", next: "Next", search: "Search", loading: "Loading…", error: "Error", retry: "Retry", yes: "Yes", no: "No", actions: "Actions", status: "Status", settings: "Settings", signOut: "Sign out", }, auth: { signIn: "Sign in", signInTitle: "Sign in to EnCoach", email: "Email", password: "Password", forgotPassword: "Forgot password?", needAccount: "Don't have an account?", signUp: "Sign up", invalidCredentials: "Invalid email or password", }, nav: { dashboard: "Dashboard", courses: "Courses", students: "Students", teachers: "Teachers", exams: "Exams", reports: "Reports", settings: "Settings", profile: "Profile", privacy: "Privacy Center", reviewQueue: "Review Queue", aiPrompts: "AI Prompts", aiFeedback: "AI Feedback", }, privacy: { title: "Privacy Center", description: "Manage your personal data held by EnCoach under GDPR and equivalent regulations.", exportTitle: "Download your data", exportDescription: "We'll package your profile, entity memberships, exam attempts, answers, AI feedback, and tickets into a single JSON file.", exportButton: "Download my data", exportPreparing: "Preparing export…", exportSuccess: "Data export downloaded", deleteTitle: "Delete my account", deleteDescription: "This anonymises your profile and removes personal fields from our records. Exam attempts are retained (without identifying information) for statistical integrity. This action cannot be undone.", deleteButton: "Erase my account", deleteErasing: "Erasing…", confirmTitle: "Erase your account?", confirmDescription: "We'll anonymise your personal data and deactivate your login. Aggregate analytics will remain but will no longer be linked to you.", confirmTypeDelete: "Type DELETE to confirm", confirmErased: "Your account has been erased. Signing out…", }, feedback: { thumbsUp: "Thumbs up", thumbsDown: "Thumbs down", whatWentWrong: "What went wrong?", commentPlaceholder: "e.g. Wrong answer, confusing wording, off-topic…", commentRequired: "Please tell us what was wrong.", submit: "Submit feedback", }, theme: { title: "Theme", light: "Light", dark: "Dark", system: "System", }, }; export default en;