diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-04-18 18:01:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-18 18:01:50 -0500 |
commit | 269600a04f18e025313352d3b2293cc10d3c26fa (patch) | |
tree | ea97f5ea1965ea7328ce9a20585a282419e1ecf2 /apps/files_external/lib/Controller/GlobalStoragesController.php | |
parent | 34e0b21f418c7dcc5ab346248873a2ae0ec5ba2b (diff) | |
parent | 1c0bffe87f578403b130015f8fee5560cc075b34 (diff) | |
download | nextcloud-server-269600a04f18e025313352d3b2293cc10d3c26fa.tar.gz nextcloud-server-269600a04f18e025313352d3b2293cc10d3c26fa.zip |
Merge pull request #4369 from nextcloud/fix-translations
Fix translations
Diffstat (limited to 'apps/files_external/lib/Controller/GlobalStoragesController.php')
-rw-r--r-- | apps/files_external/lib/Controller/GlobalStoragesController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Controller/GlobalStoragesController.php b/apps/files_external/lib/Controller/GlobalStoragesController.php index c6a19004e8e..69056225f8a 100644 --- a/apps/files_external/lib/Controller/GlobalStoragesController.php +++ b/apps/files_external/lib/Controller/GlobalStoragesController.php @@ -170,7 +170,7 @@ class GlobalStoragesController extends StoragesController { } catch (NotFoundException $e) { return new DataResponse( [ - 'message' => (string)$this->l10n->t('Storage with id "%i" not found', array($id)) + 'message' => (string)$this->l10n->t('Storage with ID "%d" not found', array($id)) ], Http::STATUS_NOT_FOUND ); |