From 3439aa560e058323509e8ebec5fd956da7d0c429 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 13 Mar 2026 04:24:39 +0000 Subject: [PATCH] Fix missing translation namespace in update overview view Added the missing `installer::` namespace prefix to the translation key used in `trans_choice()` for the updater overview message in `src/resources/views/update/overview.blade.php`. Co-authored-by: juzaweb <47020363+juzaweb@users.noreply.github.com> --- src/resources/views/update/overview.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resources/views/update/overview.blade.php b/src/resources/views/update/overview.blade.php index c250e15..af40988 100644 --- a/src/resources/views/update/overview.blade.php +++ b/src/resources/views/update/overview.blade.php @@ -2,7 +2,7 @@ @section('title', trans('installer::message.updater.welcome.title')) @section('container') -

{{ trans_choice('message.updater.overview.message', $numberOfUpdatesPending, ['number' => $numberOfUpdatesPending]) }}

+

{{ trans_choice('installer::message.updater.overview.message', $numberOfUpdatesPending, ['number' => $numberOfUpdatesPending]) }}

{{ trans('installer::message.updater.overview.install_updates') }}