CL-506 changed Aborted to Print aborted and added it to all translations on the top

This commit is contained in:
Jack Ha 2017-09-29 11:21:15 +02:00
parent 4932cc1e85
commit b7dd756427
15 changed files with 83 additions and 11 deletions

View file

@ -61,7 +61,7 @@ Rectangle
anchors.fill:parent
onClicked: OutputDevice.selectPrinter(printer.unique_name, printer.friendly_name)
hoverEnabled: true;
// Only clickable if no printer is selected
enabled: OutputDevice.selectedPrinterName == ""
}
@ -256,10 +256,10 @@ Rectangle
}
else if (printJob.Status == "aborted")
{
return catalog.i18nc("@label:status", "Aborted")
return catalog.i18nc("@label:status", "Print aborted")
}
else
{
{
return "";
}
}