Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix strings
  • Loading branch information
nyalldawson committed Jul 31, 2021
1 parent c7924b0 commit cdb04fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/providers/gpx/qgsgpxsourceselect.cpp
Expand Up @@ -46,17 +46,17 @@ void QgsGpxSourceSelect::addButtonClicked()
if ( mGpxPath.isEmpty() )
{
QMessageBox::information( this,
tr( "Add mesh layer" ),
tr( "Add GPX Layer" ),
tr( "No layers selected." ) );
return;
}

const QFileInfo fileInfo( mGpxPath );
if ( !fileInfo.isReadable() )
{
QMessageBox::warning( nullptr, tr( "GPX Loader" ),
QMessageBox::warning( nullptr, tr( "Add GPX Layer" ),
tr( "Unable to read the selected file.\n"
"Please reselect a valid file." ) );
"Please select a valid file." ) );
return;
}

Expand Down

0 comments on commit cdb04fa

Please sign in to comment.