fixed prompts

This commit is contained in:
desofity
2025-07-28 20:22:50 +03:00
parent 3fdcee71fd
commit 26fec272a3
2 changed files with 6 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import aiohttp
from . import api_helpers, ytlounge
# Constants for user input prompts
USE_PROXY_PROMPT = "Do you want to use system-wide proxy?"
USE_PROXY_PROMPT = "Do you want to use system-wide proxy? (y/N)"
ATVS_REMOVAL_PROMPT = (
"Do you want to remove the legacy 'atvs' entry (the app won't start with it present)? (y/N) "
)

View File

@@ -901,7 +901,11 @@ class UseProxyManager(Vertical):
yield Label("Use proxy", classes="title")
yield Label(
"This feature allows application to use system proxy,"
" if it is set in environmental variables.",
" if it is set in environment variables."
" This parameter will be passed in all [i]aiohttp.ClientSession[/i]"
" calls. For further information, see \"[i]trust_env[/i]\" section at"
" [link='https://docs.aiohttp.org/en/stable/client_reference.html']"
"aiohttp documentation[/link].",
classes="subtitle",
id="useproxy-subtitle",
)