Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2021-11-04 16:21:38 +0300
committersupermerill <merill@free.fr>2021-11-06 23:19:27 +0300
commit03cf86b06c050fc4f68ff9fe7a9905719455875e (patch)
tree5abd1a1dde8432969ba854bb4b857604ee459522 /src
parent9bf4f6505a72165eeb41886859a204b191a77382 (diff)
Fix some untranslated warning messages
Diffstat (limited to 'src')
-rw-r--r--src/slic3r/GUI/GLCanvas3D.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp
index f79a3d2b4..d28a999ec 100644
--- a/src/slic3r/GUI/GLCanvas3D.cpp
+++ b/src/slic3r/GUI/GLCanvas3D.cpp
@@ -638,12 +638,12 @@ void GLCanvas3D::WarningTexture::activate(WarningTexture::Warning warning, bool
std::string text;
bool error = false;
switch (warning) {
- case ObjectOutside: text = L("An object outside the print area was detected."); break;
- case ToolpathOutside: text = L("A toolpath outside the print area was detected."); error = true; break;
- case SlaSupportsOutside: text = L("SLA supports outside the print area were detected."); error = true; break;
- case SomethingNotShown: text = L("Some objects are not visible."); break;
+ case ObjectOutside: text = _u8L("An object outside the print area was detected."); break;
+ case ToolpathOutside: text = _u8L("A toolpath outside the print area was detected."); error = true; break;
+ case SlaSupportsOutside: text = _u8L("SLA supports outside the print area were detected."); error = true; break;
+ case SomethingNotShown: text = _u8L("Some objects are not visible."); break;
case ObjectClashed:
- text = L( "An object outside the print area was detected.\n"
+ text = _u8L( "An object outside the print area was detected.\n"
"Resolve the current problem to continue slicing.");
error = true;
break;