Skip to content

Commit c586171

Browse files
committedMar 12, 2018
fix string: followup 504e50d
1 parent 504e50d commit c586171

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/gui/qgsmanageconnectionsdialog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ bool QgsManageConnectionsDialog::populateConnections()
366366
if ( root.tagName() != QLatin1String( "qgsXYZTilesConnections" ) )
367367
{
368368
QMessageBox::information( this, tr( "Loading Connections" ),
369-
tr( "The file is not a Tiles XYZ connections exchange file." ) );
369+
tr( "The file is not a XYZ Tiles connections exchange file." ) );
370370
return false;
371371
}
372372
break;
@@ -1278,7 +1278,7 @@ void QgsManageConnectionsDialog::loadXYZTilesConnections( const QDomDocument &do
12781278
if ( root.tagName() != QLatin1String( "qgsXYZTilesConnections" ) )
12791279
{
12801280
QMessageBox::information( this, tr( "Loading Connections" ),
1281-
tr( "The file is not a Tiles XYZ connections exchange file." ) );
1281+
tr( "The file is not a XYZ Tiles connections exchange file." ) );
12821282
return;
12831283
}
12841284

0 commit comments

Comments
 (0)
Please sign in to comment.