diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2022-06-07 13:07:19 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-06-07 16:41:38 +0200 |
commit | dfe72433382542ee391a3ab9d40e33f63d8f1282 (patch) | |
tree | 861edcee97b71ff12c4df234458817817899f48a /apps/settings/lib | |
parent | dcf25d6c7716daa08eb6af07a720c0a0b7b6eda6 (diff) | |
download | nextcloud-server-dfe72433382542ee391a3ab9d40e33f63d8f1282.tar.gz nextcloud-server-dfe72433382542ee391a3ab9d40e33f63d8f1282.zip |
l10n: Delete apostrophe
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'apps/settings/lib')
-rw-r--r-- | apps/settings/lib/Controller/AppSettingsController.php | 4 | ||||
-rw-r--r-- | apps/settings/lib/Controller/ChangePasswordController.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/lib/Controller/AppSettingsController.php b/apps/settings/lib/Controller/AppSettingsController.php index 77f807943cd..618d99b3d73 100644 --- a/apps/settings/lib/Controller/AppSettingsController.php +++ b/apps/settings/lib/Controller/AppSettingsController.php @@ -520,7 +520,7 @@ class AppSettingsController extends Controller { $this->appManager->clearAppsCache(); return new JSONResponse(['data' => ['appid' => $appId]]); } - return new JSONResponse(['data' => ['message' => $this->l10n->t('Couldn\'t remove app.')]], Http::STATUS_INTERNAL_SERVER_ERROR); + return new JSONResponse(['data' => ['message' => $this->l10n->t('Could not remove app.')]], Http::STATUS_INTERNAL_SERVER_ERROR); } /** @@ -542,7 +542,7 @@ class AppSettingsController extends Controller { if ($result !== false) { return new JSONResponse(['data' => ['appid' => $appId]]); } - return new JSONResponse(['data' => ['message' => $this->l10n->t('Couldn\'t update app.')]], Http::STATUS_INTERNAL_SERVER_ERROR); + return new JSONResponse(['data' => ['message' => $this->l10n->t('Could not update app.')]], Http::STATUS_INTERNAL_SERVER_ERROR); } private function sortApps($a, $b) { diff --git a/apps/settings/lib/Controller/ChangePasswordController.php b/apps/settings/lib/Controller/ChangePasswordController.php index 85e4218ebb5..7c3ab9546bc 100644 --- a/apps/settings/lib/Controller/ChangePasswordController.php +++ b/apps/settings/lib/Controller/ChangePasswordController.php @@ -243,7 +243,7 @@ class ChangePasswordController extends Controller { return new JSONResponse([ 'status' => 'error', 'data' => [ - 'message' => $this->l->t('Backend doesn\'t support password change, but the user\'s encryption key was updated.'), + 'message' => $this->l->t('Backend does not support password change, but the user\'s encryption key was updated.'), ] ]); } elseif (!$result && !$recoveryEnabledForUser) { |