Skip to content

Commit 7367d92

Browse files
author
homann
committed
Fixes for translation.
git-svn-id: http://svn.osgeo.org/qgis/trunk@7965 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent eee762d commit 7367d92

File tree

2 files changed

+19
-22
lines changed

2 files changed

+19
-22
lines changed

src/app/qgisapp.cpp

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5417,25 +5417,25 @@ void QgisApp::warnOlderProjectVersion(QString oldVersion)
54175417
if ( settings.value("/qgis/warnOldProjectVersion", QVariant(true)).toBool() )
54185418
{
54195419
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"))
54375433
.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+
);
54395439

54405440
}
54415441
return;

src/plugins/copyright_label/pluginguibase.ui

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,7 @@ p, li { white-space: pre-wrap; }
127127
<item row="1" column="2" >
128128
<widget class="QTextEdit" name="txtCopyrightText" >
129129
<property name="html" >
130-
<string>&lt;html>&lt;head>&lt;meta name="qrichtext" content="1" />&lt;style type="text/css">
131-
p, li { white-space: pre-wrap; }
132-
&lt;/style>&lt;/head>&lt;body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
133-
&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>
130+
<string>© QGIS 2008</string>
134131
</property>
135132
</widget>
136133
</item>

0 commit comments

Comments
 (0)