removed gendered languaged

This commit is contained in:
alyxbb 2024-01-08 23:55:09 +00:00 committed by GitHub
parent cd2daeb2cb
commit 5c94bf7bae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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() public function indexAction()
{ {

View File

@ -34,7 +34,7 @@ abstract class HostActionsHook extends ObjectActionsHook
* </code> * </code>
* *
* One might also provide ssh:// or rdp:// urls if equipped with fitting * 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 * TODO: I'd love to see some kind of a Link/LinkSet object implemented
* for this and similar hooks. * for this and similar hooks.

View File

@ -34,7 +34,7 @@ abstract class ServiceActionsHook extends ObjectActionsHook
* </code> * </code>
* *
* One might also provide ssh:// or rdp:// urls if equipped with fitting * 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 * TODO: I'd love to see some kind of a Link/LinkSet object implemented
* for this and similar hooks. * for this and similar hooks.

View File

@ -79,7 +79,7 @@ if (! (false === ($distro = Platform::getLinuxDistro(1)) || $distro === 'linux')
<p><?= <p><?=
$this->translate( $this->translate(
'To run this wizard a user needs to authenticate using a token which is usually' '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> ); ?></p>
<?php if (! $docker): ?> <?php if (! $docker): ?>
<p><?= $this->translate('In any case, make sure that all of the following applies to your environment:'); ?></p> <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() public function getSummary()
{ {
if (! isset($this->data['groupConfig'])) { 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>'; $pageTitle = '<h2>' . mt('setup', 'User Groups', 'setup.page.title') . '</h2>';

View File

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