From 1c0bffe87f578403b130015f8fee5560cc075b34 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 18 Apr 2017 09:53:02 +0200 Subject: Fix translations Signed-off-by: Joas Schilling --- apps/files_external/lib/Controller/StoragesController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/files_external/lib/Controller/StoragesController.php') 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 ); -- cgit v1.2.3