Skip to content

Commit

Permalink
Fixes for translation.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7965 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
homann committed Jan 14, 2008
1 parent 4473aa8 commit c87b753
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 22 deletions.
36 changes: 18 additions & 18 deletions src/app/qgisapp.cpp
Expand Up @@ -5417,25 +5417,25 @@ void QgisApp::warnOlderProjectVersion(QString oldVersion)
if ( settings.value("/qgis/warnOldProjectVersion", QVariant(true)).toBool() )
{
QMessageBox::warning(NULL, tr("Project file is older"),
tr("<p>This project file was saved by an older version "
"of QGIS. When saving this project file, "
"QGIS will update it to the latest version, "
"possibly rendering it useless for older versions of QGIS."
"<p>Even though QGIS developers try to maintain backwards "
"compatibility, some of the information from the old project "
"file might be lost. To improve the quality of QGIS, we appreciate "
"if you file a bug report at "
"<a href=http://svn.qgis.org/trac/wiki>http://svn.qgis.org/trac/wiki</a> "
"Be sure to include the old project file, and state the version of "
"QGIS you used to discover the error."
"<p>To remove this warning when opening an older project file, "
"check the box 'Warn me when opening a project file saved with an "
"older version of QGIS' "
"in the <tt>Settings:Options:General</tt> menu. "
"<p>Version of the project file: %1<br>"
"Current version of QGIS: %2")
(tr("<p>This project file was saved by an older version of QGIS.") +
tr(" When saving this project file, QGIS will update it to the latest version, "
"possibly rendering it useless for older versions of QGIS.") +
tr("<p>Even though QGIS developers try to maintain backwards "
"compatibility, some of the information from the old project "
"file might be lost.") +
tr(" To improve the quality of QGIS, we appreciate "
"if you file a bug report at %3.") +
tr(" Be sure to include the old project file, and state the version of "
"QGIS you used to discover the error.") +
tr("<p>To remove this warning when opening an older project file, "
"uncheck the box '%5' in the %4 menu.") +
tr("<p>Version of the project file: %1<br>Current version of QGIS: %2"))
.arg(oldVersion)
.arg(QGis::qgisVersion));
.arg(QGis::qgisVersion)
.arg("<a href=https://svn.qgis.org/trac/wiki>http://svn.qgis.org/trac/wiki</a> ")
.arg(tr("<tt>Settings:Options:General</tt>", "Menu path to setting options"))
.arg(tr("Warn me when opening a project file saved with an older version of QGIS"))
);

}
return;
Expand Down
5 changes: 1 addition & 4 deletions src/plugins/copyright_label/pluginguibase.ui
Expand Up @@ -127,10 +127,7 @@ p, li { white-space: pre-wrap; }
<item row="1" column="2" >
<widget class="QTextEdit" name="txtCopyrightText" >
<property name="html" >
<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:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">&lt;span style=" font-size:14pt;">© QGIS 2008&lt;/span>&lt;/p>&lt;/body>&lt;/html></string>
<string>© QGIS 2008</string>
</property>
</widget>
</item>
Expand Down

0 comments on commit c87b753

Please sign in to comment.