mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Fix text on file/config overwrite dialog (#8471)
Co-authored-by: Noisyfox <timemanager.rick@gmail.com>
This commit is contained in:
committed by
GitHub
parent
a407feed24
commit
2a5371ab62
@@ -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"));
|
||||
|
||||
Reference in New Issue
Block a user