. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\I18N; /** * Class BirthDeathMarriageReportModule */ class BirthDeathMarriageReportModule extends AbstractModule implements ModuleReportInterface { use ModuleReportTrait; /** * How should this module be identified in the control panel, etc.? * * @return string */ public function title(): string { // This text also appears in the .XML file - update both together /* I18N: Name of a module/report. “Vital records” are life events - birth/marriage/death */ return I18N::translate('Vital records'); } public function description(): string { // This text also appears in the .XML file - update both together /* I18N: Description of the “Vital records” module. “Vital records” are life events - birth/marriage/death */ return I18N::translate('A report of vital records for a given date or place.'); } }