mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 15:37:27 -06:00
CURA-4902 Standardized i18nc message labels
This one goes out to @fieldofview. ❤️
This commit is contained in:
parent
ad735472ff
commit
3e7e828f4b
1 changed files with 3 additions and 3 deletions
|
@ -34,18 +34,18 @@ Rectangle
|
||||||
switch (printer.state)
|
switch (printer.state)
|
||||||
{
|
{
|
||||||
case "pre_print":
|
case "pre_print":
|
||||||
return catalog.i18nc("@label", "Preparing to print")
|
return catalog.i18nc("@label:status", "Preparing to print")
|
||||||
case "printing":
|
case "printing":
|
||||||
return catalog.i18nc("@label:status", "Printing");
|
return catalog.i18nc("@label:status", "Printing");
|
||||||
case "idle":
|
case "idle":
|
||||||
return catalog.i18nc("@label:status", "Available");
|
return catalog.i18nc("@label:status", "Available");
|
||||||
case "unreachable":
|
case "unreachable":
|
||||||
return catalog.i18nc("@label:MonitorStatus", "Lost connection with the printer");
|
return catalog.i18nc("@label:status", "Lost connection with the printer");
|
||||||
case "maintenance":
|
case "maintenance":
|
||||||
return catalog.i18nc("@label:status", "Unavailable");
|
return catalog.i18nc("@label:status", "Unavailable");
|
||||||
case "unknown":
|
case "unknown":
|
||||||
default:
|
default:
|
||||||
return catalog.i18nc("@label Printer status", "Unknown");
|
return catalog.i18nc("@label:status", "Unknown");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue