summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-09 20:53:22 +0200
committerCarl Hetherington <cth@carlh.net>2020-04-13 00:27:39 +0200
commit747e81de1927c71b39dc916be05bb9296ca6b882 (patch)
tree4068bac39995c02aa43917f39fb3dff664f71efd /src/wx
parent6d27b49a7a767a9c8b31dc0f799da940ddb7232f (diff)
Support unmounting on macOS and Windows.v2.15.51
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/try_unmount_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/try_unmount_dialog.cc b/src/wx/try_unmount_dialog.cc
index d25ae8c3e..2ca76527d 100644
--- a/src/wx/try_unmount_dialog.cc
+++ b/src/wx/try_unmount_dialog.cc
@@ -27,7 +27,7 @@ TryUnmountDialog::TryUnmountDialog (wxWindow* parent, wxString description)
: wxDialog (parent, wxID_ANY, _("DCP-o-matic Disk Writer"))
{
wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
- wxStaticText* text = new StaticText (this, wxString::Format(_("The drive %s is mounted.\nIt must be unmounted before DCP-o-matic can write to it. Do you want to try to unmount it now?"), description));
+ wxStaticText* text = new StaticText (this, wxString::Format(_("The drive %s is mounted.\nIt must be unmounted before DCP-o-matic can write to it. Should DCP-o-matic try to unmount it now?"), description));
sizer->Add (text, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);