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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-12-04 13:12:28 +0300
committerYuSanka <yusanka@gmail.com>2019-12-04 13:14:13 +0300
commitee71f83939a10ea99b1e607a4afbcd538252238f (patch)
treea4598232ce2faafeb9890843892fd8ba86cc37c0 /src/slic3r/GUI/PresetHints.cpp
parent8604e193847cac0ce92229759f1f239997ca8b9c (diff)
Localization improvements:version_2.2.0-alpha0
* fixed "\n" at the end of phrases + updated list of files to localization + new PrusaSlicer.pot + Japanese localization
Diffstat (limited to 'src/slic3r/GUI/PresetHints.cpp')
-rw-r--r--src/slic3r/GUI/PresetHints.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/PresetHints.cpp b/src/slic3r/GUI/PresetHints.cpp
index a02772c4d..f6281d7af 100644
--- a/src/slic3r/GUI/PresetHints.cpp
+++ b/src/slic3r/GUI/PresetHints.cpp
@@ -32,11 +32,11 @@ std::string PresetHints::cooling_description(const Preset &preset)
% slowdown_below_layer_time % max_fan_speed % slowdown_below_layer_time % min_print_speed).str();
if (fan_below_layer_time > slowdown_below_layer_time) {
- out += (boost::format(_utf8(L("\nIf estimated layer time is greater, but still below ~%1%s, "
+ out += "\n" + (boost::format(_utf8(L("If estimated layer time is greater, but still below ~%1%s, "
"fan will run at a proportionally decreasing speed between %2%%% and %3%%%.")))
% fan_below_layer_time % max_fan_speed % min_fan_speed).str();
}
- out += _utf8(L("\nDuring the other layers, fan")) + " ";
+ out += "\n" + _utf8(L("During the other layers, fan")) + " ";
} else {
out = _utf8(L("Fan")) + " ";
}