From e16786b701fe4c96794f919444f073ea73aad197 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 24 Feb 2020 14:54:44 +0100 Subject: [PATCH] Added a missing localization L mark --- src/slic3r/GUI/Plater.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index f5fc9ee790..89c517fed5 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);