Skip to content

Commit 749b754

Browse files
author
timlinux
committed
Cleanup some about text as suggested by users at the last hackfest
git-svn-id: http://svn.osgeo.org/qgis/trunk@15335 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 7e7f041 commit 749b754

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/app/qgisapp.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2668,21 +2668,21 @@ void QgisApp::about()
26682668
.arg( QGis::QGIS_VERSION )
26692669
.arg( QGis::QGIS_SVN_VERSION );
26702670

2671-
versionString += tr( "\nThis copy of QGIS has been built with GDAL/OGR %1." ).arg( GDAL_RELEASE_NAME );
2671+
versionString += tr( "\nGDAL/OGR Version: %1." ).arg( GDAL_RELEASE_NAME );
26722672

26732673
#ifdef HAVE_POSTGRESQL
2674-
versionString += tr( "\nThis copy of QGIS has been built with PostgreSQL support (%1)." ).arg( PG_VERSION );
2674+
versionString += tr( "\nPostgreSQL Client Version: %1." ).arg( PG_VERSION );
26752675
#else
2676-
versionString += tr( "\nThis copy of QGIS has been built without PostgreSQL support." );
2676+
versionString += tr( "\nNo PostgreSQL support." );
26772677
#endif
26782678

26792679
#ifdef HAVE_SPATIALITE
2680-
versionString += tr( "\nThis copy of QGIS has been built with SpatiaLite support (%1)." ).arg( spatialite_version() );
2680+
versionString += tr( "\nSpatiaLite Version: %1." ).arg( spatialite_version() );
26812681
#else
2682-
versionString += tr( "\nThis copy of QGIS has been built without SpatiaLite support." );
2682+
versionString += tr( "\nNo SpatiaLite support." );
26832683
#endif
26842684

2685-
versionString += tr( "\nThis copy of QGIS has been built with QWT %1." ).arg( QWT_VERSION_STR );
2685+
versionString += tr( "\nQWT Version: %1." ).arg( QWT_VERSION_STR );
26862686

26872687
#ifdef QGISDEBUG
26882688
versionString += tr( "\nThis copy of QGIS writes debugging output." );

0 commit comments

Comments
 (0)