File indexing completed on 2025-01-05 04:49:42

0001 /*
0002    SPDX-FileCopyrightText: 2021-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "scamconfigureutils.h"
0008 #include <KLocalizedString>
0009 QString ScamConfigureUtils::convertEnumToString(MessageViewer::ScamDetectionInfo::ScamDetectionField flag)
0010 {
0011     switch (flag) {
0012     case MessageViewer::ScamDetectionInfo::ScamDetectionField::None:
0013         break;
0014     case MessageViewer::ScamDetectionInfo::ScamDetectionField::DisableAll:
0015         return i18n("Disable All Check");
0016     case MessageViewer::ScamDetectionInfo::ScamDetectionField::RedirectUrl:
0017         return i18n("Redirect Url");
0018     case MessageViewer::ScamDetectionInfo::ScamDetectionField::HasIp:
0019         return i18n("Has Ip");
0020     }
0021     return {};
0022 }