diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2021-07-16 15:19:37 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2021-07-16 15:19:37 +0100 |
| commit | 720ec754d552e4e71f606c3e89dc4780e7f61490 (patch) | |
| tree | 75c1d75e18f0e82c3c6eda30c4a0e5731b594aa8 /app | |
| parent | cdd821aed84de977928b9f39a23f119800f07727 (diff) | |
| download | webtrees-720ec754d552e4e71f606c3e89dc4780e7f61490.tar.gz webtrees-720ec754d552e4e71f606c3e89dc4780e7f61490.tar.bz2 webtrees-720ec754d552e4e71f606c3e89dc4780e7f61490.zip | |
Fix: #3953 - update 1921 census of Czech Republic
Diffstat (limited to 'app')
| -rw-r--r-- | app/Census/CensusOfCzechRepublic1921.php | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/app/Census/CensusOfCzechRepublic1921.php b/app/Census/CensusOfCzechRepublic1921.php index 5369e4e187..48625dd343 100644 --- a/app/Census/CensusOfCzechRepublic1921.php +++ b/app/Census/CensusOfCzechRepublic1921.php @@ -42,20 +42,26 @@ class CensusOfCzechRepublic1921 extends CensusOfCzechRepublic implements CensusI public function columns(): array { return [ - new CensusColumnFullName($this, 'Jméno', ''), + new CensusColumnNull($this, 'Ř.č.', 'Řadové číslo'), + new CensusColumnSurname($this, 'Příjmení', 'jméno rodinné'), + new CensusColumnGivenNames($this, 'Jméno', 'Jméno (křestni)'), new CensusColumnRelationToHead($this, 'Vztah', ''), new CensusColumnSexMZ($this, 'Pohlaví', ''), new CensusColumnNull($this, 'Stav', 'Rodinný stav'), - new CensusColumnBirthDaySlashMonthYear($this, 'Narození', 'Datum narození'), - new CensusColumnBirthPlace($this, 'Místo', 'Místo narození'), + new CensusColumnBirthDayDotMonthYear($this, 'Narození', 'Datum narození'), + new CensusColumnBirthPlace($this, 'Rodiště', 'Rodná obec, Soudní okres, Země'), + new CensusColumnNull($this, 'Bydlí od', 'Od kdy bydlí zapsána osoba v obci?'), new CensusColumnNull($this, 'Přísluší', 'Domovské právo'), new CensusColumnNull($this, 'Národnost', 'Mateřský jazyk'), new CensusColumnReligion($this, 'Vyznání', ''), new CensusColumnNull($this, 'Gramotnost', 'Znalost čtení a psaní'), - new CensusColumnOccupation($this, 'Povolání', ''), + new CensusColumnOccupation($this, 'Povolání', 'Druh povolání'), new CensusColumnNull($this, 'Postavení', 'Postavení v zaměstnání'), new CensusColumnNull($this, 'Podnik', ''), - new CensusColumnNull($this, '', ''), + new CensusColumnNull($this, 'Měl povolání 1914', ''), + new CensusColumnNull($this, 'Povolání 1914', 'Druh povolání dne 16. července 1914'), + new CensusColumnNull($this, 'Postavení 1914', 'Postavení v zaměstnání dne 16. července 1914'), + new CensusColumnNull($this, 'Poznámka', ''), ]; } } |
