xref: /webtrees/app/Census/CensusColumnConditionDanish.php (revision c1010eda29c0909ed4d5d463f32d32bfefdd4dfe)
1101af0b4SGreg Roach<?php
2101af0b4SGreg Roach/**
3101af0b4SGreg Roach * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 webtrees development team
5101af0b4SGreg Roach * This program is free software: you can redistribute it and/or modify
6101af0b4SGreg Roach * it under the terms of the GNU General Public License as published by
7101af0b4SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8101af0b4SGreg Roach * (at your option) any later version.
9101af0b4SGreg Roach * This program is distributed in the hope that it will be useful,
10101af0b4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11101af0b4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12101af0b4SGreg Roach * GNU General Public License for more details.
13101af0b4SGreg Roach * You should have received a copy of the GNU General Public License
14101af0b4SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15101af0b4SGreg Roach */
1615d603e7SGreg Roach
17101af0b4SGreg Roachnamespace Fisharebest\Webtrees\Census;
18101af0b4SGreg Roach
19101af0b4SGreg Roach/**
20101af0b4SGreg Roach * Marital status.
21101af0b4SGreg Roach */
22*c1010edaSGreg Roachclass CensusColumnConditionDanish extends CensusColumnConditionEnglish
23*c1010edaSGreg Roach{
2435326bd6SGreg Roach    /* Text to display for married individuals */
2500225b98SGreg Roach    protected $husband = 'Gift';
2600225b98SGreg Roach    protected $wife    = 'Gift';
27b26116c9SGreg Roach
2835326bd6SGreg Roach    /* Text to display for unmarried individuals */
2900225b98SGreg Roach    protected $bachelor = 'Ugift';
3000225b98SGreg Roach    protected $spinster = 'Ugift';
3135326bd6SGreg Roach
3235326bd6SGreg Roach    /* Text to display for divorced individuals */
3300225b98SGreg Roach    protected $divorce  = 'Skilt';
3400225b98SGreg Roach    protected $divorcee = 'Skilt';
3535326bd6SGreg Roach
36e76c0cf0SGreg Roach    /* Text to display for widowed individuals */
37e76c0cf0SGreg Roach    protected $widower = 'Gift';
38e76c0cf0SGreg Roach    protected $widow   = 'Gift';
39101af0b4SGreg Roach}
40