add hermes kanban board (#534)
This commit is contained in:
@@ -73,6 +73,7 @@ export default {
|
||||
apiRelay: 'API Relay',
|
||||
history: 'History',
|
||||
jobs: 'Jobs',
|
||||
kanban: 'Kanban',
|
||||
models: 'Models',
|
||||
profiles: 'Profiles',
|
||||
skills: 'Skills',
|
||||
@@ -216,6 +217,89 @@ export default {
|
||||
speechNotSupported: 'Voice playback not supported in this browser',
|
||||
},
|
||||
|
||||
// Kanban
|
||||
kanban: {
|
||||
title: 'Kanban Board',
|
||||
createTask: 'New Task',
|
||||
noTasks: 'No tasks',
|
||||
allStatuses: 'All Statuses',
|
||||
allAssignees: 'All Assignees',
|
||||
columns: {
|
||||
triage: 'Triage',
|
||||
todo: 'To Do',
|
||||
ready: 'Ready',
|
||||
running: 'Running',
|
||||
blocked: 'Blocked',
|
||||
done: 'Done',
|
||||
archived: 'Archived',
|
||||
},
|
||||
form: {
|
||||
title: 'Title',
|
||||
titlePlaceholder: 'Task title',
|
||||
titleRequired: 'Title is required',
|
||||
body: 'Description',
|
||||
bodyPlaceholder: 'Task description (optional)',
|
||||
assignee: 'Assignee',
|
||||
selectAssignee: 'Select assignee...',
|
||||
priority: 'Priority',
|
||||
selectPriority: 'Select priority...',
|
||||
},
|
||||
card: {
|
||||
assigneeTooltip: 'Assignee',
|
||||
priority: {
|
||||
low: 'Low',
|
||||
medium: 'Medium',
|
||||
high: 'High',
|
||||
},
|
||||
timeAgo: {
|
||||
justNow: 'just now',
|
||||
minutes: '{count}m ago',
|
||||
hours: '{count}h ago',
|
||||
days: '{count}d ago',
|
||||
},
|
||||
},
|
||||
detail: {
|
||||
status: 'Status',
|
||||
assignee: 'Assignee',
|
||||
priority: 'Priority',
|
||||
tenant: 'Tenant',
|
||||
createdAt: 'Created',
|
||||
startedAt: 'Started',
|
||||
completedAt: 'Completed',
|
||||
comments: 'Comments',
|
||||
events: 'Events',
|
||||
runs: 'Runs',
|
||||
result: 'Result',
|
||||
sessions: 'Related Sessions',
|
||||
sessionMessages: 'Session Messages',
|
||||
noSessions: 'No related sessions found.',
|
||||
artifacts: 'Artifacts',
|
||||
sources: 'Sources',
|
||||
highlights: 'Highlights',
|
||||
},
|
||||
action: {
|
||||
title: 'Actions',
|
||||
complete: 'Complete',
|
||||
completeSummary: 'Completion summary (optional)',
|
||||
block: 'Block',
|
||||
blockReason: 'Reason for blocking',
|
||||
unblock: 'Unblock',
|
||||
assign: 'Assign',
|
||||
assignTo: 'Assign to...',
|
||||
},
|
||||
message: {
|
||||
taskCreated: 'Task created',
|
||||
taskCompleted: 'Task completed',
|
||||
taskBlocked: 'Task blocked',
|
||||
taskUnblocked: 'Task unblocked',
|
||||
taskAssigned: 'Task assigned',
|
||||
loadFailed: 'Failed to load task',
|
||||
},
|
||||
stats: {
|
||||
total: 'Total',
|
||||
},
|
||||
},
|
||||
|
||||
// Jobs
|
||||
jobs: {
|
||||
title: 'Scheduled Jobs',
|
||||
|
||||
Reference in New Issue
Block a user