started backend translations

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-12-05 14:38:46 +01:00
parent ebf9a83b60
commit 0d02f3cbda
6 changed files with 19 additions and 5 deletions

View File

@@ -270,7 +270,7 @@ CREATE TABLE IF NOT EXISTS {0} (
public Task load(long taskId) throws UmbrellaException {
var map = load(List.of(taskId));
var task = map.get(taskId);
if (task == null) throw UmbrellaException.notFound("No task found for id {0}",taskId);
if (task == null) throw UmbrellaException.notFound("no_task_for_id",taskId);
return task;
}