26 lines
826 B
QML
26 lines
826 B
QML
import QtQuick 2.13
|
|
import utils 1.0
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
property var languageModule
|
|
|
|
readonly property var languageModel: languageModule ? languageModule.model : null
|
|
readonly property string currentLanguage: languageModule ? languageModule.currentLanguage : null
|
|
readonly property bool isDDMMYYDateFormat: localAccountSensitiveSettings.isDDMMYYDateFormat
|
|
readonly property bool is24hTimeFormat: localAccountSensitiveSettings.is24hTimeFormat
|
|
|
|
function changeLanguage(language) {
|
|
root.languageModule.changeLanguage(language)
|
|
}
|
|
|
|
function setIsDDMMYYDateFormat(isDDMMYYDateFormat) {
|
|
root.languageModule.setIsDDMMYYDateFormat(isDDMMYYDateFormat)
|
|
}
|
|
|
|
function setIs24hTimeFormat(is24hTimeFormat) {
|
|
root.languageModule.setIs24hTimeFormat(is24hTimeFormat)
|
|
}
|
|
}
|