Skip to content

Commit

Permalink
news fixes, additions and translation string updates
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@10570 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 15, 2009
1 parent 6425daa commit a728aa8
Show file tree
Hide file tree
Showing 11 changed files with 441 additions and 449 deletions.
158 changes: 79 additions & 79 deletions src/app/qgisapp.cpp
Expand Up @@ -1853,87 +1853,87 @@ void QgisApp::about()
abt->setVersion( versionString );
QString whatsNew = "<html><body>" + tr( "Version" ) + " ";
whatsNew += QGis::QGIS_VERSION;
whatsNew += "<h2>" + tr("Whats new in Version 1.1.0?") + "</h2>"
+ "<p>"
+ tr("Please note that this is a release in our 'unstable' release series. As such it contains new features and extends the programmatic interface over QGIS 1.0.x. If stability and long term support is more important to you then cool new and untested features, we recommend that you use a copy of QGIS from our stable 1.0.x release series.")
+ "</p>"
+ "<p>"
+ tr("This release includes many bug fixes and enchancements over the QGIS 1.1.0 release. In addition we have added the following new features:")
+ "</p>"
+ "<ul>"
+ "<li>"
+ tr("Updates to translations.")
+ "</li>"
+ "<li>"
+ tr("Improvements and polishing of the Python plugin installer. Switch to the new official QGIS repository.")
+ "</li>"
+ "<li>"
+ tr("Improvements to themes so that plugins and other parts of the GUI are better supported when switching themes. Addition of the new GIS icon theme.")
+ "</li>"
+ "<li>"
+ tr("Improvements to Debian packaging to better support Debian standard requirements.")
+ "</li>"
+ "<li>"
+ tr("Support usb: as a GPS device under Linux.")
+ "</li>"
+ "<li>"
+ tr("WMS plugin now supports sorting and shows nested layers as a tree. WMS provider also support 24bit png images now. The WMS plugin also now provides a search interface for finding WMS servers.")
+ "</li>"
+ "<li>"
+ tr(" Added svg point symbols symbols from Matt Amos (with his permission).")
+ "</li>"
+ "<li>"
+ tr("Improvements to proxy support and support of proxy in WFS provider. The WFS provider now also shows progress information as it is fetching data.")
+ "</li>"
+ "<li>"
+ tr("Improvements the PostGIS client support. Massive speedups in PostGIS layer rendering can now be achieved by disabling SSL in the connection editor.")
+ "</li>"
+ "<li>"
+ tr("Mapserver Export improvements for continuous color support.")
+ "</li>"
+ "<li>"
+ tr("Added tools menu - the fTools plugins are now part of the core QGIS plugins and will always be installed by default.")
+ "</li>"
+ "<li>"
+ tr("Improvements to the print composer including object alignment options. It is also now possible to print maps as postcript raster or vector. For python programmers, the composer classes now have python bindings.")
+ "</li>"
+ "<li>"
+ tr("When using File - Save as image, the saved image is now georeferenced.")
+ "</li>"
+ "<li>"
+ tr("Projection selector now includes quick selection of recently used CRS's.")
+ "</li>"
+ "<li>"
+ tr("Continuous color renderer supports point symbols now too.")
+ "</li>"
+ "<li>"
+ tr("Improved CMake support for building against dependencies from OSGEO4W (Windows only). Addition of an XCode project of developers building under OSX.")
+ "</li>"
+ "<li>"
+ tr("Updates and cleanups to the GRASS toolbox.")
+ "</li>"
+ "<li>"
+ tr("Changes in open vector dialog to support all drivers available in ogr including database and protocol drivers. This brings with it support for SDE, Oracle Spatial, ESRI personal geodatabase and many more OGR supported data stores. Note that in some cases accessing these may require third party libraries to be on your system.")
+ "</li>"
+ "<li>"
+ tr("The middle mouse button can now be used for panning. ")
+ "</li>"
+ "<li>"
+ tr("A new, faster attribute table implementation.")
+ "</li>"
+ "<li>"
+ tr("Numerous cleanups to the user interface.")
+ "</li>"
+ "<li>"
+ tr("A new provider was added for spatiallite - a geodatabase-in-a-file implementation based on the SQLITE database.")
+ "</li>"
+ "<li>"
+ tr("Vector overlay support that can draw pie and bar charts over vector layers based on attribute data.")
+ "</li>"
whatsNew += "<h2>" + tr( "Whats new in Version 1.1.0?" ) + "</h2>"
+ "<p>"
+ tr( "Please note that this is a release in our 'unstable' release series. As such it contains new features and extends the programmatic interface over QGIS 1.0.x. If stability and long term support is more important to you then cool new and untested features, we recommend that you use a copy of QGIS from our stable 1.0.x release series." )
+ "</p>"
+ "<p>"
+ tr( "This release includes many bug fixes and enhancements over the QGIS 1.0.0 release. In addition we have added the following new features:" )
+ "</p>"
+ "<ul>"
+ "<li>"
+ tr( "Updates to translations." )
+ "</li>"
+ "<li>"
+ tr( "Improvements and polishing of the Python plugin installer. Switch to the new official QGIS repository." )
+ "</li>"
+ "<li>"
+ tr( "Improvements to themes so that plugins and other parts of the GUI are better supported when switching themes. Addition of the new GIS icon theme." )
+ "</li>"
+ "<li>"
+ tr( "Improvements to Debian packaging to better support Debian standard requirements." )
+ "</li>"
+ "<li>"
+ tr( "Support usb: as a GPS device under Linux." )
+ "</li>"
+ "<li>"
+ tr( "WMS plugin now supports sorting and shows nested layers as a tree. WMS provider also support 24bit png images now. The WMS plugin also now provides a search interface for finding WMS servers." )
+ "</li>"
+ "<li>"
+ tr( "Added svg point symbols from Matt Amos (with his permission)." )
+ "</li>"
+ "<li>"
+ tr( "Improvements to proxy support and support of proxy in WFS provider. The WFS provider now also shows progress information as it is fetching data." )
+ "</li>"
+ "<li>"
+ tr( "Improvements to PostGIS client support. Massive speedups in PostGIS layer rendering can now be achieved by disabling SSL in the connection editor. Support for usage of ctid column as primary key (softens the requirement for integer primary keys)" )
+ "</li>"
+ "<li>"
+ tr( "Mapserver Export improvements for continuous color support." )
+ "</li>"
+ "<li>"
+ tr( "Added tools menu - the fTools plugin is now part of the core QGIS plugins and will always be installed by default." )
+ "</li>"
+ "<li>"
+ tr( "Improvements to the print composer including object alignment options. It is also now possible to print maps as postcript raster or vector. For python programmers, the composer classes now have python bindings." )
+ "</li>"
+ "<li>"
+ tr( "When using File - Save as image, the saved image is now georeferenced." )
+ "</li>"
+ "<li>"
+ tr( "Projection selector now includes quick selection of recently used CRS's." )
+ "</li>"
+ "<li>"
+ tr( "Continuous color renderer supports point symbols now too." )
+ "</li>"
+ "<li>"
+ tr( "Improved CMake support for building against dependencies from OSGEO4W (Windows only). Addition of an XCode project of developers building under OSX." )
+ "</li>"
+ "<li>"
+ tr( "Updates and cleanups to the GRASS toolbox." )
+ "</li>"
+ "<li>"
+ tr( "Changes in open vector dialog to support all drivers available in ogr including database and protocol drivers. This brings with it support for SDE, Oracle Spatial, ESRI personal geodatabase and many more OGR supported data stores. Note that in some cases accessing these may require third party libraries to be on your system." )
+ "</li>"
+ "<li>"
+ tr( "The middle mouse button can now be used for panning. " )
+ "</li>"
+ "<li>"
+ tr( "A new, faster attribute table implementation." )
+ "</li>"
+ "<li>"
+ tr( "Numerous cleanups to the user interface." )
+ "</li>"
+ "<li>"
+ tr( "A new provider was added for spatiallite - a geodatabase-in-a-file implementation based on the SQLITE database." )
+ "</li>"
+ "<li>"
+ tr( "Vector overlay support that can draw pie and bar charts over vector layers based on attribute data." )
+ "</li>"
//+ "<li>"
//+ tr("X")
//+ "</li>"
+ "</ul></body></html>";
+ "</ul></body></html>";

abt->setWhatsNew( whatsNew );

Expand Down Expand Up @@ -5213,7 +5213,7 @@ void QgisApp::activateDeactivateLayerRelatedActions( QgsMapLayer* layer )
mActionSplitFeatures->setEnabled( false );
if ( vlayer->isEditable() && dprovider->capabilities() & QgsVectorDataProvider::ChangeGeometries )
{
mActionMoveVertex->setEnabled( true );
mActionMoveVertex->setEnabled( true );
}
return;
}
Expand Down
4 changes: 2 additions & 2 deletions src/app/qgsspatialitesourceselect.cpp
Expand Up @@ -291,7 +291,7 @@ void QgsSpatiaLiteSourceSelect::populateConnectionList()
{
// retrieving the SQLite DB name and full path
QString text = *it + tr( " @ " );
text += settings.value( *it + tr( "/sqlitepath" ), "###unknown###" ).toString();
text += settings.value( *it + "/sqlitepath", "###unknown###" ).toString();

cmbConnections->addItem( text );
++it;
Expand Down Expand Up @@ -365,7 +365,7 @@ void QgsSpatiaLiteSourceSelect::deleteConnection()
subKey.truncate( idx );

QString key = "/SpatiaLite/connections/" + subKey;
QString msg = tr( "Are you sure you want to remove the " ) + subKey + tr( " connection and all associated settings?" );
QString msg = tr( "Are you sure you want to remove the %1 connection and all associated settings?" ).arg( subKey );
QMessageBox::StandardButton result =
QMessageBox::information( this, tr( "Confirm Delete" ), msg, QMessageBox::Ok | QMessageBox::Cancel );
if ( result == QMessageBox::Ok )
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/copyright_label/pluginguibase.ui
Expand Up @@ -158,7 +158,7 @@ p, li { white-space: pre-wrap; }
<string>&lt;html>&lt;head>&lt;meta name="qrichtext" content="1" />&lt;style type="text/css">
p, li { white-space: pre-wrap; }
&lt;/style>&lt;/head>&lt;body style=" font-family:'Verdana'; font-size:10pt; font-weight:400; font-style:normal;">
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© QGIS 2008&lt;/p>&lt;/body>&lt;/html></string>
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© QGIS 2009&lt;/p>&lt;/body>&lt;/html></string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/diagram_overlay/qgssvgdiagramfactorywidget.cpp
Expand Up @@ -179,7 +179,7 @@ int QgsSVGDiagramFactoryWidget::addDirectoryToPreview( const QString& path )
for ( ; fileIt != fileList.constEnd(); ++fileIt )
{

progress.setLabelText( tr( "Creating icon for file " ) + fileIt->fileName() );
progress.setLabelText( tr( "Creating icon for file %1" ).arg( fileIt->fileName() ) );
progress.setValue( counter );
QCoreApplication::processEvents();
if ( progress.wasCanceled() )
Expand Down
15 changes: 5 additions & 10 deletions src/plugins/georeferencer/qgspointdialog.cpp
Expand Up @@ -302,9 +302,7 @@ bool QgsPointDialog::generateWorldFileAndWarp()
if ( QFile::exists( worldFileName ) )
{
int r = QMessageBox::question( this, tr( "World file exists" ),
tr( "<p>The selected file already seems to have a " ) +
tr( "world file! Do you want to replace it with the " ) +
tr( "new world file?</p>" ),
tr( "<p>The selected file already seems to have a world file! Do you want to replace it with the new world file?</p>" ),
QMessageBox::Yes | QMessageBox::Default,
QMessageBox::No | QMessageBox::Escape );
if ( r == QMessageBox::No )
Expand Down Expand Up @@ -438,9 +436,8 @@ bool QgsPointDialog::generateWorldFileAndWarp()
else
{
QMessageBox::critical( this, tr( "Not implemented!" ),
tr( "<p>The " ) +
cmbTransformType->currentText() +
tr( " transform is not yet supported.</p>" ) );
tr( "<p>The %1 transform is not yet supported.</p>" )
.arg( cmbTransformType->currentText() ) );
return false;
}
}
Expand Down Expand Up @@ -480,7 +477,7 @@ bool QgsPointDialog::generateWorldFileAndWarp()
if ( !file.open( QIODevice::WriteOnly ) )
{
QMessageBox::critical( this, tr( "Error" ),
tr( "Could not write to " ) + worldFileName );
tr( "Could not write to %1" ).arg( worldFileName ) );
return false;
}
QTextStream stream( &file );
Expand Down Expand Up @@ -667,9 +664,7 @@ void QgsPointDialog::on_pbnSelectRaster_clicked()
if ( QFile::exists( worldfile ) )
{
int r = QMessageBox::question( this, tr( "World file exists" ),
tr( "<p>The selected file already seems to have a " ) +
tr( "world file! Do you want to replace it with the " ) +
tr( "new world file?</p>" ),
tr( "<p>The selected file already seems to have a world file! Do you want to replace it with the new world file?</p>" ),
QMessageBox::Yes | QMessageBox::Default,
QMessageBox::No | QMessageBox::Escape );
if ( r == QMessageBox::No )
Expand Down

0 comments on commit a728aa8

Please sign in to comment.