190 |
# obviously not. |
# obviously not. |
191 |
dlg = wxMessageDialog(self, |
dlg = wxMessageDialog(self, |
192 |
path + _(" already exists. Overwrite?"), |
path + _(" already exists. Overwrite?"), |
193 |
_(""), |
"", |
194 |
wxYES | wxNO) |
wxYES | wxNO) |
195 |
|
|
196 |
if dlg.ShowModal() == wxID_YES: |
if dlg.ShowModal() == wxID_YES: |
214 |
# can't access the file |
# can't access the file |
215 |
dlg = wxMessageDialog(self, |
dlg = wxMessageDialog(self, |
216 |
_("Couldn't access ") + path, |
_("Couldn't access ") + path, |
217 |
_(""), |
"", |
218 |
wxOK | wxICON | wxICON_EXCLAMATION) |
wxOK | wxICON | wxICON_EXCLAMATION) |
219 |
return |
return |
220 |
|
|