Clarify translations of 'unknown'

For some languages, the gender matters.

Contributes to issue CURA-4601.
This commit is contained in:
Ghostkeeper 2017-11-24 12:43:41 +01:00
parent 6cea9c59e8
commit 147cbdf592
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A
3 changed files with 5 additions and 5 deletions

View file

@ -230,13 +230,13 @@ Cura.MachineAction
{
if(base.selectedPrinter.printerType == "ultimaker3")
{
return catalog.i18nc("@label", "Ultimaker 3")
return catalog.i18nc("@label Printer name", "Ultimaker 3")
} else if(base.selectedPrinter.printerType == "ultimaker3_extended")
{
return catalog.i18nc("@label", "Ultimaker 3 Extended")
return catalog.i18nc("@label Printer name", "Ultimaker 3 Extended")
} else
{
return catalog.i18nc("@label", "Unknown") // We have no idea what type it is. Should not happen 'in the field'
return catalog.i18nc("@label Printer name", "Unknown") // We have no idea what type it is. Should not happen 'in the field'
}
}
else