status-desktop/ui/app/AppLayouts/Profile/stores/LanguageStore.qml

13 lines
189 B
QML
Raw Normal View History

import QtQuick 2.13
import utils 1.0
QtObject {
id: root
property var languageModule
function changeLocale(locale) {
root.languageModule.changeLocale(locale)
}
}