diff options
Diffstat (limited to 'tdd/tdd-bootstrap.php')
-rw-r--r-- | tdd/tdd-bootstrap.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tdd/tdd-bootstrap.php b/tdd/tdd-bootstrap.php index 04bbb0b..7259958 100644 --- a/tdd/tdd-bootstrap.php +++ b/tdd/tdd-bootstrap.php @@ -146,7 +146,12 @@ class Protocol { sort($tables); // compile header with tables numbers $insert = '<a href="#table-' . $tables[0] . '"><h4 id="table-' . $tables[0] . '">'; - $insert .= static::__("Stół") . ' ' . implode(', ', $tables) . ' – '; + if (count($tables) <= 5) { + $insert .= static::__("Stół") . ' ' . implode(', ', $tables); + } else { + $insert .= count($tables) . ' ' . static::__("stołów"); + } + $insert .= ' – '; $insert .= static::__("Rozdanie") . ' ' . $deal->deal_num . '</h4></a>'; // if the board has been played on all tables if ($this->areBoardsPlayed($groupedBoard)) { |