fix: i18ze a string
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
WofWca 2023-03-08 13:32:47 +04:00
parent 2262b49aaf
commit 7475b754aa
3 changed files with 3 additions and 2 deletions

View File

@ -242,7 +242,7 @@ async function markAsDone(checked: boolean) {
t('task.doneSuccess') :
t('task.undoneSuccess'),
}, [{
title: 'Undo',
title: t('task.undo'),
callback: () => undoDone(checked),
}])
}

View File

@ -606,6 +606,7 @@
"addReminder": "Add a new reminder…",
"doneSuccess": "The task was successfully marked as done.",
"undoneSuccess": "The task was successfully un-marked as done.",
"undo": "Undo",
"openDetail": "Open task detail view",
"checklistTotal": "{checked} of {total} tasks",
"checklistAllDone": "{total} tasks",

View File

@ -731,7 +731,7 @@ async function saveTask(args?: {
let actions = []
if (undoCallback !== null) {
actions = [{
title: 'Undo',
title: t('task.undo'),
callback: undoCallback,
}]
}