Improve config override text

Contributes to CL-1152
This commit is contained in:
Ian Paschal 2018-12-11 11:51:13 +01:00
parent 4b6f4af44e
commit 1c373b7205

View file

@ -61,7 +61,7 @@ UM.Dialog
var topLine var topLine
if (materialsAreKnown(printer.activePrintJob)) if (materialsAreKnown(printer.activePrintJob))
{ {
topLine = catalog.i18ncp("@label", "The assigned printer, %1, requires the following configuration change:", "The assigned printer, %1, requires the following configuration changes:").arg(printer.name) topLine = catalog.i18ncp("@label", "The assigned printer, %1, requires the following configuration change:", "The assigned printer, %1, requires the following configuration changes:", printer.activePrintJob.configurationChanges.length).arg(printer.name)
} }
else else
{ {
@ -89,8 +89,10 @@ UM.Dialog
default: default:
text = "unknown" text = "unknown"
} }
result += "<p><b>" + text + "</b></p>" result += "<p><b>" + text + "</b></p>\n\n"
} }
var bottomLine = catalog.i18nc("@label", "Override will use the specified settings with the existing printer configuration. This may result in a failed print.")
result += "<p>" + bottomLine + "</p>\n\n"
return result return result
} }
} }