refactor: remove debug token i18n strings

This commit is contained in:
edde746
2026-03-08 15:13:19 +01:00
parent f85afbe576
commit 9e2e1f72ce
32 changed files with 36 additions and 177 deletions
+4 -4
View File
@@ -243,15 +243,15 @@ class _AuthScreenState extends State<AuthScreen> {
return StatefulBuilder(
builder: (context, setDialogState) {
return AlertDialog(
title: Text(t.auth.debugEnterToken),
title: const Text('Debug: Enter Plex Token'),
content: Column(
mainAxisSize: MainAxisSize.min,
children: [
TextFormField(
controller: tokenController,
decoration: InputDecoration(
labelText: t.auth.plexTokenLabel,
hintText: t.auth.plexTokenHint,
labelText: 'Plex Auth Token',
hintText: 'Enter your Plex.tv token',
errorText: errorMessage,
border: const OutlineInputBorder(),
),
@@ -453,7 +453,7 @@ class _AuthScreenState extends State<AuthScreen> {
padding: const EdgeInsets.symmetric(vertical: 12),
side: BorderSide(color: Theme.of(context).colorScheme.outline.withValues(alpha: 0.5)),
),
child: Text(t.auth.debugEnterToken, style: const TextStyle(fontSize: 12)),
child: const Text('Debug: Enter Plex Token', style: TextStyle(fontSize: 12)),
),
],
if (_errorMessage != null) ...[