Fix text on file/config overwrite dialog (#8471)

Co-authored-by: Noisyfox <timemanager.rick@gmail.com>
This commit is contained in:
Alexandre Folle de Menezes 2025-03-05 12:22:33 -03:00 committed by GitHub
parent a407feed24
commit 2a5371ab62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 71 additions and 71 deletions

View file

@ -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"));