@extends('layouts.app') @section('site_title', formatTitle([__('Advanced'), __('Settings'), config('settings.title')])) @section('content')
@include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Settings')], ]])

{{ __('Advanced') }}

{{ __('Advanced') }}
@include('shared.message')
@csrf
{{ __('Shortener') }}

@if ($errors->has('short_link_metadata_fetch')) {{ $errors->first('short_link_metadata_fetch') }} @endif {{ __('Enable or disable link metadata fetching.') }} {{ __('When enabled, metadata such as page title and description will be automatically retrieved for shortened links.') }}
@if ($errors->has('short_splash_redirect')) {{ $errors->first('short_splash_redirect') }} @endif {{ __('Enable or disable the splash screen redirect.') }} {!! __('When enabled, guest users and users without the :feature plan feature will see a splash screen before being redirected.', ['feature' => '' . __('No ads') . '']) !!}
{{ mb_strtolower(__('Seconds')) }}
@if ($errors->has('short_splash_redirect_delay_seconds')) {{ $errors->first('short_splash_redirect_delay_seconds') }} @endif {{ __('The number of seconds before the splash page automatically redirects.') }}
@if ($errors->has('short_splash_redirect_skipping')) {{ $errors->first('short_splash_redirect_skipping') }} @endif {{ __('Enable or disable skipping the redirect timer.') }} {{ __('When enabled, users can skip the redirect timer and continue immediately.') }}
@if ($errors->has('short_guest')) {{ $errors->first('short_guest') }} @endif {{ __('Enable or disable link shortening functionality for visitors who are not logged in.') }} {{ __('When enabled, shortened links will have limited stats.') }}
{{ __('Domain') }}

{{ __('The default domain used when generating shortened links.') }}
@if ($errors->has('domain_protocol')) {{ $errors->first('domain_protocol') }} @endif {{ __('The protocol used for redirects on custom domains.') }} {{ __('Enable only if you can generate SSL certificates for the custom domains.') }}
@if ($errors->has('short_max_multi_links')) {{ $errors->first('short_max_multi_links') }} @endif {{ __('The maximum number of links that can be shortened at once.') }}
@if ($errors->has('request_timeout')) {{ $errors->first('request_timeout') }} @endif {{ __('The number of seconds to wait before the request is terminated if no response is received.') }}
@if ($errors->has('request_http_version')) {{ $errors->first('request_http_version') }} @endif
@if ($errors->has('request_user_agent')) {{ $errors->first('request_user_agent') }} @endif
@if ($errors->has('request_proxy')) {{ $errors->first('request_proxy') }} @endif {{ __('One per line.') }}
{{ __(':service integration can be configured by following the official documentation.', ['service' => 'Google Safe Browsing']) }}
@if ($errors->has('gsb')) {{ $errors->first('gsb') }} @endif {{ __('Enable or disable the :service integration.', ['service' => 'Google Safe Browsing']) }}
@if ($errors->has('gsb_key')) {{ $errors->first('gsb_key') }} @endif
@endsection @include('shared.sidebars.admin')