diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-18 09:53:02 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-18 16:40:53 -0500 |
commit | 1c0bffe87f578403b130015f8fee5560cc075b34 (patch) | |
tree | ddf334b5dfd362f9c905ed2e9ed27fd8aa584694 /apps/files_external/lib/Controller/StoragesController.php | |
parent | b072d2c49d6f61c2b55abf12e04bdf2166dbd4f4 (diff) | |
download | nextcloud-server-1c0bffe87f578403b130015f8fee5560cc075b34.tar.gz nextcloud-server-1c0bffe87f578403b130015f8fee5560cc075b34.zip |
Fix translations
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_external/lib/Controller/StoragesController.php')
-rw-r--r-- | apps/files_external/lib/Controller/StoragesController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/Controller/StoragesController.php b/apps/files_external/lib/Controller/StoragesController.php index d962848bd78..dd2bf69a0a6 100644 --- a/apps/files_external/lib/Controller/StoragesController.php +++ b/apps/files_external/lib/Controller/StoragesController.php @@ -306,7 +306,7 @@ abstract class StoragesController extends Controller { } 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 ); @@ -331,7 +331,7 @@ abstract class StoragesController extends Controller { } 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 ); |