Be consistent 'Athlete' not 'Cyclist'

Although the codebase refers to 'cyclist' in a number
of different ways (classes, setting names, class members)
we should always use 'Athlete' when prompting the user.
This commit is contained in:
Mark Liversedge
2011-09-01 21:07:58 +01:00
parent df6a44ca83
commit 800df84200
2 changed files with 4 additions and 4 deletions

View File

@@ -452,7 +452,7 @@ MainWindow::MainWindow(const QDir &home) :
* Application Menus
*--------------------------------------------------------------------*/
QMenu *fileMenu = menuBar()->addMenu(tr("&Cyclist"));
QMenu *fileMenu = menuBar()->addMenu(tr("&Athlete"));
fileMenu->addAction(tr("&New..."), this, SLOT(newCyclist()), tr("Ctrl+N"));
fileMenu->addAction(tr("&Open..."), this, SLOT(openCyclist()), tr("Ctrl+O"));
fileMenu->addAction(tr("&Quit"), this, SLOT(close()), tr("Ctrl+Q"));