mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-06-27 11:39:16 +02:00
Use only the "Map" word for maps/atlases in the GUI
This commit is contained in:
@ -1162,8 +1162,8 @@ void GUI::showGraphGrids(bool show)
|
||||
|
||||
void GUI::loadMap()
|
||||
{
|
||||
QString fileName = QFileDialog::getOpenFileName(this, tr("Load Map/Atlas"),
|
||||
QString(), tr("Map/Atlas files (*.map *.tba *.tar)"));
|
||||
QString fileName = QFileDialog::getOpenFileName(this, tr("Load map"),
|
||||
QString(), tr("Map files (*.map *.tba *.tar)"));
|
||||
|
||||
if (fileName.isEmpty())
|
||||
return;
|
||||
@ -1180,7 +1180,7 @@ void GUI::loadMap()
|
||||
_clearMapCacheAction->setEnabled(true);
|
||||
a->activate(QAction::Trigger);
|
||||
} else {
|
||||
QString error = tr("Error loading map/atlas:") + "\n\n"
|
||||
QString error = tr("Error loading map:") + "\n\n"
|
||||
+ fileName + "\n\n" + _ml->errorString();
|
||||
QMessageBox::critical(this, APP_NAME, error);
|
||||
}
|
||||
|
Reference in New Issue
Block a user