use plasma HIG and remove ":" character

--tranlsation improvements
pull/2/head
Michail Vourlakos 7 years ago
parent 745b9ea075
commit a04bee5cc2

@ -154,7 +154,7 @@ PlasmaComponents.Page {
enabled: plasmoid.configuration.proportionIconSize === -1 enabled: plasmoid.configuration.proportionIconSize === -1
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("Size:") text: i18n("Size")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
} }
@ -210,7 +210,7 @@ PlasmaComponents.Page {
enabled: plasmoid.configuration.durationTime > 0 enabled: plasmoid.configuration.durationTime > 0
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("Zoom On Hover:") text: i18n("Zoom On Hover")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
} }
@ -259,7 +259,7 @@ PlasmaComponents.Page {
visible: plasmoid.configuration.advanced || plasmoid.configuration.proportionIconSize>0 visible: plasmoid.configuration.advanced || plasmoid.configuration.proportionIconSize>0
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("Screen Height Proportion:") text: i18n("Screen Height Proportion")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
enabled: proportionSizeSlider.value !== proportionSizeSlider.from enabled: proportionSizeSlider.value !== proportionSizeSlider.from
} }
@ -313,7 +313,7 @@ PlasmaComponents.Page {
visible: plasmoid.configuration.advanced visible: plasmoid.configuration.advanced
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("Applets Distance:") text: i18n("Applets Distance")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
enabled: iconMarginSlider.value > 0 enabled: iconMarginSlider.value > 0
} }
@ -377,7 +377,7 @@ PlasmaComponents.Page {
PlasmaComponents.Label { PlasmaComponents.Label {
enabled: showBackground.checked enabled: showBackground.checked
text: i18n("Size: ") text: i18n("Size")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
} }
@ -425,7 +425,7 @@ PlasmaComponents.Page {
visible: plasmoid.configuration.advanced visible: plasmoid.configuration.advanced
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("Opacity: ") text: i18n("Opacity")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
enabled: transparencySlider.enabled enabled: transparencySlider.enabled
} }
@ -613,7 +613,7 @@ PlasmaComponents.Page {
} }
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("Style:") + " " text: i18nc("active indicator style","Style")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
visible: plasmoid.configuration.advanced visible: plasmoid.configuration.advanced
} }
@ -660,7 +660,7 @@ PlasmaComponents.Page {
} }
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("Applets:") + " " text: i18n("Applets") + " "
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
visible: plasmoid.configuration.advanced visible: plasmoid.configuration.advanced
} }
@ -782,7 +782,7 @@ PlasmaComponents.Page {
RowLayout{ RowLayout{
PlasmaComponents.Label { PlasmaComponents.Label {
enabled: showGlowChk.checked enabled: showGlowChk.checked
text: i18n("Opacity: ") text: i18n("Opacity")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
} }
@ -1011,7 +1011,7 @@ PlasmaComponents.Page {
PlasmaComponents.Label { PlasmaComponents.Label {
enabled: showAppletShadow.checked enabled: showAppletShadow.checked
text: i18n("Opacity: ") text: i18n("Opacity")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
} }
@ -1061,7 +1061,7 @@ PlasmaComponents.Page {
PlasmaComponents.Label { PlasmaComponents.Label {
enabled: showAppletShadow.checked enabled: showAppletShadow.checked
text: i18n("Size: ") text: i18n("Size")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
} }
@ -1123,7 +1123,7 @@ PlasmaComponents.Page {
spacing: units.smallSpacing spacing: units.smallSpacing
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("Maximum: ") text: i18n("Maximum")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
} }
@ -1196,7 +1196,7 @@ PlasmaComponents.Page {
spacing: units.smallSpacing spacing: units.smallSpacing
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("Offset: ") text: i18n("Offset")
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
} }

@ -465,8 +465,9 @@ PlasmaComponents.Page {
PlasmaComponents.Label { PlasmaComponents.Label {
Layout.fillWidth: false Layout.fillWidth: false
Layout.rightMargin: units.smallSpacing
horizontalAlignment: Text.AlignRight horizontalAlignment: Text.AlignRight
text: i18n("Show:") text: i18n("Show")
} }
LatteExtraControls.TextField { LatteExtraControls.TextField {
Layout.preferredWidth: width Layout.preferredWidth: width
@ -480,8 +481,9 @@ PlasmaComponents.Page {
PlasmaComponents.Label { PlasmaComponents.Label {
Layout.fillWidth: false Layout.fillWidth: false
Layout.leftMargin: units.largeSpacing Layout.leftMargin: units.largeSpacing
Layout.rightMargin: units.smallSpacing
horizontalAlignment: Text.AlignRight horizontalAlignment: Text.AlignRight
text: i18n("Hide:") text: i18n("Hide")
} }
LatteExtraControls.TextField{ LatteExtraControls.TextField{
Layout.preferredWidth: width Layout.preferredWidth: width

@ -169,12 +169,13 @@ PlasmaComponents.Page {
} }
RowLayout { RowLayout {
Layout.topMargin: units.smallSpacing
Layout.leftMargin: units.smallSpacing * 2 Layout.leftMargin: units.smallSpacing * 2
visible: plasmoid.configuration.advanced visible: plasmoid.configuration.advanced
enabled: !disableAllWindowsFunctionality enabled: !disableAllWindowsFunctionality
PlasmaComponents.Label { PlasmaComponents.Label {
text: i18n("On middle-click:") text: i18n("On middle-click")
Layout.alignment: Qt.AlignRight Layout.alignment: Qt.AlignRight
} }

Loading…
Cancel
Save