MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
2 changed files with 3 additions and 9 deletions
Showing only changes of commit 69effa2b7d - Show all commits

View File

@@ -90,15 +90,9 @@
}
}
},
"winner": "Winner: {winnerName}",
"winner": "Winner",
"@winner": {
"description": "Shows the winner's name",
"placeholders": {
"winnerName": {
"type": "String",
"example": "John"
}
}
"description": "Winner label",
},
"players": "Players",
"@players": {

View File

@@ -99,7 +99,7 @@ class _MatchTileState extends State<MatchTile> {
const SizedBox(width: 8),
Expanded(
child: Text(
loc.winner(winner.name),
"${loc.winner}: ${winner.name}",
style: const TextStyle(
fontSize: 14,
fontWeight: FontWeight.w600,