forked from Qortal/Brooklyn
23 lines
462 B
QML
23 lines
462 B
QML
/*
|
|
SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.0
|
|
|
|
import org.kde.plasma.configuration 2.0
|
|
|
|
ConfigModel {
|
|
ConfigCategory {
|
|
name: i18n("General")
|
|
icon: "plasma"
|
|
source: "ConfigGeneral.qml"
|
|
}
|
|
ConfigCategory {
|
|
name: i18n("Entries")
|
|
icon: "preferences-desktop-notification"
|
|
source: "ConfigEntries.qml"
|
|
}
|
|
}
|