diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 35e8300d0..accd05e1a 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -7,7 +7,7 @@ Format: Firstname Lastname @github-handle CONTRIBUTORS ------------ -Regis Freyd @djaiss +Maazarin @djaiss Kirk Strauser @kstrauser Taryn Hill @Phrohdoh Andreas Zweili @Nebucatnetzer diff --git a/LICENSE.md b/LICENSE.md index 86af105f3..7509eec34 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -628,7 +628,7 @@ the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. The software is called Monica and is a personal relationship management system. - Copyright (C) 2016-2022 Regis Freyd + Copyright (C) 2016-2022 Maazarin This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/README.md b/README.md index bb99b9053..89758f045 100644 --- a/README.md +++ b/README.md @@ -295,7 +295,7 @@ You can support the development of Monica [on Patreon](https://www.patreon.com/m Our team is made of two core members: -- [Regis Freyd (djaiss)](https://github.com/djaiss) +- [Maazarin (djaiss)](https://github.com/djaiss) - [Alexis Saettler (asbiin)](https://github.com/asbiin) diff --git a/app/Models/Relationship/RelationshipType.php b/app/Models/Relationship/RelationshipType.php index 42e218004..f6fe8ce8d 100644 --- a/app/Models/Relationship/RelationshipType.php +++ b/app/Models/Relationship/RelationshipType.php @@ -92,20 +92,20 @@ class RelationshipType extends Model // in some language, masculine and feminine version of a relationship type is the same. // we need to keep just one version in that case. if ($femaleVersion === $maleVersion) { - // `Regis Freyd's significant other` + // `Maazarin's significant other` return $maleVersionWithName; } return $defaultGender === Gender::FEMALE ? - // `Regis Freyd's aunt/uncle` + // `Maazarin's aunt/uncle` $femaleVersionWithName.'/'.$maleVersion : - // `Regis Freyd's uncle/aunt` + // `Maazarin's uncle/aunt` $maleVersionWithName.'/'.$femaleVersion; } else { return $gender === Gender::FEMALE ? - // `Regis Freyd's aunt` + // `Maazarin's aunt` $femaleVersionWithName : - // `Regis Freyd's uncle` + // `Maazarin's uncle` $maleVersionWithName; } }