summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-09-24 02:01:56 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-09-24 02:01:56 +0200
commit6f43ffbc94d2e37e95bfd23f061dcf3ddf88873c (patch)
tree61cef4cc4e156bb02ca2ba874930c1abb0aa1014 /src
parentadd a border to tab previews (diff)
parentFixed not found page to let translators work on it.. (diff)
downloadrekonq-6f43ffbc94d2e37e95bfd23f061dcf3ddf88873c.tar.xz
Merge branch 'i18n'
Diffstat (limited to 'src')
-rw-r--r--src/homepage.cpp2
-rw-r--r--src/webpage.cpp22
2 files changed, 19 insertions, 5 deletions
diff --git a/src/homepage.cpp b/src/homepage.cpp
index 8dccc3fd..103f018c 100644
--- a/src/homepage.cpp
+++ b/src/homepage.cpp
@@ -71,12 +71,14 @@ QString HomePage::rekonqHomePage()
return QString("");
}
+ QString imagesPath = QString("file://") + KGlobal::dirs()->findResourceDir("data", "rekonq/pics/bg.png") + QString("rekonq/pics");
QString speed = speedDial();
QString search = searchEngines();
QString lastBlock = ReKonfig::showLastVisitedSites() ? fillRecentHistory() : recentlyClosedTabs() ;
QString html = QString(QLatin1String(file.readAll()))
+ .arg(imagesPath)
.arg(search)
.arg(lastBlock)
.arg(speed)
diff --git a/src/webpage.cpp b/src/webpage.cpp
index d5d1cd7c..7408b490 100644
--- a/src/webpage.cpp
+++ b/src/webpage.cpp
@@ -224,15 +224,27 @@ QString WebPage::errorPage(QNetworkReply *reply)
kWarning() << "Couldn't open the notfound.html file";
return QString("");
}
- QString title = i18n("Error loading page: ") + reply->url().toString();
- QString imagePath = KIconLoader::global()->iconPath("rekonq", KIconLoader::NoGroup, false);
+ QString title = i18n("Error loading: ") + reply->url().path();
+
+ QString imagesPath = QString("file://") + KGlobal::dirs()->findResourceDir("data", "rekonq/pics/bg.png") + QString("rekonq/pics");
+ QString msg = "<h1>" + reply->errorString() + "</h1>";
+
+ msg += "<h2>" + i18n("When connecting to: ") + reply->url().toString() + "</h2>";
+ msg += "<ul><li>" + i18n("Check the address for errors such as <b>ww</b>.kde.org instead of <b>www</b>.kde.org");
+ msg += "</li><li>" + i18n("If the address is correct, try to check the network connection.") + "</li><li>" ;
+ msg += i18n("If your computer or network is protected by a firewall or proxy, make sure that rekonq is permitted to access the network.");
+ msg += "</li><li>" + i18n("Of course, if rekonq doesn't work properly, you can always say it's a programmer error ;)");
+ msg += "</li></ul><br/><br/>";
+ msg += "<input type=\"button\" id=\"reloadButton\" onClick=\"document.location.href='" + reply->url().path() + "';\" value=\"";
+ msg += i18n("Try Again") + "\" />";
+
QString html = QString(QLatin1String(file.readAll()))
.arg(title)
- .arg("file://" + imagePath)
- .arg(reply->errorString())
- .arg(reply->url().toString());
+ .arg(imagesPath)
+ .arg(msg)
+ ;
return html;
}