Fixed a bug that crept in during adding i18n support and made gcode viewer slides stop working

This commit is contained in:
Gina Häußge 2014-09-12 12:39:33 +02:00
parent 3a0aac3c36
commit 3aca55205e

View file

@ -332,7 +332,7 @@ function GcodeViewModel(loginStateViewModel, settingsViewModel) {
}
output.push(gettext("Estimated print time") + ": " + formatDuration(model.printTime));
output.push(gettext("Estimated layer height") + ": " + model.layerHeight.toFixed(2) + gettext("mm"));
output.push(gettext("Layer count") + ": " + model.layersPrinted.toFixed(0) + " " + gettext(printed) + ", " + model.layersTotal.toFixed(0) + " " + gettext("visited"));
output.push(gettext("Layer count") + ": " + model.layersPrinted.toFixed(0) + " " + gettext("printed") + ", " + model.layersTotal.toFixed(0) + " " + gettext("visited"));
self.ui_modelInfo(output.join("<br>"));