fix(profiles): label a Plex Home parent connection as an account
A Plex Home profile's chip rendered the parent connection's displayLabel, which for a Plex account is the account owner's username. The owner's name appeared directly beneath the Home user's own, reading as the wrong user being signed in. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Fdzda9t7kQtq7LoQ2v5nVF
This commit is contained in:
co-authored by
Claude Opus 5
parent
ddc3a4d77c
commit
dcc06768e0
@@ -2296,6 +2296,9 @@ class Translations$profiles$en {
|
||||
/// en: 'Active'
|
||||
String get active => 'Active';
|
||||
|
||||
/// en: 'via ${name}'
|
||||
String viaPlexAccount({required Object name}) => 'via ${name}';
|
||||
|
||||
/// en: 'Manage'
|
||||
String get manage => 'Manage';
|
||||
|
||||
@@ -6751,6 +6754,7 @@ extension on Translations {
|
||||
'profiles.deleteThisProfileTitle' => 'Delete this profile?',
|
||||
'profiles.deleteThisProfileMessage' => ({required Object displayName}) => 'Remove ${displayName}. Connections aren\'t affected.',
|
||||
'profiles.active' => 'Active',
|
||||
'profiles.viaPlexAccount' => ({required Object name}) => 'via ${name}',
|
||||
'profiles.manage' => 'Manage',
|
||||
'profiles.delete' => 'Delete',
|
||||
'profiles.signOut' => 'Sign out',
|
||||
@@ -7059,9 +7063,9 @@ extension on Translations {
|
||||
'explore.stats.onHold' => ({required Object n}) => '${n} on hold',
|
||||
'explore.stats.dropped' => ({required Object n}) => '${n} dropped',
|
||||
'explore.season.winter' => 'Winter',
|
||||
'explore.season.spring' => 'Spring',
|
||||
_ => null,
|
||||
} ?? switch (path) {
|
||||
'explore.season.spring' => 'Spring',
|
||||
'explore.season.summer' => 'Summer',
|
||||
'explore.season.fall' => 'Fall',
|
||||
'explore.season.withYear' => ({required Object season, required Object year}) => '${season} ${year}',
|
||||
@@ -7573,9 +7577,9 @@ extension on Translations {
|
||||
'externalPlayer.playerPackage' => 'Package Name',
|
||||
'externalPlayer.playerUrlScheme' => 'URL Scheme',
|
||||
'externalPlayer.off' => 'Off',
|
||||
'externalPlayer.launchFailed' => 'Failed to open external player',
|
||||
_ => null,
|
||||
} ?? switch (path) {
|
||||
'externalPlayer.launchFailed' => 'Failed to open external player',
|
||||
'externalPlayer.appNotInstalled' => ({required Object name}) => '${name} is not installed',
|
||||
'externalPlayer.playInExternalPlayer' => 'Play in External Player',
|
||||
'metadataEdit.editMetadata' => 'Edit...',
|
||||
|
||||
Reference in New Issue
Block a user