adds/adapts translation context markers

all nescessary in folder: Cura/resources

Contributes to: issue CURA-116
This commit is contained in:
Tamara Hogenhout 2015-09-08 16:30:10 +02:00
parent 4a9bf2b4d6
commit 28aec71c02
13 changed files with 39 additions and 35 deletions

View file

@ -13,6 +13,7 @@ Column
id: wizardPage
property string title
anchors.fill: parent;
UM.I18nCatalog { id: catalog; name:"cura"}
Label
{
text: parent.title
@ -38,12 +39,13 @@ Column
}
Button
{
text: "Update";
text: catalog.i18nc("@action:button","Update")
onClicked:
{
if(!UM.USBPrinterManager.updateFirmwareBySerial(text_area.text))
{
status_text.text = "ERROR"
status_text.text = catalog.i18nc("@info:status","ERROR")
}
}
}