Make translation hint a bit more clear for translators

The old message didn't really say anything useful.

Contributes to issue CURA-3138.
This commit is contained in:
Ghostkeeper 2016-12-16 10:58:13 +01:00
parent 8e9ca45148
commit 4fdaf734fc
No known key found for this signature in database
GPG key ID: C5F96EE2BC0F7E75

View file

@ -23,7 +23,7 @@ Menu
if(printerConnected && Cura.MachineManager.printerOutputDevices[0].materialNames.length > extruderIndex)
{
var materialName = Cura.MachineManager.printerOutputDevices[0].materialNames[extruderIndex];
return catalog.i18nc("@title:menuitem %1 is the value from the printer", "Automatic: %1").arg(materialName);
return catalog.i18nc("@title:menuitem %1 is the automatically selected material", "Automatic: %1").arg(materialName);
}
return "";
}