chore: remove mentions (#6096)

This commit is contained in:
Mazarin
2022-04-21 11:02:46 -04:00
committed by GitHub
parent b73e33d302
commit b36afcf703
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ Format: Firstname Lastname @github-handle <email>
CONTRIBUTORS
------------
Regis Freyd @djaiss
Maazarin @djaiss
Kirk Strauser @kstrauser
Taryn Hill @Phrohdoh <taryn@phrohdoh.com>
Andreas Zweili @Nebucatnetzer
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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)
+5 -5
View File
@@ -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;
}
}