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:
authorLukas Matena <lukasmatena@seznam.cz>2020-02-24 16:54:44 +0300
committerLukas Matena <lukasmatena@seznam.cz>2020-02-24 16:54:44 +0300
commite16786b701fe4c96794f919444f073ea73aad197 (patch)
tree1e69872dd73af8de93667a18d1cba855a25ca378 /src/slic3r/GUI/Plater.cpp
parent15ea6f5609f82eb2889280cdcd6aa1dbd364ae09 (diff)
Added a missing localization L mark
Diffstat (limited to 'src/slic3r/GUI/Plater.cpp')
-rw-r--r--src/slic3r/GUI/Plater.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp
index f5fc9ee79..89c517fed 100644
--- a/src/slic3r/GUI/Plater.cpp
+++ b/src/slic3r/GUI/Plater.cpp
@@ -5194,7 +5194,10 @@ void Plater::drive_ejected_callback()
if (RemovableDriveManager::get_instance().get_did_eject())
{
RemovableDriveManager::get_instance().set_did_eject(false);
- wxString message = "Unmounting successful. The device " + RemovableDriveManager::get_instance().get_ejected_name() + "(" + RemovableDriveManager::get_instance().get_ejected_path() + ")" + " can now be safely removed from the computer.";
+ wxString message = wxString::Format(
+ "Unmounting successful. The device %s(%s) can now be safely removed from the computer.",
+ RemovableDriveManager::get_instance().get_ejected_name(),
+ RemovableDriveManager::get_instance().get_ejected_path());
wxMessageBox(message);
}
p->show_action_buttons(false);