mirror of
https://github.com/YunoHost-Apps/webtrees_ynh.git
synced 2024-09-03 18:26:37 +02:00
167 lines
6.1 KiB
PHP
167 lines
6.1 KiB
PHP
<?php
|
||
/**
|
||
* webtrees: online genealogy
|
||
* Copyright (C) 2016 webtrees development team
|
||
* This program is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation, either version 3 of the License, or
|
||
* (at your option) any later version.
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
*/
|
||
namespace Fisharebest\Webtrees\GedcomCode;
|
||
|
||
use Fisharebest\Webtrees\GedcomRecord;
|
||
use Fisharebest\Webtrees\I18N;
|
||
use Fisharebest\Webtrees\Individual;
|
||
|
||
/**
|
||
* Class GedcomCodeName - Functions and logic for GEDCOM "NAME" codes
|
||
*/
|
||
class GedcomCodeName {
|
||
/** @var string[] A list of possible types of name */
|
||
private static $TYPES = array('adopted', 'aka', 'birth', 'change', 'estate', 'immigrant', 'maiden', 'married', 'religious');
|
||
|
||
/**
|
||
* Translate a code, for an (optional) record
|
||
*
|
||
* @param string $type
|
||
* @param GedcomRecord|null $record
|
||
*
|
||
* @return string
|
||
*/
|
||
public static function getValue($type, GedcomRecord $record = null) {
|
||
if ($record instanceof Individual) {
|
||
$sex = $record->getSex();
|
||
} else {
|
||
$sex = 'U';
|
||
}
|
||
|
||
switch ($type) {
|
||
case 'adopted':
|
||
switch ($sex) {
|
||
case 'M':
|
||
/* I18N: The name given to a child by its adoptive parents */
|
||
return I18N::translateContext('MALE', 'adopted name');
|
||
case 'F':
|
||
/* I18N: The name given to a child by its adoptive parents */
|
||
return I18N::translateContext('FEMALE', 'adopted name');
|
||
default:
|
||
/* I18N: The name given to a child by its adoptive parents */
|
||
return I18N::translate('adopted name');
|
||
}
|
||
case 'aka':
|
||
switch ($sex) {
|
||
case 'M':
|
||
/* I18N: The name by which an individual is also known. e.g. a professional name or a stage name */
|
||
return I18N::translateContext('MALE', 'also known as');
|
||
case 'F':
|
||
/* I18N: The name by which an individual is also known. e.g. a professional name or a stage name */
|
||
return I18N::translateContext('FEMALE', 'also known as');
|
||
default:
|
||
/* I18N: The name by which an individual is also known. e.g. a professional name or a stage name */
|
||
return I18N::translate('also known as');
|
||
}
|
||
case 'birth':
|
||
switch ($sex) {
|
||
case 'M':
|
||
/* I18N: The name given to an individual at their birth */
|
||
return I18N::translateContext('MALE', 'birth name');
|
||
case 'F':
|
||
/* I18N: The name given to an individual at their birth */
|
||
return I18N::translateContext('FEMALE', 'birth name');
|
||
default:
|
||
/* I18N: The name given to an individual at their birth */
|
||
return I18N::translate('birth name');
|
||
}
|
||
case 'change':
|
||
switch ($sex) {
|
||
case 'M':
|
||
/* I18N: A name chosen by an individual, to replace their existing name (whether legal or otherwise) */
|
||
return I18N::translateContext('MALE', 'change of name');
|
||
case 'F':
|
||
/* I18N: A name chosen by an individual, to replace their existing name (whether legal or otherwise) */
|
||
return I18N::translateContext('FEMALE', 'change of name');
|
||
default:
|
||
/* I18N: A name chosen by an individual, to replace their existing name (whether legal or otherwise) */
|
||
return I18N::translate('change of name');
|
||
}
|
||
case 'estate':
|
||
switch ($sex) {
|
||
case 'M':
|
||
/* I18N: A name given to an individual, from the farm or estate on which they lived or worked */
|
||
return I18N::translateContext('MALE', 'estate name');
|
||
case 'F':
|
||
/* I18N: A name given to an individual, from the farm or estate on which they lived or worked */
|
||
return I18N::translateContext('FEMALE', 'estate name');
|
||
default:
|
||
/* I18N: A name given to an individual, from the farm or estate on which they lived or worked */
|
||
return I18N::translate('estate name');
|
||
}
|
||
case 'immigrant':
|
||
switch ($sex) {
|
||
case 'M':
|
||
/* I18N: A name taken on immigration - e.g. migrants to the USA frequently anglicized their names */
|
||
return I18N::translateContext('MALE', 'immigration name');
|
||
case 'F':
|
||
/* I18N: A name taken on immigration - e.g. migrants to the USA frequently anglicized their names */
|
||
return I18N::translateContext('FEMALE', 'immigration name');
|
||
default:
|
||
/* I18N: A name taken on immigration - e.g. migrants to the USA frequently anglicized their names */
|
||
return I18N::translate('immigration name');
|
||
}
|
||
case 'maiden':
|
||
// Only women have “maiden” names!
|
||
return
|
||
/* I18N: A woman’s name, before she marries (in cultures where women take their new husband’s name on marriage) */
|
||
I18N::translate('maiden name');
|
||
case 'married':
|
||
switch ($sex) {
|
||
case 'M':
|
||
/* I18N: A name taken on marriage - usually the wife takes the husband’s surname */
|
||
return I18N::translateContext('MALE', 'married name');
|
||
case 'F':
|
||
/* I18N: A name taken on marriage - usually the wife takes the husband’s surname */
|
||
return I18N::translateContext('FEMALE', 'married name');
|
||
default:
|
||
/* I18N: A name taken on marriage - usually the wife takes the husband’s surname */
|
||
return I18N::translate('married name');
|
||
}
|
||
case 'religious':
|
||
switch ($sex) {
|
||
case 'M':
|
||
/* I18N: A name taken when entering a religion or a religious order */
|
||
return I18N::translateContext('MALE', 'religious name');
|
||
case 'F':
|
||
/* I18N: A name taken when entering a religion or a religious order */
|
||
return I18N::translateContext('FEMALE', 'religious name');
|
||
default:
|
||
/* I18N: A name taken when entering a religion or a religious order */
|
||
return I18N::translate('religious name');
|
||
}
|
||
default:
|
||
return $type;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* A list of all possible values for NAME types
|
||
*
|
||
* @param GedcomRecord|null $record
|
||
*
|
||
* @return string[]
|
||
*/
|
||
public static function getValues(GedcomRecord $record = null) {
|
||
$values = array();
|
||
foreach (self::$TYPES as $type) {
|
||
$values[$type] = self::getValue($type, $record);
|
||
}
|
||
uasort($values, '\Fisharebest\Webtrees\I18N::strcasecmp');
|
||
|
||
return $values;
|
||
}
|
||
}
|