From: Carl Hetherington Date: Tue, 23 Aug 2016 23:01:44 +0000 (+0100) Subject: Up/Down -> Earlier/Later. X-Git-Tag: v2.9.16~22 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=4c1ee13ed30f147bd6ed97c22fe4ecfaea059914;p=dcpomatic.git Up/Down -> Earlier/Later. --- diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index fa6641cfb..73866fa59 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -90,11 +90,11 @@ ContentPanel::ContentPanel (wxNotebook* n, boost::shared_ptr film, FilmVie _remove->SetToolTip (_("Remove the selected piece of content from the film.")); b->Add (_remove, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP); - _earlier = new wxButton (_panel, wxID_ANY, _("Up")); + _earlier = new wxButton (_panel, wxID_ANY, _("Earlier")); _earlier->SetToolTip (_("Move the selected piece of content earlier in the film.")); b->Add (_earlier, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP); - _later = new wxButton (_panel, wxID_ANY, _("Down")); + _later = new wxButton (_panel, wxID_ANY, _("Later")); _later->SetToolTip (_("Move the selected piece of content later in the film.")); b->Add (_later, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);