Merge branch '3.0' into CL-508_show_lost_connection_status

This commit is contained in:
Ghostkeeper 2017-10-11 14:05:10 +02:00
commit c4339955b3
No known key found for this signature in database
GPG key ID: C5F96EE2BC0F7E75
3 changed files with 29 additions and 4 deletions

View file

@ -285,11 +285,11 @@ Cura.MachineAction
}
else if (base.selectedPrinter.clusterSize === 0)
{
return catalog.i18nc("@label", "Cura Connect: This printer is not set up to host a group of connected Ultimaker 3 printers.");
return catalog.i18nc("@label", "This printer is not set up to host a group of Ultimaker 3 printers.");
}
else
{
return catalog.i18nc("@label", "Cura Connect: This printer is set up to host a group of %1 connected Ultimaker 3 printers".arg(base.selectedPrinter.clusterSize));
return catalog.i18nc("@label", "This printer is the host for a group of %1 Ultimaker 3 printers.".arg(base.selectedPrinter.clusterSize));
}
}