fix: i18ze a string (#3210)
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/3210 Reviewed-by: konrad <k@knt.li> Co-authored-by: WofWca <wofwca@protonmail.com> Co-committed-by: WofWca <wofwca@protonmail.com>
This commit is contained in:
parent
2262b49aaf
commit
b4dd23b85d
@ -242,7 +242,7 @@ async function markAsDone(checked: boolean) {
|
|||||||
t('task.doneSuccess') :
|
t('task.doneSuccess') :
|
||||||
t('task.undoneSuccess'),
|
t('task.undoneSuccess'),
|
||||||
}, [{
|
}, [{
|
||||||
title: 'Undo',
|
title: t('task.undo'),
|
||||||
callback: () => undoDone(checked),
|
callback: () => undoDone(checked),
|
||||||
}])
|
}])
|
||||||
}
|
}
|
||||||
|
@ -606,6 +606,7 @@
|
|||||||
"addReminder": "Add a new reminder…",
|
"addReminder": "Add a new reminder…",
|
||||||
"doneSuccess": "The task was successfully marked as done.",
|
"doneSuccess": "The task was successfully marked as done.",
|
||||||
"undoneSuccess": "The task was successfully un-marked as done.",
|
"undoneSuccess": "The task was successfully un-marked as done.",
|
||||||
|
"undo": "Undo",
|
||||||
"openDetail": "Open task detail view",
|
"openDetail": "Open task detail view",
|
||||||
"checklistTotal": "{checked} of {total} tasks",
|
"checklistTotal": "{checked} of {total} tasks",
|
||||||
"checklistAllDone": "{total} tasks",
|
"checklistAllDone": "{total} tasks",
|
||||||
|
@ -731,7 +731,7 @@ async function saveTask(args?: {
|
|||||||
let actions = []
|
let actions = []
|
||||||
if (undoCallback !== null) {
|
if (undoCallback !== null) {
|
||||||
actions = [{
|
actions = [{
|
||||||
title: 'Undo',
|
title: t('task.undo'),
|
||||||
callback: undoCallback,
|
callback: undoCallback,
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user