mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
13 lines
189 B
QML
13 lines
189 B
QML
|
import QtQuick 2.13
|
||
|
import utils 1.0
|
||
|
|
||
|
QtObject {
|
||
|
id: root
|
||
|
|
||
|
property var languageModule
|
||
|
|
||
|
function changeLocale(locale) {
|
||
|
root.languageModule.changeLocale(locale)
|
||
|
}
|
||
|
}
|