diff options
author | Joas Schilling <coding@schilljs.com> | 2025-02-26 09:54:32 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2025-02-26 09:54:32 +0100 |
commit | 095ab4419e21b0ea143b6b4441f229bca2e5d0fa (patch) | |
tree | b490b5527397f7b6ce27f7478b8ba16bd6ae1715 /lib | |
parent | 86f3b81de7cc2d9db48d54120fae315d80ad3f75 (diff) | |
download | nextcloud-server-095ab4419e21b0ea143b6b4441f229bca2e5d0fa.tar.gz nextcloud-server-095ab4419e21b0ea143b6b4441f229bca2e5d0fa.zip |
fix(l10n): Improve english source strings
- No leading/trailing whitespace
- Use asci single quote
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php | 6 | ||||
-rw-r--r-- | lib/private/Setup.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php b/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php index 88987290244..6b054b03f44 100644 --- a/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php +++ b/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php @@ -156,7 +156,7 @@ class SecurityMiddleware extends Middleware { throw new NotAdminException($this->l10n->t('Logged in account must be an admin, a sub admin or gotten special right to access this setting')); } if (!$this->remoteAddress->allowsAdminActions()) { - throw new AdminIpNotAllowedException($this->l10n->t('Your current IP address doesn’t allow you to perform admin actions')); + throw new AdminIpNotAllowedException($this->l10n->t('Your current IP address doesn\'t allow you to perform admin actions')); } } if ($this->hasAnnotationOrAttribute($reflectionMethod, 'SubAdminRequired', SubAdminRequired::class) @@ -173,12 +173,12 @@ class SecurityMiddleware extends Middleware { } if ($this->hasAnnotationOrAttribute($reflectionMethod, 'SubAdminRequired', SubAdminRequired::class) && !$this->remoteAddress->allowsAdminActions()) { - throw new AdminIpNotAllowedException($this->l10n->t('Your current IP address doesn’t allow you to perform admin actions')); + throw new AdminIpNotAllowedException($this->l10n->t('Your current IP address doesn\'t allow you to perform admin actions')); } if (!$this->hasAnnotationOrAttribute($reflectionMethod, 'SubAdminRequired', SubAdminRequired::class) && !$this->hasAnnotationOrAttribute($reflectionMethod, 'NoAdminRequired', NoAdminRequired::class) && !$this->remoteAddress->allowsAdminActions()) { - throw new AdminIpNotAllowedException($this->l10n->t('Your current IP address doesn’t allow you to perform admin actions')); + throw new AdminIpNotAllowedException($this->l10n->t('Your current IP address doesn\'t allow you to perform admin actions')); } } diff --git a/lib/private/Setup.php b/lib/private/Setup.php index f286c3698cf..271e10d63c2 100644 --- a/lib/private/Setup.php +++ b/lib/private/Setup.php @@ -186,7 +186,7 @@ class Setup { $errors[] = [ 'error' => $this->l10n->t( 'Mac OS X is not supported and %s will not work properly on this platform. ' . - 'Use it at your own risk! ', + 'Use it at your own risk!', [$this->defaults->getProductName()] ), 'hint' => $this->l10n->t('For the best results, please consider using a GNU/Linux server instead.'), |