mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Remove translation wrapper for unnecessary parts
CURA-5221
This commit is contained in:
parent
f92985b4ac
commit
37bcf1694d
1 changed files with 6 additions and 5 deletions
|
|
@ -249,16 +249,17 @@ Cura.MachineAction
|
||||||
{
|
{
|
||||||
if(base.selectedDevice)
|
if(base.selectedDevice)
|
||||||
{
|
{
|
||||||
if(base.selectedDevice.printerType == "ultimaker3")
|
if (base.selectedDevice.printerType == "ultimaker3")
|
||||||
{
|
{
|
||||||
return catalog.i18nc("@label", "Ultimaker 3")
|
return "Ultimaker 3";
|
||||||
} else if(base.selectedDevice.printerType == "ultimaker3_extended")
|
}
|
||||||
|
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")
|
else if (base.selectedDevice.printerType == "ultimaker_s5")
|
||||||
{
|
{
|
||||||
return catalog.i18nc("@label", "Ultimaker S5")
|
return "Ultimaker S5";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue