Skip to content

Commit 25dd629

Browse files
author
homann
committedJan 24, 2008
Indentation and remove untranslateable empty string
git-svn-id: http://svn.osgeo.org/qgis/trunk@8039 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 4392c31 commit 25dd629

File tree

1 file changed

+51
-51
lines changed

1 file changed

+51
-51
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1484,69 +1484,69 @@ void QgisApp::about()
14841484
versionString += ")";
14851485
#ifdef HAVE_POSTGRESQL
14861486

1487-
versionString += tr(" with PostgreSQL support");
1487+
versionString += tr(" with PostgreSQL support");
14881488
#else
14891489

1490-
versionString += tr(" (no PostgreSQL support)");
1490+
versionString += tr(" (no PostgreSQL support)");
14911491
#endif
1492-
versionString += tr("\nCompiled against Qt ") + QT_VERSION_STR
1493-
+ tr(", running against Qt ") + qVersion();
1492+
versionString += tr("\nCompiled against Qt ") + QT_VERSION_STR
1493+
+ tr(", running against Qt ") + qVersion();
14941494

14951495
#ifdef WIN32
1496-
// special version stuff for windows (if required)
1497-
// versionString += "\nThis is a Windows preview release - not for production use";
1496+
// special version stuff for windows (if required)
1497+
// versionString += "\nThis is a Windows preview release - not for production use";
14981498
#endif
14991499

1500-
abt->setVersion(versionString);
1501-
QString urls = "<p align=\"center\">" +
1502-
tr("Quantum GIS is licensed under the GNU General Public License") +
1503-
"</p><p align=\"center\">" +
1504-
tr("http://www.gnu.org/licenses") +
1505-
"</p>";
1506-
abt->setURLs(urls);
1507-
QString watsNew = "<html><body>" + tr("Version") + " ";
1508-
watsNew += QGis::qgisVersion;
1509-
watsNew += "<h3>" + tr("New features") + "</h3>";
1510-
watsNew += "<ul><li>"
1511-
+ tr("Python bindings - This is the major focus of this release "
1512-
"it is now possible to create plugins using python. It is also "
1513-
"possible to create GIS enabled applications written in python "
1514-
"that use the QGIS libraries."
1515-
)
1516-
+ "</li>"
1517-
+ "<li>"
1518-
+ tr("Removed automake build system - QGIS now needs CMake for compilation.")
1519-
+ "</li>"
1520-
+ "<li>"
1521-
+ tr("Many new GRASS tools added (with thanks to http://faunalia.it/)")
1522-
+ "</li>"
1523-
+ "<li>"
1524-
+ tr("Map Composer updates")
1525-
+ "</li>"
1526-
+ "<li>"
1527-
+ tr("Crash fix for 2.5D shapefiles")
1528-
+ "</li>"
1529-
+ "<li>"
1530-
+ tr("The QGIS libraries have been refactored and better organised.")
1531-
+ "</li>"
1532-
+ "<li>"
1533-
+ tr("Improvements to the GeoReferencer")
1534-
+ "</li>"
1535-
+ "<li>"
1536-
+ tr("Added locale options to options dialog.")
1537-
+ "</li>"
1500+
abt->setVersion(versionString);
1501+
QString urls = "<p align=\"center\">" +
1502+
tr("Quantum GIS is licensed under the GNU General Public License") +
1503+
"</p><p align=\"center\">" +
1504+
tr("http://www.gnu.org/licenses") +
1505+
"</p>";
1506+
abt->setURLs(urls);
1507+
QString watsNew = "<html><body>" + tr("Version") + " ";
1508+
watsNew += QGis::qgisVersion;
1509+
watsNew += "<h3>" + tr("New features") + "</h3>";
1510+
watsNew += "<ul><li>"
1511+
+ tr("Python bindings - This is the major focus of this release "
1512+
"it is now possible to create plugins using python. It is also "
1513+
"possible to create GIS enabled applications written in python "
1514+
"that use the QGIS libraries."
1515+
)
1516+
+ "</li>"
1517+
+ "<li>"
1518+
+ tr("Removed automake build system - QGIS now needs CMake for compilation.")
1519+
+ "</li>"
1520+
+ "<li>"
1521+
+ tr("Many new GRASS tools added (with thanks to http://faunalia.it/)")
1522+
+ "</li>"
1523+
+ "<li>"
1524+
+ tr("Map Composer updates")
1525+
+ "</li>"
1526+
+ "<li>"
1527+
+ tr("Crash fix for 2.5D shapefiles")
1528+
+ "</li>"
1529+
+ "<li>"
1530+
+ tr("The QGIS libraries have been refactored and better organised.")
1531+
+ "</li>"
1532+
+ "<li>"
1533+
+ tr("Improvements to the GeoReferencer")
1534+
+ "</li>"
1535+
+ "<li>"
1536+
+ tr("Added locale options to options dialog.")
1537+
+ "</li>"
15381538
//+ "<li>"
1539-
//+ tr("")
1539+
//+ tr("X")
15401540
//+ "</li>"
1541-
+ "</ul></body></html>";
1541+
+ "</ul></body></html>";
15421542

15431543

1544-
abt->setWhatsNew(watsNew);
1544+
abt->setWhatsNew(watsNew);
15451545

1546-
// add the available plugins to the list
1547-
QString providerInfo = "<b>" + tr("Available Data Provider Plugins") + "</b><br>";
1548-
abt->setPluginInfo(providerInfo + QgsProviderRegistry::instance()->pluginList(true));
1549-
QApplication::restoreOverrideCursor();
1546+
// add the available plugins to the list
1547+
QString providerInfo = "<b>" + tr("Available Data Provider Plugins") + "</b><br>";
1548+
abt->setPluginInfo(providerInfo + QgsProviderRegistry::instance()->pluginList(true));
1549+
QApplication::restoreOverrideCursor();
15501550
}
15511551
abt->show();
15521552
abt->raise();

0 commit comments

Comments
 (0)
Please sign in to comment.