UI: OptionsPage: Add "Language" label.

This commit is contained in:
Nodir Temirkhodjaev 2017-12-06 05:27:58 +05:00
parent 06f93ca4ec
commit 7588868621

View File

@ -25,6 +25,7 @@ BasePage {
setConfFlagsEdited();
}
}
CheckBox {
id: cbBoot
text: translationManager.dummyBool
@ -36,6 +37,7 @@ BasePage {
setConfFlagsEdited();
}
}
CheckBox {
id: cbFilter
text: translationManager.dummyBool
@ -47,6 +49,15 @@ BasePage {
setConfFlagsEdited();
}
}
Row {
spacing: 4
Label {
anchors.verticalCenter: parent.verticalCenter
text: translationManager.dummyBool
&& qsTranslate("qml", "Language:")
}
ComboBox {
width: Math.max(implicitWidth, 180)
flat: true
@ -57,3 +68,4 @@ BasePage {
}
}
}
}