xref: /webtrees/app/Census/CensusColumnConditionEnglish.php (revision e873f434551745f888937263ff89e80db3b0f785)
173d4df56SGreg Roach<?php
23976b470SGreg Roach
373d4df56SGreg Roach/**
473d4df56SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
673d4df56SGreg Roach * This program is free software: you can redistribute it and/or modify
773d4df56SGreg Roach * it under the terms of the GNU General Public License as published by
873d4df56SGreg Roach * the Free Software Foundation, either version 3 of the License, or
973d4df56SGreg Roach * (at your option) any later version.
1073d4df56SGreg Roach * This program is distributed in the hope that it will be useful,
1173d4df56SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1273d4df56SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1373d4df56SGreg Roach * GNU General Public License for more details.
1473d4df56SGreg 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/>.
1673d4df56SGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
1915d603e7SGreg Roach
2073d4df56SGreg Roachnamespace Fisharebest\Webtrees\Census;
2173d4df56SGreg Roach
2273d4df56SGreg Roach/**
2373d4df56SGreg Roach * Marital status.
2473d4df56SGreg Roach */
25c1010edaSGreg Roachclass CensusColumnConditionEnglish extends AbstractCensusColumnCondition
26c1010edaSGreg Roach{
27918e47c5SGreg Roach    // Text to display for married males
28*e873f434SGreg Roach    protected const string HUSBAND = 'Mar';
29cfe766afSGreg Roach
30918e47c5SGreg Roach    // Text to display for married females
31*e873f434SGreg Roach    protected const string WIFE = 'Mar';
3235326bd6SGreg Roach
33918e47c5SGreg Roach    // Text to display for married unmarried males
34*e873f434SGreg Roach    protected const string BACHELOR = 'Unm';
35cfe766afSGreg Roach
36918e47c5SGreg Roach    // Text to display for married unmarried females
37*e873f434SGreg Roach    protected const string SPINSTER = 'Unm';
3835326bd6SGreg Roach
39918e47c5SGreg Roach    // Text to display for divorced males
40*e873f434SGreg Roach    protected const string DIVORCE = 'Div';
41cfe766afSGreg Roach
42918e47c5SGreg Roach    // Text to display for divorced females
43*e873f434SGreg Roach    protected const string DIVORCEE = 'Div';
4435326bd6SGreg Roach
45918e47c5SGreg Roach    // Text to display for widowed males
46*e873f434SGreg Roach    protected const string WIDOWER = 'Wid';
47cfe766afSGreg Roach
48918e47c5SGreg Roach    // Text to display for widowed females
49*e873f434SGreg Roach    protected const string WIDOW = 'Wid';
5073d4df56SGreg Roach}
51