mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-07 05:58:58 +08:00
CURA-4902 Standardized i18nc message labels
This one goes out to @fieldofview. ❤️
This commit is contained in:
parent
ad735472ff
commit
3e7e828f4b
@ -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…
x
Reference in New Issue
Block a user