1101af0b4SGreg Roach<?php 23976b470SGreg Roach 3101af0b4SGreg Roach/** 4101af0b4SGreg Roach * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6101af0b4SGreg Roach * This program is free software: you can redistribute it and/or modify 7101af0b4SGreg Roach * it under the terms of the GNU General Public License as published by 8101af0b4SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9101af0b4SGreg Roach * (at your option) any later version. 10101af0b4SGreg Roach * This program is distributed in the hope that it will be useful, 11101af0b4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12101af0b4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13101af0b4SGreg Roach * GNU General Public License for more details. 14101af0b4SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16101af0b4SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 1915d603e7SGreg Roach 20101af0b4SGreg Roachnamespace Fisharebest\Webtrees\Census; 21101af0b4SGreg Roach 22101af0b4SGreg Roach/** 23101af0b4SGreg Roach * Marital status. 24101af0b4SGreg Roach */ 25c1010edaSGreg Roachclass CensusColumnConditionDanish extends CensusColumnConditionEnglish 26c1010edaSGreg Roach{ 27918e47c5SGreg Roach // Text to display for married males 28918e47c5SGreg Roach protected const HUSBAND = 'Gift'; 29cfe766afSGreg Roach 30918e47c5SGreg Roach // Text to display for married females 31918e47c5SGreg Roach protected const WIFE = 'Gift'; 32b26116c9SGreg Roach 33918e47c5SGreg Roach // Text to display for married unmarried males 34918e47c5SGreg Roach protected const BACHELOR = 'Ugift'; 35cfe766afSGreg Roach 36918e47c5SGreg Roach // Text to display for married unmarried females 37918e47c5SGreg Roach protected const SPINSTER = 'Ugift'; 3835326bd6SGreg Roach 39918e47c5SGreg Roach // Text to display for divorced males 40918e47c5SGreg Roach protected const DIVORCE = 'Skilt'; 41cfe766afSGreg Roach 42918e47c5SGreg Roach // Text to display for divorced females 43918e47c5SGreg Roach protected const DIVORCEE = 'Skilt'; 4435326bd6SGreg Roach 45918e47c5SGreg Roach // Text to display for widowed males 46918e47c5SGreg Roach protected const WIDOWER = 'Gift'; 47cfe766afSGreg Roach 48918e47c5SGreg Roach // Text to display for widowed females 49918e47c5SGreg Roach protected const WIDOW = 'Gift'; 50101af0b4SGreg Roach} 51