mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-06 22:47:32 -06:00
Fix text on file/config overwrite dialog (#8471)
Co-authored-by: Noisyfox <timemanager.rick@gmail.com>
This commit is contained in:
parent
a407feed24
commit
2a5371ab62
21 changed files with 71 additions and 71 deletions
|
@ -3217,10 +3217,10 @@ struct ConfigsOverwriteConfirmDialog : MessageDialog
|
|||
{
|
||||
ConfigsOverwriteConfirmDialog(wxWindow *parent, wxString name, bool exported)
|
||||
: MessageDialog(parent,
|
||||
wxString::Format(exported ? _L("A file exists with the same name: %s, do you want to override it.") :
|
||||
_L("A config exists with the same name: %s, do you want to override it."),
|
||||
wxString::Format(exported ? _L("A file exists with the same name: %s, do you want to overwrite it?") :
|
||||
_L("A config exists with the same name: %s, do you want to overwrite it?"),
|
||||
name),
|
||||
_L(exported ? "Overwrite file" : "Overwrite config"),
|
||||
exported ? _L("Overwrite file") : _L("Overwrite config"),
|
||||
wxYES_NO | wxNO_DEFAULT)
|
||||
{
|
||||
add_button(wxID_YESTOALL, false, _L("Yes to All"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue