From 1cbe2bd87e1ac91121984b9e416c9f2bbba9b1e0 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 18 Dec 2020 13:04:28 +0100 Subject: [PATCH] Added a missing translation macro --- src/libslic3r/GCode.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 830fff8f98..b07db889c7 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -1258,8 +1258,8 @@ void GCode::_do_export(Print& print, FILE* file, ThumbnailsGeneratorCallback thu // (See https://github.com/prusa3d/PrusaSlicer/issues/5441.) if (overlap) { print.active_step_add_warning(PrintStateBase::WarningLevel::CRITICAL, - L("Your print is very close to the priming regions. " - "Make sure there is no collision.")); + _(L("Your print is very close to the priming regions. " + "Make sure there is no collision."))); } else { // Just continue printing, no action necessary. }