FIX: [STUDIO-4559 4557] translation

Change-Id: I54370aed677b6620c3b9b030a4e5d5ababe34569
This commit is contained in:
maosheng.wei 2023-09-26 18:32:38 +08:00 committed by Lane.Wei
parent 24d0b522a8
commit 1c1f33bc0b
14 changed files with 196 additions and 56 deletions

View file

@ -4788,7 +4788,7 @@ bool Plater::priv::replace_volume_with_stl(int object_idx, int volume_idx, const
}
if (new_model.objects.size() > 1 || new_model.objects.front()->volumes.size() > 1) {
MessageDialog dlg(q, _devL("Unable to replace with more than one volume"), _devL("Error during replace"), wxOK | wxOK_DEFAULT | wxICON_WARNING);
MessageDialog dlg(q, _L("Unable to replace with more than one volume"), _L("Error during replace"), wxOK | wxOK_DEFAULT | wxICON_WARNING);
dlg.ShowModal();
return false;
}
@ -5053,7 +5053,7 @@ void Plater::priv::reload_from_disk()
}
}
else {
wxString message = _devL("Do you want to replace it") + " ?";
wxString message = _L("Do you want to replace it") + " ?";
MessageDialog dlg(q, message, wxMessageBoxCaptionStr, wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION);
if (dlg.ShowModal() == wxID_YES)
#if ENABLE_RELOAD_FROM_DISK_REWORK