mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 16:59:01 +08:00
Remove translation wrapper for unnecessary parts
CURA-5221
This commit is contained in:
parent
f92985b4ac
commit
37bcf1694d
@ -249,16 +249,17 @@ Cura.MachineAction
|
||||
{
|
||||
if(base.selectedDevice)
|
||||
{
|
||||
if(base.selectedDevice.printerType == "ultimaker3")
|
||||
if (base.selectedDevice.printerType == "ultimaker3")
|
||||
{
|
||||
return catalog.i18nc("@label", "Ultimaker 3")
|
||||
} else if(base.selectedDevice.printerType == "ultimaker3_extended")
|
||||
return "Ultimaker 3";
|
||||
}
|
||||
else if (base.selectedDevice.printerType == "ultimaker3_extended")
|
||||
{
|
||||
return catalog.i18nc("@label", "Ultimaker 3 Extended")
|
||||
return "Ultimaker 3 Extended";
|
||||
}
|
||||
else if (base.selectedDevice.printerType == "ultimaker_s5")
|
||||
{
|
||||
return catalog.i18nc("@label", "Ultimaker S5")
|
||||
return "Ultimaker S5";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user