Applied patch [ 791847 ] Missing translation in filedlg.cpp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23495 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-09-11 09:25:57 +00:00
parent 6bb934d631
commit 6f661de706
2 changed files with 6 additions and 1 deletions

View File

@@ -370,7 +370,7 @@ int wxFileDialog::ShowModal()
{
wxString messageText;
messageText.Printf(_("File '%s' already exists.\nDo you want to replace it?"), fileNameBuffer);
if ( wxMessageBox(messageText, wxT("Save File As"), wxYES_NO | wxICON_EXCLAMATION ) != wxYES )
if ( wxMessageBox(messageText, _("Save File As"), wxYES_NO | wxICON_EXCLAMATION ) != wxYES )
{
success = FALSE;
}