export default { title: 'Task Management', calendar: { title: 'Task Calendar', viewTypes: { month: 'Month View', week: 'Week View', day: 'Day View' }, navigation: { today: 'Today', previous: 'Previous', next: 'Next' }, noEvents: 'No tasks this month', enterFullscreen: 'Enter Fullscreen', exitFullscreen: 'Exit Fullscreen' }, task: { name: 'Task Name', description: 'Task Description', subject: 'Subject', student: 'Student', term: 'Term', startDate: 'Start Date', endDate: 'End Date', completionPercent: 'Completion', status: { notStarted: 'Not Started', inProgress: 'In Progress', completed: 'Completed' } }, filters: { title: 'Filters', allStudents: 'All Students', allSubjects: 'All Subjects', allTerms: 'All Terms', apply: 'Apply Filters', clear: 'Clear Filters', selectStudentFirst: 'Please select a student first', expand: 'Expand Filter Panel', collapse: 'Collapse Filter Panel', expandToReselect: 'Click to Expand and Reselect' }, messages: { loadError: 'Failed to load task data', noData: 'No task data available' } }