1
0
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:
2017-04-21 21:57:29 +02:00
parent b48652cb78
commit acc49d015e
4 changed files with 23 additions and 35 deletions

View File

@ -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);
}