mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 05:33:23 +00:00
Remove HTML from translated strings
In some strings that won't be possible as the translation needs to be aware of line breaks, etc. But for these strings it seems like the right thing to do. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
dae02d5fd2
commit
d818dc1a84
3 changed files with 12 additions and 12 deletions
|
@ -33,13 +33,13 @@ void UpdateManager::requestReceived(QNetworkReply *reply)
|
||||||
{
|
{
|
||||||
QMessageBox msgbox;
|
QMessageBox msgbox;
|
||||||
QString msgTitle = tr("Check for updates.");
|
QString msgTitle = tr("Check for updates.");
|
||||||
QString msgText = tr("<h3>Subsurface was unable to check for updates.</h3>");
|
QString msgText = "<h3>" + tr("Subsurface was unable to check for updates.") + "</h3>";
|
||||||
|
|
||||||
|
|
||||||
if (reply->error() != QNetworkReply::NoError) {
|
if (reply->error() != QNetworkReply::NoError) {
|
||||||
//Network Error
|
//Network Error
|
||||||
msgText = msgText + tr("<br/><b>The following error occurred:</b><br/>") + reply->errorString()
|
msgText = msgText + "<br/><b>" + tr("The following error occurred:") + "</b><br/>" + reply->errorString()
|
||||||
+ tr("<br/><br/><b>Please check your internet connection.</b>");
|
+ "<br/><br/><b>" + tr("Please check your internet connection.") + "</b>";
|
||||||
} else {
|
} else {
|
||||||
//No network error
|
//No network error
|
||||||
QString response(reply->readAll());
|
QString response(reply->readAll());
|
||||||
|
|
|
@ -93,13 +93,13 @@ void UserSurvey::requestReceived(QNetworkReply *reply)
|
||||||
{
|
{
|
||||||
QMessageBox msgbox;
|
QMessageBox msgbox;
|
||||||
QString msgTitle = tr("Submit User Survey.");
|
QString msgTitle = tr("Submit User Survey.");
|
||||||
QString msgText = tr("<h3>Subsurface was unable to submit the user survey.</h3>");
|
QString msgText = "<h3>" + tr("Subsurface was unable to submit the user survey.") + "</h3>";
|
||||||
|
|
||||||
|
|
||||||
if (reply->error() != QNetworkReply::NoError) {
|
if (reply->error() != QNetworkReply::NoError) {
|
||||||
//Network Error
|
//Network Error
|
||||||
msgText = msgText + tr("<br/><b>The following error occurred:</b><br/>") + reply->errorString()
|
msgText = msgText + "<br/><b>" + tr("The following error occurred:") + "</b><br/>" + reply->errorString()
|
||||||
+ tr("<br/><br/><b>Please check your internet connection.</b>");
|
+ "<br/><br/><b>" + tr("Please check your internet connection.") + "</b>";
|
||||||
} else {
|
} else {
|
||||||
//No network error
|
//No network error
|
||||||
QString response(reply->readAll());
|
QString response(reply->readAll());
|
||||||
|
|
|
@ -2856,17 +2856,17 @@ p, li { white-space: pre-wrap; }
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt-ui/updatemanager.cpp" line="36"/>
|
<location filename="../qt-ui/updatemanager.cpp" line="36"/>
|
||||||
<source><h3>Subsurface was unable to check for updates.</h3></source>
|
<source>Subsurface was unable to check for updates.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt-ui/updatemanager.cpp" line="41"/>
|
<location filename="../qt-ui/updatemanager.cpp" line="41"/>
|
||||||
<source><br/><b>The following error occurred:</b><br/></source>
|
<source>The following error occurred:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt-ui/updatemanager.cpp" line="42"/>
|
<location filename="../qt-ui/updatemanager.cpp" line="42"/>
|
||||||
<source><br/><br/><b>Please check your internet connection.</b></source>
|
<source>Please check your internet connection.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
@ -3017,17 +3017,17 @@ Language: %1</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt-ui/usersurvey.cpp" line="96"/>
|
<location filename="../qt-ui/usersurvey.cpp" line="96"/>
|
||||||
<source><h3>Subsurface was unable to submit the user survey.</h3></source>
|
<source>Subsurface was unable to submit the user survey.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt-ui/usersurvey.cpp" line="101"/>
|
<location filename="../qt-ui/usersurvey.cpp" line="101"/>
|
||||||
<source><br/><b>The following error occurred:</b><br/></source>
|
<source>The following error occurred:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../qt-ui/usersurvey.cpp" line="102"/>
|
<location filename="../qt-ui/usersurvey.cpp" line="102"/>
|
||||||
<source><br/><br/><b>Please check your internet connection.</b></source>
|
<source>Please check your internet connection.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
Loading…
Add table
Reference in a new issue