Verschiedene Regelsätze implementieren #194

Merged
flixcoo merged 46 commits from feature/132-verschiedene-regelsaetze-implementieren into development 2026-04-24 10:31:36 +00:00
Showing only changes of commit 1363c1fb06 - Show all commits

View File

@@ -43,3 +43,11 @@ String getExtraPlayerCount(Match match) {
} }
return ' + ${count.toString()}'; return ' + ${count.toString()}';
} }
String getPointLabel(AppLocalizations loc, int points) {
if (points == 1) {
return '$points ${loc.point}';
} else {
return '$points ${loc.points}';
}
}