Merge pull request #477 from matthias-kuhn/pg-msg

Small string change: More verbose message in pg source select
This commit is contained in:
Werner Macho 2013-03-23 03:46:55 -07:00
commit e988b3501b

View File

@ -507,7 +507,7 @@ void QgsPgSourceSelect::on_btnConnect_clicked()
// Let user know we couldn't initialise the Postgres/PostGIS provider
QMessageBox::warning( this,
tr( "Postgres/PostGIS Provider" ),
tr( "Could not open the Postgres/PostGIS Provider" ) );
tr( "Could not open the Postgres/PostGIS Provider.\nCheck message log for possible errors." ) );
}
}
@ -529,7 +529,7 @@ void QgsPgSourceSelect::finishList()
if ( mTablesTreeView->model()->rowCount() == 0 )
QMessageBox::information( this,
tr( "Postgres/PostGIS Provider" ),
tr( "No accessible tables or views found. Check the message log for possible errors." ) );
tr( "No accessible tables or views found.\nCheck the message log for possible errors." ) );
}