···3030 if (str.includes('Bad token scope') || str.includes('Bad token method')) {
3131 return t`This feature is not available while using an App Password. Please sign in with your main password.`
3232 }
3333+ if (str.includes('Account has been suspended')) {
3434+ return t`Account has been suspended`
3535+ }
3636+ if (str.includes('Account is deactivated')) {
3737+ return t`Account is deactivated`
3838+ }
3939+ if (str.includes('Profile not found')) {
4040+ return t`Profile not found`
4141+ }
4242+ if (str.includes('Unable to resolve handle')) {
4343+ return t`Unable to resolve handle`
4444+ }
3345 if (str.startsWith('Error: ')) {
3446 return str.slice('Error: '.length)
3547 }