mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
CURA-4902 Challenging network message fix
This bug was very complicated to fix and involved careful troubleshooting of networked printers and eventual application of text-based message parsing and case switching. Should work now though.
This commit is contained in:
parent
7f6a89e6aa
commit
db316708d6
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,8 @@ Rectangle
|
|||
return catalog.i18nc("@label:status", "Available");
|
||||
case "unreachable":
|
||||
return catalog.i18nc("@label:MonitorStatus", "Lost connection with the printer");
|
||||
case "maintenance": // TODO: new string
|
||||
case "maintenance":
|
||||
return catalog.i18nc("@label:status", "Unavailable");
|
||||
case "unknown":
|
||||
default:
|
||||
return catalog.i18nc("@label Printer status", "Unknown");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue