mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Added a missing localization L mark
This commit is contained in:
parent
15ea6f5609
commit
e16786b701
1 changed files with 4 additions and 1 deletions
|
@ -5194,7 +5194,10 @@ void Plater::drive_ejected_callback()
|
||||||
if (RemovableDriveManager::get_instance().get_did_eject())
|
if (RemovableDriveManager::get_instance().get_did_eject())
|
||||||
{
|
{
|
||||||
RemovableDriveManager::get_instance().set_did_eject(false);
|
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);
|
wxMessageBox(message);
|
||||||
}
|
}
|
||||||
p->show_action_buttons(false);
|
p->show_action_buttons(false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue