From 3214324b72c8d65a3309a2e8479dbe92b19f3b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Sat, 21 Oct 2023 11:48:46 +0200 Subject: [PATCH] fix(l10n): invalid translation of a number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix https://github.com/nextcloud/server/issues/35252 Signed-off-by: John Molakvoæ --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index af41b050f529a..d0a2072cc66b3 100644 --- a/lib/base.php +++ b/lib/base.php @@ -1121,7 +1121,7 @@ public static function handleRequest(): void { } $l = Server::get(\OCP\L10N\IFactory::class)->get('lib'); OC_Template::printErrorPage( - $l->t('404'), + '404', $l->t('The page could not be found on the server.'), 404 );