diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-10-21 11:48:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-21 11:48:46 +0200 |
commit | 3214324b72c8d65a3309a2e8479dbe92b19f3b1d (patch) | |
tree | d9f2f9a625021fe7069070c28ace0378e2eb9e0e /lib/base.php | |
parent | 5c2610af7dbce72fa1c1b02185a2c28cd5be004e (diff) | |
download | nextcloud-server-3214324b72c8d65a3309a2e8479dbe92b19f3b1d.tar.gz nextcloud-server-3214324b72c8d65a3309a2e8479dbe92b19f3b1d.zip |
fix(l10n): invalid translation of a number
fix https://github.com/nextcloud/server/issues/35252
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index af41b050f52..d0a2072cc66 100644 --- a/lib/base.php +++ b/lib/base.php @@ -1121,7 +1121,7 @@ class OC { } $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 ); |