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
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-05-12 00:29:25 +0300
committerYuSanka <yusanka@gmail.com>2019-05-12 00:29:25 +0300
commitcd82b03a0e08564fa56613ea5fbb6dc054ea8a58 (patch)
tree240ac897903fb4af63eec9d9c073697559abb40d /src/slic3r/GUI/BedShapeDialog.cpp
parent6a0885002fe952bba5d33231c9e9ee3f2a1b0bd2 (diff)
Localization improvements : Empty spaces at the end of phrase are removed from dictionary.
+ new POT
Diffstat (limited to 'src/slic3r/GUI/BedShapeDialog.cpp')
-rw-r--r--src/slic3r/GUI/BedShapeDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/BedShapeDialog.cpp b/src/slic3r/GUI/BedShapeDialog.cpp
index fbbca7c70..d471a46c9 100644
--- a/src/slic3r/GUI/BedShapeDialog.cpp
+++ b/src/slic3r/GUI/BedShapeDialog.cpp
@@ -330,7 +330,7 @@ void BedShapePanel::load_stl()
model = Model::read_from_file(file_name);
}
catch (std::exception &e) {
- auto msg = _(L("Error! ")) + file_name + " : " + e.what() + ".";
+ auto msg = _(L("Error!")) + " " + file_name + " : " + e.what() + ".";
show_error(this, msg);
exit(1);
}