working on backend-side translations

This commit is contained in:
2025-12-15 22:49:17 +01:00
parent c7b5b11f4c
commit 8575a9a3a4
6 changed files with 77 additions and 46 deletions

View File

@@ -234,7 +234,7 @@ CREATE TABLE IF NOT EXISTS {0} (
return new Project(id, prj.name(), prj.description(),prj.status(),prj.companyId().orElse(null),prj.showClosed(),prj.members(),prj.allowedStates());
}
} catch (SQLException e) {
throw databaseException(FAILED_TO_INSERT_PROJECT).causedBy(e);
throw databaseException(FAILED_TO_STORE_ENTITY,PROJECT).causedBy(e);
}
} else { // Update
try {