Changed the translation string context in the ComboBox items in the image import dialog to their correct value of "@item:inlistbox".

This commit is contained in:
Kurt Loeffler 2016-01-15 09:53:06 -08:00
parent a43f9ef435
commit 44217fbf94

View file

@ -146,7 +146,7 @@ UM.Dialog
ComboBox { ComboBox {
id: image_color_invert id: image_color_invert
objectName: "Image_Color_Invert" objectName: "Image_Color_Invert"
model: [ catalog.i18nc("@action:label","Lighter is higher"), catalog.i18nc("@action:label","Darker is higher") ] model: [ catalog.i18nc("@item:inlistbox","Lighter is higher"), catalog.i18nc("@item:inlistbox","Darker is higher") ]
width: 180 width: 180
onCurrentIndexChanged: { manager.onImageColorInvertChanged(currentIndex) } onCurrentIndexChanged: { manager.onImageColorInvertChanged(currentIndex) }
} }