feat(accounts): add disabled account state

This commit is contained in:
Sefa Eyeoglu
2022-02-18 12:26:52 +01:00
parent be910374dc
commit 9c71f364d2
6 changed files with 28 additions and 0 deletions

View File

@ -291,6 +291,9 @@ QVariant AccountList::data(const QModelIndex &index, int role) const
case AccountState::Expired: {
return tr("Expired", "Account status");
}
case AccountState::Disabled: {
return tr("Disabled", "Account status");
}
case AccountState::Gone: {
return tr("Gone", "Account status");
}