Mercurial > hg > sonic-lineup
changeset 437:f23090c3c103 pitch-align
Rename to use the MATCH name more clearly
| author | Chris Cannam |
|---|---|
| date | Thu, 25 Jun 2020 17:49:36 +0100 |
| parents | 7f2cf45157c8 |
| children | 477fc5d93e2c |
| files | main/MainWindow.cpp repoint-lock.json |
| diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/main/MainWindow.cpp Thu Jun 25 17:25:51 2020 +0100 +++ b/main/MainWindow.cpp Thu Jun 25 17:49:36 2020 +0100 @@ -765,8 +765,8 @@ { Align::NoAlignment, tr("No Alignment") }, { Align::LinearAlignment, tr("Linear") }, { Align::TrimmedLinearAlignment, tr("Linear Trimmed") }, - { Align::MATCHAlignment, tr("Online DTW (MATCH)") }, - { Align::MATCHAlignmentWithPitchCompare, tr("Online DTW with Pitch Compensation") }, + { Align::MATCHAlignment, tr("MATCH Aligner") }, + { Align::MATCHAlignmentWithPitchCompare, tr("MATCH with Tuning Compensation") }, { Align::SungNoteContourAlignment, tr("Sung Note Contour") }, }; @@ -791,7 +791,7 @@ action->setEnabled(false); } else { QString filename = QFileInfo(program).fileName(); - action = menu->addAction(tr("External Program (%1)").arg(filename)); + action = menu->addAction(tr("External Program: %1").arg(filename)); } m_externalAlignmentAction = action;
