diff --git a/cypress/integration/task/task.spec.js b/cypress/integration/task/task.spec.js index 63df56512a..1b85e99216 100644 --- a/cypress/integration/task/task.spec.js +++ b/cypress/integration/task/task.spec.js @@ -128,7 +128,7 @@ describe('Task', () => { cy.visit(`/tasks/${tasks[0].id}`) cy.get('.task-view .action-buttons .button') - .contains('Done!') + .contains('Mark task done!') .click() cy.get('.task-view .heading .is-done') diff --git a/src/i18n/lang/en.json b/src/i18n/lang/en.json index 7e145529a6..29537fe366 100644 --- a/src/i18n/lang/en.json +++ b/src/i18n/lang/en.json @@ -545,7 +545,7 @@ "chooseStartDate": "Click here to set a start date", "chooseEndDate": "Click here to set an end date", "move": "Move task to a different list", - "done": "Done!", + "done": "Mark task done!", "undone": "Mark as undone", "created": "Created {0} by {1}", "updated": "Updated {0}", @@ -781,7 +781,7 @@ "then": "then", "task": { "title": "Task Page", - "done": "Mark a task as done", + "done": "Done", "assign": "Assign to a user", "labels": "Add labels to this task", "dueDate": "Change the due date of this task",