## Security Enhancements (P0) - Add input validation with max_length and numeric range constraints - Implement WebSocket token authentication via first message - Add path traversal prevention in file storage service ## Permission Enhancements (P0) - Add project member management for cross-department access - Implement is_department_manager flag for workload visibility ## Cycle Detection (P0) - Add DFS-based cycle detection for task dependencies - Add formula field circular reference detection - Display user-friendly cycle path visualization ## Concurrency & Reliability (P1) - Implement optimistic locking with version field (409 Conflict on mismatch) - Add trigger retry mechanism with exponential backoff (1s, 2s, 4s) - Implement cascade restore for soft-deleted tasks ## Rate Limiting (P1) - Add tiered rate limits: standard (60/min), sensitive (20/min), heavy (5/min) - Apply rate limits to tasks, reports, attachments, and comments ## Frontend Improvements (P1) - Add responsive sidebar with hamburger menu for mobile - Improve touch-friendly UI with proper tap target sizes - Complete i18n translations for all components ## Backend Reliability (P2) - Configure database connection pool (size=10, overflow=20) - Add Redis fallback mechanism with message queue - Add blocker check before task deletion ## API Enhancements (P3) - Add standardized response wrapper utility - Add /health/ready and /health/live endpoints - Implement project templates with status/field copying ## Tests Added - test_input_validation.py - Schema and path traversal tests - test_concurrency_reliability.py - Optimistic locking and retry tests - test_backend_reliability.py - Connection pool and Redis tests - test_api_enhancements.py - Health check and template tests Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
117 lines
3.1 KiB
JSON
117 lines
3.1 KiB
JSON
{
|
|
"buttons": {
|
|
"save": "Save",
|
|
"cancel": "Cancel",
|
|
"delete": "Delete",
|
|
"edit": "Edit",
|
|
"create": "Create",
|
|
"close": "Close",
|
|
"confirm": "Confirm",
|
|
"back": "Back",
|
|
"next": "Next",
|
|
"previous": "Previous",
|
|
"submit": "Submit",
|
|
"reset": "Reset",
|
|
"search": "Search",
|
|
"filter": "Filter",
|
|
"export": "Export",
|
|
"import": "Import",
|
|
"refresh": "Refresh",
|
|
"add": "Add",
|
|
"remove": "Remove",
|
|
"view": "View",
|
|
"download": "Download",
|
|
"upload": "Upload"
|
|
},
|
|
"labels": {
|
|
"loading": "Loading...",
|
|
"noData": "No data",
|
|
"required": "Required",
|
|
"optional": "Optional",
|
|
"all": "All",
|
|
"none": "None",
|
|
"yes": "Yes",
|
|
"no": "No",
|
|
"active": "Active",
|
|
"inactive": "Inactive",
|
|
"enabled": "Enabled",
|
|
"disabled": "Disabled",
|
|
"actions": "Actions",
|
|
"details": "Details",
|
|
"description": "Description",
|
|
"name": "Name",
|
|
"title": "Title",
|
|
"status": "Status",
|
|
"type": "Type",
|
|
"date": "Date",
|
|
"time": "Time",
|
|
"createdAt": "Created at",
|
|
"updatedAt": "Updated at",
|
|
"createdBy": "Created by",
|
|
"assignee": "Assignee",
|
|
"selectAssignee": "Select assignee...",
|
|
"searchUsers": "Search users...",
|
|
"noUsersFound": "No users found",
|
|
"typeToSearch": "Type to search users",
|
|
"task": "Task",
|
|
"admin": "Admin",
|
|
"live": "Live",
|
|
"offline": "Offline"
|
|
},
|
|
"messages": {
|
|
"success": "Operation successful",
|
|
"error": "Operation failed",
|
|
"confirmDelete": "Are you sure you want to delete? This action cannot be undone.",
|
|
"unsavedChanges": "You have unsaved changes. Are you sure you want to leave?",
|
|
"networkError": "Network error. Please try again later.",
|
|
"sessionExpired": "Session expired. Please log in again.",
|
|
"permissionDenied": "You do not have permission to perform this action.",
|
|
"notFound": "The requested resource was not found."
|
|
},
|
|
"validation": {
|
|
"required": "This field is required",
|
|
"email": "Please enter a valid email address",
|
|
"minLength": "Minimum {{min}} characters required",
|
|
"maxLength": "Maximum {{max}} characters allowed",
|
|
"invalidFormat": "Invalid format"
|
|
},
|
|
"nav": {
|
|
"dashboard": "Dashboard",
|
|
"spaces": "Spaces",
|
|
"projects": "Projects",
|
|
"tasks": "Tasks",
|
|
"workload": "Workload",
|
|
"health": "Project Health",
|
|
"audit": "Audit Log",
|
|
"settings": "Settings",
|
|
"logout": "Logout",
|
|
"toggleMenu": "Toggle Menu",
|
|
"menu": "Menu"
|
|
},
|
|
"language": {
|
|
"switch": "Switch language",
|
|
"zhTW": "繁體中文",
|
|
"en": "English"
|
|
},
|
|
"notifications": {
|
|
"title": "Notifications",
|
|
"markAllRead": "Mark all as read",
|
|
"noNotifications": "No notifications",
|
|
"empty": "No notifications",
|
|
"viewAll": "View all",
|
|
"refresh": "Refresh",
|
|
"time": {
|
|
"justNow": "Just now",
|
|
"minutesAgo": "{{count}}m ago",
|
|
"hoursAgo": "{{count}}h ago",
|
|
"daysAgo": "{{count}}d ago"
|
|
}
|
|
},
|
|
"pagination": {
|
|
"page": "Page {{page}}",
|
|
"of": "of {{total}}",
|
|
"showing": "Showing {{from}}-{{to}} of {{total}}",
|
|
"itemsPerPage": "Items per page"
|
|
}
|
|
}
|