removed gendered language (#5169)

This commit is contained in:
Johannes Meyer 2024-08-07 14:40:32 +02:00 committed by GitHub
commit 781b97fc41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 6 additions and 6 deletions

View File

@ -113,7 +113,7 @@ class NavigationController extends Controller
}
/**
* Show the current user a list of his/her navigation items
* Show the current user a list of their navigation items
*/
public function indexAction()
{

View File

@ -34,7 +34,7 @@ abstract class HostActionsHook extends ObjectActionsHook
* </code>
*
* One might also provide ssh:// or rdp:// urls if equipped with fitting
* (safe) URL handlers for his browser(s).
* (safe) URL handlers for their browser(s).
*
* TODO: I'd love to see some kind of a Link/LinkSet object implemented
* for this and similar hooks.

View File

@ -34,7 +34,7 @@ abstract class ServiceActionsHook extends ObjectActionsHook
* </code>
*
* One might also provide ssh:// or rdp:// urls if equipped with fitting
* (safe) URL handlers for his browser(s).
* (safe) URL handlers for their browser(s).
*
* TODO: I'd love to see some kind of a Link/LinkSet object implemented
* for this and similar hooks.

View File

@ -79,7 +79,7 @@ if (! (false === ($distro = Platform::getLinuxDistro(1)) || $distro === 'linux')
<p><?=
$this->translate(
'To run this wizard a user needs to authenticate using a token which is usually'
. ' provided to him by an administrator who\'d followed the instructions below.'
. ' provided to them by an administrator who\'d followed the instructions below.'
); ?></p>
<?php if (! $docker): ?>
<p><?= $this->translate('In any case, make sure that all of the following applies to your environment:'); ?></p>

View File

@ -128,7 +128,7 @@ class UserGroupStep extends Step
public function getSummary()
{
if (! isset($this->data['groupConfig'])) {
return; // It's not necessary to show the user something he didn't configure..
return; // It's not necessary to show the user something they didn't configure..
}
$pageTitle = '<h2>' . mt('setup', 'User Groups', 'setup.page.title') . '</h2>';

View File

@ -36,7 +36,7 @@ class UserTest extends BaseTestCase
$this->assertEquals(
new DateTimeZone($explicitTz),
$user->getTimeZone(),
'User\'s timezone does not match the timezone set by himself'
'User\'s timezone does not match the timezone set by themself'
);
}