@@ -5417,25 +5417,25 @@ void QgisApp::warnOlderProjectVersion(QString oldVersion)
5417
5417
if ( settings.value (" /qgis/warnOldProjectVersion" , QVariant (true )).toBool () )
5418
5418
{
5419
5419
QMessageBox::warning (NULL , tr (" Project file is older" ),
5420
- tr (" <p>This project file was saved by an older version "
5421
- " of QGIS. When saving this project file, "
5422
- " QGIS will update it to the latest version, "
5423
- " possibly rendering it useless for older versions of QGIS."
5424
- " <p>Even though QGIS developers try to maintain backwards "
5425
- " compatibility, some of the information from the old project "
5426
- " file might be lost. To improve the quality of QGIS, we appreciate "
5427
- " if you file a bug report at "
5428
- " <a href=http://svn.qgis.org/trac/wiki>http://svn.qgis.org/trac/wiki</a> "
5429
- " Be sure to include the old project file, and state the version of "
5430
- " QGIS you used to discover the error."
5431
- " <p>To remove this warning when opening an older project file, "
5432
- " check the box 'Warn me when opening a project file saved with an "
5433
- " older version of QGIS' "
5434
- " in the <tt>Settings:Options:General</tt> menu. "
5435
- " <p>Version of the project file: %1<br>"
5436
- " Current version of QGIS: %2" )
5420
+ (tr (" <p>This project file was saved by an older version of QGIS." ) +
5421
+ tr (" When saving this project file, QGIS will update it to the latest version, "
5422
+ " possibly rendering it useless for older versions of QGIS." ) +
5423
+ tr (" <p>Even though QGIS developers try to maintain backwards "
5424
+ " compatibility, some of the information from the old project "
5425
+ " file might be lost." ) +
5426
+ tr (" To improve the quality of QGIS, we appreciate "
5427
+ " if you file a bug report at %3." ) +
5428
+ tr (" Be sure to include the old project file, and state the version of "
5429
+ " QGIS you used to discover the error." ) +
5430
+ tr (" <p>To remove this warning when opening an older project file, "
5431
+ " uncheck the box '%5' in the %4 menu." ) +
5432
+ tr (" <p>Version of the project file: %1<br>Current version of QGIS: %2" ))
5437
5433
.arg (oldVersion)
5438
- .arg (QGis::qgisVersion));
5434
+ .arg (QGis::qgisVersion)
5435
+ .arg (" <a href=https://svn.qgis.org/trac/wiki>http://svn.qgis.org/trac/wiki</a> " )
5436
+ .arg (tr (" <tt>Settings:Options:General</tt>" , " Menu path to setting options" ))
5437
+ .arg (tr (" Warn me when opening a project file saved with an older version of QGIS" ))
5438
+ );
5439
5439
5440
5440
}
5441
5441
return ;
0 commit comments