🤖 Auto commit for release 'develop' on 2026-01-23

This commit is contained in:
JC5
2026-01-23 15:14:29 +01:00
parent 8f15a32bd6
commit eeeba86d38
888 changed files with 10732 additions and 10387 deletions

View File

@@ -72,13 +72,13 @@ class UpdateController extends Controller
$options = [
-1 => (string) trans('firefly.updates_ask_me_later'),
0 => (string) trans('firefly.updates_do_not_check'),
1 => (string) trans('firefly.updates_enable_check')
1 => (string) trans('firefly.updates_enable_check'),
];
$channelOptions = [
$channelOptions = [
'stable' => (string) trans('firefly.update_channel_stable'),
'beta' => (string) trans('firefly.update_channel_beta'),
'alpha' => (string) trans('firefly.update_channel_alpha')
'alpha' => (string) trans('firefly.update_channel_alpha'),
];
return view('settings.update.index', [
@@ -87,7 +87,7 @@ class UpdateController extends Controller
'selected' => $selected,
'options' => $options,
'channelSelected' => $channelSelected,
'channelOptions' => $channelOptions
'channelOptions' => $channelOptions,
]);
}