put webview in own class; refs #115
This commit is contained in:
+76
-73
@@ -19,8 +19,6 @@
|
|||||||
#include <QtGui/QPrinter>
|
#include <QtGui/QPrinter>
|
||||||
#include <QtGui/QPrintDialog>
|
#include <QtGui/QPrintDialog>
|
||||||
#include <QtGui/QPrintPreviewDialog>
|
#include <QtGui/QPrintPreviewDialog>
|
||||||
#include <QtWebKit/QWebPage>
|
|
||||||
#include <QtWebKit/QWebView>
|
|
||||||
#include <QtWebKit/QWebFrame>
|
#include <QtWebKit/QWebFrame>
|
||||||
#include <QtWebKit/QWebHistory>
|
#include <QtWebKit/QWebHistory>
|
||||||
#include <QtNetwork/QNetworkReply>
|
#include <QtNetwork/QNetworkReply>
|
||||||
@@ -35,17 +33,16 @@
|
|||||||
#include <errorlog.hxx>
|
#include <errorlog.hxx>
|
||||||
#include <downloadmanager.hxx>
|
#include <downloadmanager.hxx>
|
||||||
#include <authentication.hxx>
|
#include <authentication.hxx>
|
||||||
#include <webpage.hxx>
|
#include <webview.hxx>
|
||||||
#include <settings.hxx>
|
#include <settings.hxx>
|
||||||
#include <editbookmarks.hxx>
|
#include <editbookmarks.hxx>
|
||||||
#include <pluginfactory.hxx>
|
|
||||||
#include <temporaryfile.hxx>
|
#include <temporaryfile.hxx>
|
||||||
#include <saveorrun.hxx>
|
#include <saveorrun.hxx>
|
||||||
#include <sslclientnetworkmanager.hxx>
|
|
||||||
#include <proxyface/proxy.hxx>
|
#include <proxyface/proxy.hxx>
|
||||||
|
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
#include <QtCore/QDebug>
|
#include <QtCore/QDebug>
|
||||||
#ifndef LOG
|
#ifndef LOG
|
||||||
@@ -63,7 +60,8 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
|||||||
Settings::MimeTypes mimeTypes = Settings::MimeTypes(),
|
Settings::MimeTypes mimeTypes = Settings::MimeTypes(),
|
||||||
bool kiosk = false, bool login = true, bool quirks=true):
|
bool kiosk = false, bool login = true, bool quirks=true):
|
||||||
_url(0), _find(new ButtonLineEdit),
|
_url(0), _find(new ButtonLineEdit),
|
||||||
_kiosk(kiosk),
|
_kiosk(kiosk),
|
||||||
|
_downloadManager(new DownloadManager),
|
||||||
_settings(mimeTypes, this, settings, !kiosk),
|
_settings(mimeTypes, this, settings, !kiosk),
|
||||||
_errorLog(this), _logincertificate(this),
|
_errorLog(this), _logincertificate(this),
|
||||||
_proxy("http://swisssign.com", this),
|
_proxy("http://swisssign.com", this),
|
||||||
@@ -167,16 +165,16 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
|||||||
assert(connect(&_networkManager, SIGNAL(finished(QNetworkReply*)),
|
assert(connect(&_networkManager, SIGNAL(finished(QNetworkReply*)),
|
||||||
SLOT(finished(QNetworkReply*))));
|
SLOT(finished(QNetworkReply*))));
|
||||||
assert(connect(&_networkManager, SIGNAL(created(QNetworkReply*)),
|
assert(connect(&_networkManager, SIGNAL(created(QNetworkReply*)),
|
||||||
&_downloadManager, SLOT(add(QNetworkReply*))));
|
_downloadManager.get(), SLOT(add(QNetworkReply*))));
|
||||||
assert(connect(&_downloadManager, SIGNAL(progress(qint64, qint64)),
|
assert(connect(_downloadManager.get(), SIGNAL(progress(qint64, qint64)),
|
||||||
SLOT(progress(qint64, qint64))));
|
SLOT(progress(qint64, qint64))));
|
||||||
assert(connect(&_downloadManager, SIGNAL(started()),
|
assert(connect(_downloadManager.get(), SIGNAL(started()),
|
||||||
SLOT(started())));
|
SLOT(started())));
|
||||||
assert(connect(&_downloadManager, SIGNAL(finished()),
|
assert(connect(_downloadManager.get(), SIGNAL(finished()),
|
||||||
SLOT(finished())));
|
SLOT(finished())));
|
||||||
assert(connect(&_downloadManager, SIGNAL(error(QString)),
|
assert(connect(_downloadManager.get(), SIGNAL(error(QString)),
|
||||||
SLOT(downloadError(QString))));
|
SLOT(downloadError(QString))));
|
||||||
assert(connect(&_downloadManager, SIGNAL(metaDataChanged(QNetworkReply*)),
|
assert(connect(_downloadManager.get(), SIGNAL(metaDataChanged(QNetworkReply*)),
|
||||||
SLOT(metaDataChanged(QNetworkReply*))));
|
SLOT(metaDataChanged(QNetworkReply*))));
|
||||||
assert(connect(&_settings, SIGNAL(newSettings()), SLOT(newSettings())));
|
assert(connect(&_settings, SIGNAL(newSettings()), SLOT(newSettings())));
|
||||||
newSettings();
|
newSettings();
|
||||||
@@ -223,14 +221,69 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
QWebView* newTab() {
|
WebView* newTab() {
|
||||||
QWebView* browser(new QWebView);
|
WebView* browser(new WebView);
|
||||||
browser->setPage(new WebPage(this, browser));
|
newTab(browser);
|
||||||
browser->page()->setPluginFactory(new PluginFactory);
|
return browser;
|
||||||
browser->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);
|
}
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
void closeEvent(QCloseEvent *event) {
|
||||||
|
LOG;
|
||||||
|
if (!_kiosk && !_startUrl && _settings.flag("SaveWindowState")
|
||||||
|
&& _settings())
|
||||||
|
saveWin();
|
||||||
|
QMainWindow::closeEvent(event);
|
||||||
|
QApplication::exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Q_SLOTS:
|
||||||
|
|
||||||
|
void load() {
|
||||||
|
LOG;
|
||||||
|
if (qobject_cast<QComboBox*>(_url))
|
||||||
|
load(qobject_cast<QComboBox*>(_url)->currentText());
|
||||||
|
else
|
||||||
|
load(qobject_cast<QLineEdit*>(_url)->text());
|
||||||
|
}
|
||||||
|
|
||||||
|
void load(QString page) {
|
||||||
|
_settings.replaceSearchEngine(page);
|
||||||
|
if (QUrl(page).scheme()=="") page = "http://"+page;
|
||||||
|
load(QUrl(page));
|
||||||
|
}
|
||||||
|
|
||||||
|
void load(QUrl page, QWebView* view=0) {
|
||||||
|
LOG<<page.toString();
|
||||||
|
statusBar()->showMessage(tr("Checking: %1").arg(page.toString()));
|
||||||
|
if (!check(page)) {
|
||||||
|
LOG<<"########## BLACK LISTED IGNORED ##########";
|
||||||
|
statusBar()->showMessage(tr("Forbidden: %1").arg(page.toString()));
|
||||||
|
QMessageBox::warning(this, tr("Access Denied"),
|
||||||
|
tr("<p>Access denied due to security"
|
||||||
|
" considerations.</p><p>You are not"
|
||||||
|
" allowed to connect to %1.")
|
||||||
|
.arg(page.toString()));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
statusBar()->showMessage(tr("Reading: %1").arg(page.toString()));
|
||||||
|
if (!page.isValid()) {
|
||||||
|
statusBar()->showMessage(tr("Illegal URL: %1").arg(page.errorString()));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!view) view=qobject_cast<QWebView*>(_tabs->currentWidget());
|
||||||
|
view->load(page);
|
||||||
|
}
|
||||||
|
|
||||||
|
void newTab(WebView* browser) {
|
||||||
browser->page()->setNetworkAccessManager(&_networkManager);
|
browser->page()->setNetworkAccessManager(&_networkManager);
|
||||||
browser->page()->setForwardUnsupportedContent(true);
|
assert(connect(&_networkManager, SIGNAL(finished(QNetworkReply*)),
|
||||||
|
SLOT(finished(QNetworkReply*))));
|
||||||
_url->setFocus();
|
_url->setFocus();
|
||||||
|
// WebView
|
||||||
|
assert(connect(browser, SIGNAL(newView(WebView*)),
|
||||||
|
SLOT(newTab(WebView*))));
|
||||||
// QWebView
|
// QWebView
|
||||||
assert(connect(browser, SIGNAL(urlChanged(const QUrl&)),
|
assert(connect(browser, SIGNAL(urlChanged(const QUrl&)),
|
||||||
SLOT(urlChanged(const QUrl&))));
|
SLOT(urlChanged(const QUrl&))));
|
||||||
@@ -486,56 +539,6 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
|||||||
SLOT(sslErrors(QNetworkReply*, const QList<QSslError>&))));
|
SLOT(sslErrors(QNetworkReply*, const QList<QSslError>&))));
|
||||||
_tabs->setCurrentIndex(_tabs->addTab(browser, tr("New Tab")));
|
_tabs->setCurrentIndex(_tabs->addTab(browser, tr("New Tab")));
|
||||||
_tabs->setTabsClosable(_tabs->count()>1);
|
_tabs->setTabsClosable(_tabs->count()>1);
|
||||||
return browser;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected:
|
|
||||||
|
|
||||||
void closeEvent(QCloseEvent *event) {
|
|
||||||
LOG;
|
|
||||||
if (!_kiosk && !_startUrl && _settings.flag("SaveWindowState")
|
|
||||||
&& _settings())
|
|
||||||
saveWin();
|
|
||||||
QMainWindow::closeEvent(event);
|
|
||||||
QApplication::exit(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Q_SLOTS:
|
|
||||||
|
|
||||||
void load() {
|
|
||||||
LOG;
|
|
||||||
if (qobject_cast<QComboBox*>(_url))
|
|
||||||
load(qobject_cast<QComboBox*>(_url)->currentText());
|
|
||||||
else
|
|
||||||
load(qobject_cast<QLineEdit*>(_url)->text());
|
|
||||||
}
|
|
||||||
|
|
||||||
void load(QString page) {
|
|
||||||
_settings.replaceSearchEngine(page);
|
|
||||||
if (QUrl(page).scheme()=="") page = "http://"+page;
|
|
||||||
load(QUrl(page));
|
|
||||||
}
|
|
||||||
|
|
||||||
void load(QUrl page, QWebView* view=0) {
|
|
||||||
LOG<<page.toString();
|
|
||||||
statusBar()->showMessage(tr("Checking: %1").arg(page.toString()));
|
|
||||||
if (!check(page)) {
|
|
||||||
LOG<<"########## BLACK LISTED IGNORED ##########";
|
|
||||||
statusBar()->showMessage(tr("Forbidden: %1").arg(page.toString()));
|
|
||||||
QMessageBox::warning(this, tr("Access Denied"),
|
|
||||||
tr("<p>Access denied due to security"
|
|
||||||
" considerations.</p><p>You are not"
|
|
||||||
" allowed to connect to %1.")
|
|
||||||
.arg(page.toString()));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
statusBar()->showMessage(tr("Reading: %1").arg(page.toString()));
|
|
||||||
if (!page.isValid()) {
|
|
||||||
statusBar()->showMessage(tr("Illegal URL: %1").arg(page.errorString()));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!view) view=qobject_cast<QWebView*>(_tabs->currentWidget());
|
|
||||||
view->load(page);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void newSettings() {
|
void newSettings() {
|
||||||
@@ -685,7 +688,7 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
|||||||
LOG;
|
LOG;
|
||||||
for (int i(0); i<_tabs->count(); ++i)
|
for (int i(0); i<_tabs->count(); ++i)
|
||||||
qobject_cast<QWebView*>(_tabs->widget(i))->stop();
|
qobject_cast<QWebView*>(_tabs->widget(i))->stop();
|
||||||
_downloadManager.abort();
|
_downloadManager->abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
void on_actionClearLocation_triggered() {
|
void on_actionClearLocation_triggered() {
|
||||||
@@ -1229,7 +1232,7 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
|||||||
|
|
||||||
void unsupportedContent(QNetworkReply* reply) {
|
void unsupportedContent(QNetworkReply* reply) {
|
||||||
LOG<<reply->header(QNetworkRequest::ContentTypeHeader).toString();
|
LOG<<reply->header(QNetworkRequest::ContentTypeHeader).toString();
|
||||||
LOG<<"Status:"<<_downloadManager.networkError(reply->error());
|
LOG<<"Status:"<<_downloadManager->networkError(reply->error());
|
||||||
QList<QNetworkReply::RawHeaderPair> rh(reply->rawHeaderPairs());
|
QList<QNetworkReply::RawHeaderPair> rh(reply->rawHeaderPairs());
|
||||||
for(QList<QNetworkReply::RawHeaderPair>::iterator it(rh.begin());
|
for(QList<QNetworkReply::RawHeaderPair>::iterator it(rh.begin());
|
||||||
it!=rh.end(); ++it) {
|
it!=rh.end(); ++it) {
|
||||||
@@ -1278,12 +1281,12 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
|||||||
LOG<<"Content-Type:"<<reply->header(QNetworkRequest::ContentTypeHeader)
|
LOG<<"Content-Type:"<<reply->header(QNetworkRequest::ContentTypeHeader)
|
||||||
.toString();
|
.toString();
|
||||||
LOG<<"Content-Disposition:"<<reply->rawHeader("Content-Disposition");
|
LOG<<"Content-Disposition:"<<reply->rawHeader("Content-Disposition");
|
||||||
LOG<<"Status:"<<_downloadManager.networkError(reply->error());
|
LOG<<"Status:"<<_downloadManager->networkError(reply->error());
|
||||||
LOG<<"URL:"<<reply->url().toString();
|
LOG<<"URL:"<<reply->url().toString();
|
||||||
LOG<<"File:"<<reply->url().toLocalFile();
|
LOG<<"File:"<<reply->url().toLocalFile();
|
||||||
LOG<<"Path:"<<reply->url().path();
|
LOG<<"Path:"<<reply->url().path();
|
||||||
if (reply->error()!=QNetworkReply::NoError) {
|
if (reply->error()!=QNetworkReply::NoError) {
|
||||||
LOG<<"Error:"<<_downloadManager.networkError(reply->error());
|
LOG<<"Error:"<<_downloadManager->networkError(reply->error());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QString filename
|
QString filename
|
||||||
@@ -1555,7 +1558,7 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
|||||||
bool _kiosk;
|
bool _kiosk;
|
||||||
QPrinter _printer;
|
QPrinter _printer;
|
||||||
SslClientAuthNetworkAccessManager _networkManager;
|
SslClientAuthNetworkAccessManager _networkManager;
|
||||||
DownloadManager _downloadManager;
|
std::shared_ptr<DownloadManager> _downloadManager;
|
||||||
typedef std::map<QProcess*, TemporaryFile*> DownloadProcesses;
|
typedef std::map<QProcess*, TemporaryFile*> DownloadProcesses;
|
||||||
DownloadProcesses _downloadProcesses;
|
DownloadProcesses _downloadProcesses;
|
||||||
Settings _settings;
|
Settings _settings;
|
||||||
|
|||||||
@@ -5,6 +5,9 @@
|
|||||||
// 1 2 3 4 5 6 7 8
|
// 1 2 3 4 5 6 7 8
|
||||||
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||||||
|
|
||||||
|
#ifndef __DOWNLOAD_MANAGER_HXX
|
||||||
|
#define __DOWNLOAD_MANAGER_HXX
|
||||||
|
|
||||||
#include <QtNetwork/QNetworkReply>
|
#include <QtNetwork/QNetworkReply>
|
||||||
#include <QtNetwork/QSslError>
|
#include <QtNetwork/QSslError>
|
||||||
#include <map>
|
#include <map>
|
||||||
@@ -277,3 +280,4 @@ class DownloadManager: public QObject {
|
|||||||
|
|
||||||
Downloads _downloads;
|
Downloads _downloads;
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|||||||
@@ -16,10 +16,6 @@
|
|||||||
#define LOG qDebug()<<__PRETTY_FUNCTION__
|
#define LOG qDebug()<<__PRETTY_FUNCTION__
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define foreach(A, B) \
|
|
||||||
auto foreach_loopvar_##A(B); \
|
|
||||||
for (auto A(foreach_loopvar_##A.begin()); A!=foreach_loopvar_##A.end(); ++A)
|
|
||||||
|
|
||||||
class PluginFactory: public QWebPluginFactory {
|
class PluginFactory: public QWebPluginFactory {
|
||||||
public:
|
public:
|
||||||
PluginFactory(QObject* p=0): QWebPluginFactory(p) {
|
PluginFactory(QObject* p=0): QWebPluginFactory(p) {
|
||||||
|
|||||||
+3
-4
@@ -1,7 +1,6 @@
|
|||||||
QT += webkit network gui
|
QT += webkit network gui
|
||||||
CONFIG += no_keywords
|
|
||||||
QMAKE_LIBS += -lproxyface -lpcscxx -lssl -lcrypto
|
QMAKE_LIBS += -lproxyface -lpcscxx -lssl -lcrypto
|
||||||
QMAKE_CXXFLAGS += -Wno-parentheses -Wno-unused-parameter
|
QMAKE_CXXFLAGS += -Wno-parentheses -Wno-unused-parameter -std=c++0x
|
||||||
|
|
||||||
unix {
|
unix {
|
||||||
!macx {
|
!macx {
|
||||||
@@ -32,11 +31,11 @@ TRANSLATIONS = @PACKAGENAME@_en.ts \
|
|||||||
@PACKAGENAME@_fr.ts \
|
@PACKAGENAME@_fr.ts \
|
||||||
@PACKAGENAME@_it.ts
|
@PACKAGENAME@_it.ts
|
||||||
|
|
||||||
SOURCES = main.cxx webpage.cxx
|
SOURCES = main.cxx
|
||||||
|
|
||||||
HEADERS = browser.hxx smartcardauth.hxx pinentry.hxx \
|
HEADERS = browser.hxx smartcardauth.hxx pinentry.hxx \
|
||||||
downloadmanager.hxx settings.hxx sslclientnetworkmanager.hxx \
|
downloadmanager.hxx settings.hxx sslclientnetworkmanager.hxx \
|
||||||
authentication.hxx webpage.hxx errorlog.hxx \
|
authentication.hxx webview.hxx webpage.hxx errorlog.hxx \
|
||||||
certificate.hxx logincertificate.hxx editbookmarks.hxx \
|
certificate.hxx logincertificate.hxx editbookmarks.hxx \
|
||||||
pluginfactory.hxx pdfdisplay.hpp saveorrun.hxx temporaryfile.hxx
|
pluginfactory.hxx pdfdisplay.hpp saveorrun.hxx temporaryfile.hxx
|
||||||
|
|
||||||
|
|||||||
+90
-101
@@ -170,7 +170,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.ui" line="292"/>
|
<location filename="browser.ui" line="292"/>
|
||||||
<location filename="browser.hxx" line="487"/>
|
<location filename="browser.hxx" line="540"/>
|
||||||
<source>New Tab</source>
|
<source>New Tab</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@@ -332,137 +332,118 @@
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="521"/>
|
<location filename="browser.hxx" line="259"/>
|
||||||
<source>Checking: %1</source>
|
<source>Checking: %1</source>
|
||||||
<oldsource>Opening: %1</oldsource>
|
<oldsource>Opening: %1</oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="532"/>
|
<location filename="browser.hxx" line="270"/>
|
||||||
<source>Reading: %1</source>
|
<source>Reading: %1</source>
|
||||||
<oldsource>Reading: %1%</oldsource>
|
<oldsource>Reading: %1%</oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="571"/>
|
<location filename="browser.hxx" line="272"/>
|
||||||
<source>Zoom: %1%</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="534"/>
|
|
||||||
<source>Illegal URL: %1</source>
|
<source>Illegal URL: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="551"/>
|
<location filename="browser.hxx" line="262"/>
|
||||||
<source>gg</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="631"/>
|
|
||||||
<source>Print Document</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="652"/>
|
|
||||||
<source>%1 - %2</source>
|
|
||||||
<oldsource>Back to %1 - %2</oldsource>
|
|
||||||
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="895"/>
|
|
||||||
<source>Info: %1</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="912"/>
|
|
||||||
<source>done.</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="1167"/>
|
|
||||||
<source>%1</source>
|
|
||||||
<comment>statusbar for hovered link %1=url</comment>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="524"/>
|
|
||||||
<source>Forbidden: %1</source>
|
<source>Forbidden: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="151"/>
|
<location filename="browser.hxx" line="149"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>search engines combobox</comment>
|
<comment>search engines combobox</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="202"/>
|
<location filename="browser.hxx" line="200"/>
|
||||||
<source>SSL Not Supported</source>
|
<source>SSL Not Supported</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="203"/>
|
<location filename="browser.hxx" line="201"/>
|
||||||
<source>SSL is not supported on your system</source>
|
<source>SSL is not supported on your system</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="525"/>
|
<location filename="browser.hxx" line="263"/>
|
||||||
<source>Access Denied</source>
|
<source>Access Denied</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="526"/>
|
<location filename="browser.hxx" line="264"/>
|
||||||
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="552"/>
|
<location filename="browser.hxx" line="554"/>
|
||||||
|
<source>gg</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="555"/>
|
||||||
<source>http://www.google.com/search?hl=%2&q=%1</source>
|
<source>http://www.google.com/search?hl=%2&q=%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="588"/>
|
<location filename="browser.hxx" line="574"/>
|
||||||
|
<source>Zoom: %1%</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="591"/>
|
||||||
<source>opening new window</source>
|
<source>opening new window</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="671"/>
|
<location filename="browser.hxx" line="634"/>
|
||||||
|
<source>Print Document</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="655"/>
|
||||||
|
<source>%1 - %2</source>
|
||||||
|
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="674"/>
|
||||||
<source>%1 - %2</source>
|
<source>%1 - %2</source>
|
||||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="712"/>
|
<location filename="browser.hxx" line="715"/>
|
||||||
<location filename="browser.hxx" line="726"/>
|
<location filename="browser.hxx" line="729"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>neutral find</comment>
|
<comment>neutral find</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="734"/>
|
<location filename="browser.hxx" line="737"/>
|
||||||
<location filename="browser.hxx" line="744"/>
|
<location filename="browser.hxx" line="747"/>
|
||||||
<source>background-color: #ADA</source>
|
<source>background-color: #ADA</source>
|
||||||
<oldsource>background-color: #7F7</oldsource>
|
|
||||||
<comment>text found</comment>
|
<comment>text found</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="736"/>
|
<location filename="browser.hxx" line="739"/>
|
||||||
<location filename="browser.hxx" line="746"/>
|
<location filename="browser.hxx" line="749"/>
|
||||||
<source>background-color: #F77</source>
|
<source>background-color: #F77</source>
|
||||||
<oldsource>background-color: lightred</oldsource>
|
|
||||||
<comment>text not found</comment>
|
<comment>text not found</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="776"/>
|
<location filename="browser.hxx" line="779"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="777"/>
|
<location filename="browser.hxx" line="780"/>
|
||||||
<source>%8
|
<source>%8
|
||||||
Version: %1
|
Version: %1
|
||||||
Builddate: %2
|
Builddate: %2
|
||||||
@@ -471,53 +452,61 @@ Libraries:
|
|||||||
%4
|
%4
|
||||||
qt-%5 (%6)
|
qt-%5 (%6)
|
||||||
openssl-%7</source>
|
openssl-%7</source>
|
||||||
<oldsource>SwissBrowser
|
|
||||||
Version: %1
|
|
||||||
Builddate: %2
|
|
||||||
Libraries:
|
|
||||||
%3
|
|
||||||
%4
|
|
||||||
qt-%5 (%6)
|
|
||||||
openssl-%7</oldsource>
|
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="890"/>
|
<location filename="browser.hxx" line="893"/>
|
||||||
<source>%1</source>
|
<source>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1343"/>
|
<location filename="browser.hxx" line="898"/>
|
||||||
|
<source>Info: %1</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="915"/>
|
||||||
|
<source>done.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="1170"/>
|
||||||
|
<source>%1</source>
|
||||||
|
<comment>statusbar for hovered link %1=url</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="1346"/>
|
||||||
<source>launching application ...</source>
|
<source>launching application ...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1419"/>
|
<location filename="browser.hxx" line="1422"/>
|
||||||
<source>errors</source>
|
<source>errors</source>
|
||||||
<comment>show error log</comment>
|
<comment>show error log</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1436"/>
|
|
||||||
<location filename="browser.hxx" line="1439"/>
|
<location filename="browser.hxx" line="1439"/>
|
||||||
|
<location filename="browser.hxx" line="1442"/>
|
||||||
<source>background-color: #F77</source>
|
<source>background-color: #F77</source>
|
||||||
<comment>invalid url</comment>
|
<comment>invalid url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1446"/>
|
|
||||||
<location filename="browser.hxx" line="1449"/>
|
<location filename="browser.hxx" line="1449"/>
|
||||||
|
<location filename="browser.hxx" line="1452"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>valid url</comment>
|
<comment>valid url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1464"/>
|
<location filename="browser.hxx" line="1467"/>
|
||||||
<source>authentication required</source>
|
<source>authentication required</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1476"/>
|
<location filename="browser.hxx" line="1479"/>
|
||||||
<source>ssl error</source>
|
<source>ssl error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@@ -630,129 +619,129 @@ openssl-%7</oldsource>
|
|||||||
<context>
|
<context>
|
||||||
<name>DownloadManager</name>
|
<name>DownloadManager</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="32"/>
|
<location filename="downloadmanager.hxx" line="35"/>
|
||||||
<source>Network connection successful, remote host can be reached.</source>
|
<source>Network connection successful, remote host can be reached.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="35"/>
|
<location filename="downloadmanager.hxx" line="38"/>
|
||||||
<source>The remote server refused the connection (the server is not accepting requests).</source>
|
<source>The remote server refused the connection (the server is not accepting requests).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="38"/>
|
<location filename="downloadmanager.hxx" line="41"/>
|
||||||
<source>The remote server closed the connection prematurely, before the entire reply was received and processed.</source>
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="41"/>
|
<location filename="downloadmanager.hxx" line="44"/>
|
||||||
<source>The remote host name was not found (invalid hostname).</source>
|
<source>The remote host name was not found (invalid hostname).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="43"/>
|
<location filename="downloadmanager.hxx" line="46"/>
|
||||||
<source>The connection to the remote server timed out.</source>
|
<source>The connection to the remote server timed out.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="45"/>
|
<location filename="downloadmanager.hxx" line="48"/>
|
||||||
<source>The operation was canceled via calls to abort() or close() before it was finished.</source>
|
<source>The operation was canceled via calls to abort() or close() before it was finished.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="48"/>
|
<location filename="downloadmanager.hxx" line="51"/>
|
||||||
<source>The SSL/TLS handshake failed and the encrypted channel could not be established. See SSL-Errors above.</source>
|
<source>The SSL/TLS handshake failed and the encrypted channel could not be established. See SSL-Errors above.</source>
|
||||||
<oldsource>The SSL/TLS handshake failed and the encrypted channel could not be established. The sslErrors() signal should have been emitted.</oldsource>
|
<oldsource>The SSL/TLS handshake failed and the encrypted channel could not be established. The sslErrors() signal should have been emitted.</oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="51"/>
|
<location filename="downloadmanager.hxx" line="54"/>
|
||||||
<source>The connection to the proxy server was refused (the proxy server is not accepting requests).</source>
|
<source>The connection to the proxy server was refused (the proxy server is not accepting requests).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="54"/>
|
<location filename="downloadmanager.hxx" line="57"/>
|
||||||
<source>The proxy server closed the connection prematurely, before the entire reply was received and processed.</source>
|
<source>The proxy server closed the connection prematurely, before the entire reply was received and processed.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="57"/>
|
<location filename="downloadmanager.hxx" line="60"/>
|
||||||
<source>The proxy host name was not found (invalid proxy hostname).</source>
|
<source>The proxy host name was not found (invalid proxy hostname).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="60"/>
|
<location filename="downloadmanager.hxx" line="63"/>
|
||||||
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent.</source>
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="63"/>
|
<location filename="downloadmanager.hxx" line="66"/>
|
||||||
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered (if any).</source>
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered (if any).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="67"/>
|
<location filename="downloadmanager.hxx" line="70"/>
|
||||||
<source>The access to the remote content was denied (similar to HTTP error 401).</source>
|
<source>The access to the remote content was denied (similar to HTTP error 401).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="70"/>
|
<location filename="downloadmanager.hxx" line="73"/>
|
||||||
<source>The operation requested on the remote content is not permitted.</source>
|
<source>The operation requested on the remote content is not permitted.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="73"/>
|
<location filename="downloadmanager.hxx" line="76"/>
|
||||||
<source>The remote content was not found at the server (similar to HTTP error 404).</source>
|
<source>The remote content was not found at the server (similar to HTTP error 404).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="76"/>
|
<location filename="downloadmanager.hxx" line="79"/>
|
||||||
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted (if any).</source>
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted (if any).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="80"/>
|
<location filename="downloadmanager.hxx" line="83"/>
|
||||||
<source>The Network Access API cannot honor the request because the protocol is not known.</source>
|
<source>The Network Access API cannot honor the request because the protocol is not known.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="83"/>
|
<location filename="downloadmanager.hxx" line="86"/>
|
||||||
<source>The requested operation is invalid for this protocol.</source>
|
<source>The requested operation is invalid for this protocol.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="85"/>
|
<location filename="downloadmanager.hxx" line="88"/>
|
||||||
<source>An unknown network-related error was detected.</source>
|
<source>An unknown network-related error was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="87"/>
|
<location filename="downloadmanager.hxx" line="90"/>
|
||||||
<source>An unknown proxy-related error was detected.</source>
|
<source>An unknown proxy-related error was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="89"/>
|
<location filename="downloadmanager.hxx" line="92"/>
|
||||||
<source>An unknonwn error related to the remote content was detected.</source>
|
<source>An unknonwn error related to the remote content was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="92"/>
|
<location filename="downloadmanager.hxx" line="95"/>
|
||||||
<source>A breakdown in protocol was detected (parsing error, invalid or unexpected responses, etc.).</source>
|
<source>A breakdown in protocol was detected (parsing error, invalid or unexpected responses, etc.).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="95"/>
|
<location filename="downloadmanager.hxx" line="98"/>
|
||||||
<source><strong>Unknown network error (code: %1).</string></source>
|
<source><strong>Unknown network error (code: %1).</string></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="163"/>
|
<location filename="downloadmanager.hxx" line="166"/>
|
||||||
<source><h1>Network Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></source>
|
<source><h1>Network Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></source>
|
||||||
<oldsource><h1>Network Error</h2><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></oldsource>
|
<oldsource><h1>Network Error</h2><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="220"/>
|
<location filename="downloadmanager.hxx" line="223"/>
|
||||||
<source><h1>SSL Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></source>
|
<source><h1>SSL Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></source>
|
||||||
<oldsource><h1>SSL Error</h2><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></oldsource>
|
<oldsource><h1>SSL Error</h2><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
|||||||
+60
-70
@@ -190,7 +190,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.ui" line="292"/>
|
<location filename="browser.ui" line="292"/>
|
||||||
<location filename="browser.hxx" line="487"/>
|
<location filename="browser.hxx" line="540"/>
|
||||||
<source>New Tab</source>
|
<source>New Tab</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@@ -330,118 +330,116 @@
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="521"/>
|
<location filename="browser.hxx" line="259"/>
|
||||||
<source>Checking: %1</source>
|
<source>Checking: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="202"/>
|
<location filename="browser.hxx" line="200"/>
|
||||||
<source>SSL Not Supported</source>
|
<source>SSL Not Supported</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="151"/>
|
<location filename="browser.hxx" line="149"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>search engines combobox</comment>
|
<comment>search engines combobox</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="203"/>
|
<location filename="browser.hxx" line="201"/>
|
||||||
<source>SSL is not supported on your system</source>
|
<source>SSL is not supported on your system</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="524"/>
|
<location filename="browser.hxx" line="262"/>
|
||||||
<source>Forbidden: %1</source>
|
<source>Forbidden: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="525"/>
|
<location filename="browser.hxx" line="263"/>
|
||||||
<source>Access Denied</source>
|
<source>Access Denied</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="526"/>
|
<location filename="browser.hxx" line="264"/>
|
||||||
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="532"/>
|
<location filename="browser.hxx" line="270"/>
|
||||||
<source>Reading: %1</source>
|
<source>Reading: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="534"/>
|
<location filename="browser.hxx" line="272"/>
|
||||||
<source>Illegal URL: %1</source>
|
<source>Illegal URL: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="551"/>
|
<location filename="browser.hxx" line="554"/>
|
||||||
<source>gg</source>
|
<source>gg</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="552"/>
|
<location filename="browser.hxx" line="555"/>
|
||||||
<source>http://www.google.com/search?hl=%2&q=%1</source>
|
<source>http://www.google.com/search?hl=%2&q=%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="571"/>
|
<location filename="browser.hxx" line="574"/>
|
||||||
<source>Zoom: %1%</source>
|
<source>Zoom: %1%</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="588"/>
|
<location filename="browser.hxx" line="591"/>
|
||||||
<source>opening new window</source>
|
<source>opening new window</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="631"/>
|
<location filename="browser.hxx" line="634"/>
|
||||||
<source>Print Document</source>
|
<source>Print Document</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="652"/>
|
<location filename="browser.hxx" line="655"/>
|
||||||
<source>%1 - %2</source>
|
<source>%1 - %2</source>
|
||||||
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="671"/>
|
<location filename="browser.hxx" line="674"/>
|
||||||
<source>%1 - %2</source>
|
<source>%1 - %2</source>
|
||||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="712"/>
|
<location filename="browser.hxx" line="715"/>
|
||||||
<location filename="browser.hxx" line="726"/>
|
<location filename="browser.hxx" line="729"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>neutral find</comment>
|
<comment>neutral find</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="734"/>
|
<location filename="browser.hxx" line="737"/>
|
||||||
<location filename="browser.hxx" line="744"/>
|
<location filename="browser.hxx" line="747"/>
|
||||||
<source>background-color: #ADA</source>
|
<source>background-color: #ADA</source>
|
||||||
<oldsource>background-color: #7F7</oldsource>
|
|
||||||
<comment>text found</comment>
|
<comment>text found</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="736"/>
|
<location filename="browser.hxx" line="739"/>
|
||||||
<location filename="browser.hxx" line="746"/>
|
<location filename="browser.hxx" line="749"/>
|
||||||
<source>background-color: #F77</source>
|
<source>background-color: #F77</source>
|
||||||
<oldsource>background-color: lightred</oldsource>
|
|
||||||
<comment>text not found</comment>
|
<comment>text not found</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="776"/>
|
<location filename="browser.hxx" line="779"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="777"/>
|
<location filename="browser.hxx" line="780"/>
|
||||||
<source>%8
|
<source>%8
|
||||||
Version: %1
|
Version: %1
|
||||||
Builddate: %2
|
Builddate: %2
|
||||||
@@ -450,69 +448,61 @@ Libraries:
|
|||||||
%4
|
%4
|
||||||
qt-%5 (%6)
|
qt-%5 (%6)
|
||||||
openssl-%7</source>
|
openssl-%7</source>
|
||||||
<oldsource>SwissBrowser
|
|
||||||
Version: %1
|
|
||||||
Builddate: %2
|
|
||||||
Libraries:
|
|
||||||
%3
|
|
||||||
%4
|
|
||||||
qt-%5 (%6)
|
|
||||||
openssl-%7</oldsource>
|
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="890"/>
|
<location filename="browser.hxx" line="893"/>
|
||||||
<source>%1</source>
|
<source>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="895"/>
|
<location filename="browser.hxx" line="898"/>
|
||||||
<source>Info: %1</source>
|
<source>Info: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="912"/>
|
<location filename="browser.hxx" line="915"/>
|
||||||
<source>done.</source>
|
<source>done.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1167"/>
|
<location filename="browser.hxx" line="1170"/>
|
||||||
<source>%1</source>
|
<source>%1</source>
|
||||||
<comment>statusbar for hovered link %1=url</comment>
|
<comment>statusbar for hovered link %1=url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1343"/>
|
<location filename="browser.hxx" line="1346"/>
|
||||||
<source>launching application ...</source>
|
<source>launching application ...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1419"/>
|
<location filename="browser.hxx" line="1422"/>
|
||||||
<source>errors</source>
|
<source>errors</source>
|
||||||
<comment>show error log</comment>
|
<comment>show error log</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1436"/>
|
|
||||||
<location filename="browser.hxx" line="1439"/>
|
<location filename="browser.hxx" line="1439"/>
|
||||||
|
<location filename="browser.hxx" line="1442"/>
|
||||||
<source>background-color: #F77</source>
|
<source>background-color: #F77</source>
|
||||||
<comment>invalid url</comment>
|
<comment>invalid url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1446"/>
|
|
||||||
<location filename="browser.hxx" line="1449"/>
|
<location filename="browser.hxx" line="1449"/>
|
||||||
|
<location filename="browser.hxx" line="1452"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>valid url</comment>
|
<comment>valid url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1464"/>
|
<location filename="browser.hxx" line="1467"/>
|
||||||
<source>authentication required</source>
|
<source>authentication required</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1476"/>
|
<location filename="browser.hxx" line="1479"/>
|
||||||
<source>ssl error</source>
|
<source>ssl error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@@ -625,127 +615,127 @@ openssl-%7</oldsource>
|
|||||||
<context>
|
<context>
|
||||||
<name>DownloadManager</name>
|
<name>DownloadManager</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="32"/>
|
<location filename="downloadmanager.hxx" line="35"/>
|
||||||
<source>Network connection successful, remote host can be reached.</source>
|
<source>Network connection successful, remote host can be reached.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="35"/>
|
<location filename="downloadmanager.hxx" line="38"/>
|
||||||
<source>The remote server refused the connection (the server is not accepting requests).</source>
|
<source>The remote server refused the connection (the server is not accepting requests).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="38"/>
|
<location filename="downloadmanager.hxx" line="41"/>
|
||||||
<source>The remote server closed the connection prematurely, before the entire reply was received and processed.</source>
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="41"/>
|
<location filename="downloadmanager.hxx" line="44"/>
|
||||||
<source>The remote host name was not found (invalid hostname).</source>
|
<source>The remote host name was not found (invalid hostname).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="43"/>
|
<location filename="downloadmanager.hxx" line="46"/>
|
||||||
<source>The connection to the remote server timed out.</source>
|
<source>The connection to the remote server timed out.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="45"/>
|
<location filename="downloadmanager.hxx" line="48"/>
|
||||||
<source>The operation was canceled via calls to abort() or close() before it was finished.</source>
|
<source>The operation was canceled via calls to abort() or close() before it was finished.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="48"/>
|
<location filename="downloadmanager.hxx" line="51"/>
|
||||||
<source>The SSL/TLS handshake failed and the encrypted channel could not be established. See SSL-Errors above.</source>
|
<source>The SSL/TLS handshake failed and the encrypted channel could not be established. See SSL-Errors above.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="51"/>
|
<location filename="downloadmanager.hxx" line="54"/>
|
||||||
<source>The connection to the proxy server was refused (the proxy server is not accepting requests).</source>
|
<source>The connection to the proxy server was refused (the proxy server is not accepting requests).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="54"/>
|
<location filename="downloadmanager.hxx" line="57"/>
|
||||||
<source>The proxy server closed the connection prematurely, before the entire reply was received and processed.</source>
|
<source>The proxy server closed the connection prematurely, before the entire reply was received and processed.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="57"/>
|
<location filename="downloadmanager.hxx" line="60"/>
|
||||||
<source>The proxy host name was not found (invalid proxy hostname).</source>
|
<source>The proxy host name was not found (invalid proxy hostname).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="60"/>
|
<location filename="downloadmanager.hxx" line="63"/>
|
||||||
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent.</source>
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="63"/>
|
<location filename="downloadmanager.hxx" line="66"/>
|
||||||
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered (if any).</source>
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered (if any).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="67"/>
|
<location filename="downloadmanager.hxx" line="70"/>
|
||||||
<source>The access to the remote content was denied (similar to HTTP error 401).</source>
|
<source>The access to the remote content was denied (similar to HTTP error 401).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="70"/>
|
<location filename="downloadmanager.hxx" line="73"/>
|
||||||
<source>The operation requested on the remote content is not permitted.</source>
|
<source>The operation requested on the remote content is not permitted.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="73"/>
|
<location filename="downloadmanager.hxx" line="76"/>
|
||||||
<source>The remote content was not found at the server (similar to HTTP error 404).</source>
|
<source>The remote content was not found at the server (similar to HTTP error 404).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="76"/>
|
<location filename="downloadmanager.hxx" line="79"/>
|
||||||
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted (if any).</source>
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted (if any).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="80"/>
|
<location filename="downloadmanager.hxx" line="83"/>
|
||||||
<source>The Network Access API cannot honor the request because the protocol is not known.</source>
|
<source>The Network Access API cannot honor the request because the protocol is not known.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="83"/>
|
<location filename="downloadmanager.hxx" line="86"/>
|
||||||
<source>The requested operation is invalid for this protocol.</source>
|
<source>The requested operation is invalid for this protocol.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="85"/>
|
<location filename="downloadmanager.hxx" line="88"/>
|
||||||
<source>An unknown network-related error was detected.</source>
|
<source>An unknown network-related error was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="87"/>
|
<location filename="downloadmanager.hxx" line="90"/>
|
||||||
<source>An unknown proxy-related error was detected.</source>
|
<source>An unknown proxy-related error was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="89"/>
|
<location filename="downloadmanager.hxx" line="92"/>
|
||||||
<source>An unknonwn error related to the remote content was detected.</source>
|
<source>An unknonwn error related to the remote content was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="92"/>
|
<location filename="downloadmanager.hxx" line="95"/>
|
||||||
<source>A breakdown in protocol was detected (parsing error, invalid or unexpected responses, etc.).</source>
|
<source>A breakdown in protocol was detected (parsing error, invalid or unexpected responses, etc.).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="95"/>
|
<location filename="downloadmanager.hxx" line="98"/>
|
||||||
<source><strong>Unknown network error (code: %1).</string></source>
|
<source><strong>Unknown network error (code: %1).</string></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="163"/>
|
<location filename="downloadmanager.hxx" line="166"/>
|
||||||
<source><h1>Network Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></source>
|
<source><h1>Network Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="220"/>
|
<location filename="downloadmanager.hxx" line="223"/>
|
||||||
<source><h1>SSL Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></source>
|
<source><h1>SSL Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|||||||
+90
-101
@@ -170,7 +170,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.ui" line="292"/>
|
<location filename="browser.ui" line="292"/>
|
||||||
<location filename="browser.hxx" line="487"/>
|
<location filename="browser.hxx" line="540"/>
|
||||||
<source>New Tab</source>
|
<source>New Tab</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@@ -332,137 +332,118 @@
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="521"/>
|
<location filename="browser.hxx" line="259"/>
|
||||||
<source>Checking: %1</source>
|
<source>Checking: %1</source>
|
||||||
<oldsource>Opening: %1</oldsource>
|
<oldsource>Opening: %1</oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="532"/>
|
<location filename="browser.hxx" line="270"/>
|
||||||
<source>Reading: %1</source>
|
<source>Reading: %1</source>
|
||||||
<oldsource>Reading: %1%</oldsource>
|
<oldsource>Reading: %1%</oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="571"/>
|
<location filename="browser.hxx" line="272"/>
|
||||||
<source>Zoom: %1%</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="534"/>
|
|
||||||
<source>Illegal URL: %1</source>
|
<source>Illegal URL: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="551"/>
|
<location filename="browser.hxx" line="262"/>
|
||||||
<source>gg</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="631"/>
|
|
||||||
<source>Print Document</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="652"/>
|
|
||||||
<source>%1 - %2</source>
|
|
||||||
<oldsource>Back to %1 - %2</oldsource>
|
|
||||||
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="895"/>
|
|
||||||
<source>Info: %1</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="912"/>
|
|
||||||
<source>done.</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="1167"/>
|
|
||||||
<source>%1</source>
|
|
||||||
<comment>statusbar for hovered link %1=url</comment>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="browser.hxx" line="524"/>
|
|
||||||
<source>Forbidden: %1</source>
|
<source>Forbidden: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="151"/>
|
<location filename="browser.hxx" line="149"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>search engines combobox</comment>
|
<comment>search engines combobox</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="202"/>
|
<location filename="browser.hxx" line="200"/>
|
||||||
<source>SSL Not Supported</source>
|
<source>SSL Not Supported</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="203"/>
|
<location filename="browser.hxx" line="201"/>
|
||||||
<source>SSL is not supported on your system</source>
|
<source>SSL is not supported on your system</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="525"/>
|
<location filename="browser.hxx" line="263"/>
|
||||||
<source>Access Denied</source>
|
<source>Access Denied</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="526"/>
|
<location filename="browser.hxx" line="264"/>
|
||||||
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="552"/>
|
<location filename="browser.hxx" line="554"/>
|
||||||
|
<source>gg</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="555"/>
|
||||||
<source>http://www.google.com/search?hl=%2&q=%1</source>
|
<source>http://www.google.com/search?hl=%2&q=%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="588"/>
|
<location filename="browser.hxx" line="574"/>
|
||||||
|
<source>Zoom: %1%</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="591"/>
|
||||||
<source>opening new window</source>
|
<source>opening new window</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="671"/>
|
<location filename="browser.hxx" line="634"/>
|
||||||
|
<source>Print Document</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="655"/>
|
||||||
|
<source>%1 - %2</source>
|
||||||
|
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="674"/>
|
||||||
<source>%1 - %2</source>
|
<source>%1 - %2</source>
|
||||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="712"/>
|
<location filename="browser.hxx" line="715"/>
|
||||||
<location filename="browser.hxx" line="726"/>
|
<location filename="browser.hxx" line="729"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>neutral find</comment>
|
<comment>neutral find</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="734"/>
|
<location filename="browser.hxx" line="737"/>
|
||||||
<location filename="browser.hxx" line="744"/>
|
<location filename="browser.hxx" line="747"/>
|
||||||
<source>background-color: #ADA</source>
|
<source>background-color: #ADA</source>
|
||||||
<oldsource>background-color: #7F7</oldsource>
|
|
||||||
<comment>text found</comment>
|
<comment>text found</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="736"/>
|
<location filename="browser.hxx" line="739"/>
|
||||||
<location filename="browser.hxx" line="746"/>
|
<location filename="browser.hxx" line="749"/>
|
||||||
<source>background-color: #F77</source>
|
<source>background-color: #F77</source>
|
||||||
<oldsource>background-color: lightred</oldsource>
|
|
||||||
<comment>text not found</comment>
|
<comment>text not found</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="776"/>
|
<location filename="browser.hxx" line="779"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="777"/>
|
<location filename="browser.hxx" line="780"/>
|
||||||
<source>%8
|
<source>%8
|
||||||
Version: %1
|
Version: %1
|
||||||
Builddate: %2
|
Builddate: %2
|
||||||
@@ -471,53 +452,61 @@ Libraries:
|
|||||||
%4
|
%4
|
||||||
qt-%5 (%6)
|
qt-%5 (%6)
|
||||||
openssl-%7</source>
|
openssl-%7</source>
|
||||||
<oldsource>SwissBrowser
|
|
||||||
Version: %1
|
|
||||||
Builddate: %2
|
|
||||||
Libraries:
|
|
||||||
%3
|
|
||||||
%4
|
|
||||||
qt-%5 (%6)
|
|
||||||
openssl-%7</oldsource>
|
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="890"/>
|
<location filename="browser.hxx" line="893"/>
|
||||||
<source>%1</source>
|
<source>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1343"/>
|
<location filename="browser.hxx" line="898"/>
|
||||||
|
<source>Info: %1</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="915"/>
|
||||||
|
<source>done.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="1170"/>
|
||||||
|
<source>%1</source>
|
||||||
|
<comment>statusbar for hovered link %1=url</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="browser.hxx" line="1346"/>
|
||||||
<source>launching application ...</source>
|
<source>launching application ...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1419"/>
|
<location filename="browser.hxx" line="1422"/>
|
||||||
<source>errors</source>
|
<source>errors</source>
|
||||||
<comment>show error log</comment>
|
<comment>show error log</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1436"/>
|
|
||||||
<location filename="browser.hxx" line="1439"/>
|
<location filename="browser.hxx" line="1439"/>
|
||||||
|
<location filename="browser.hxx" line="1442"/>
|
||||||
<source>background-color: #F77</source>
|
<source>background-color: #F77</source>
|
||||||
<comment>invalid url</comment>
|
<comment>invalid url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1446"/>
|
|
||||||
<location filename="browser.hxx" line="1449"/>
|
<location filename="browser.hxx" line="1449"/>
|
||||||
|
<location filename="browser.hxx" line="1452"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>valid url</comment>
|
<comment>valid url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1464"/>
|
<location filename="browser.hxx" line="1467"/>
|
||||||
<source>authentication required</source>
|
<source>authentication required</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1476"/>
|
<location filename="browser.hxx" line="1479"/>
|
||||||
<source>ssl error</source>
|
<source>ssl error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@@ -630,129 +619,129 @@ openssl-%7</oldsource>
|
|||||||
<context>
|
<context>
|
||||||
<name>DownloadManager</name>
|
<name>DownloadManager</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="32"/>
|
<location filename="downloadmanager.hxx" line="35"/>
|
||||||
<source>Network connection successful, remote host can be reached.</source>
|
<source>Network connection successful, remote host can be reached.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="35"/>
|
<location filename="downloadmanager.hxx" line="38"/>
|
||||||
<source>The remote server refused the connection (the server is not accepting requests).</source>
|
<source>The remote server refused the connection (the server is not accepting requests).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="38"/>
|
<location filename="downloadmanager.hxx" line="41"/>
|
||||||
<source>The remote server closed the connection prematurely, before the entire reply was received and processed.</source>
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="41"/>
|
<location filename="downloadmanager.hxx" line="44"/>
|
||||||
<source>The remote host name was not found (invalid hostname).</source>
|
<source>The remote host name was not found (invalid hostname).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="43"/>
|
<location filename="downloadmanager.hxx" line="46"/>
|
||||||
<source>The connection to the remote server timed out.</source>
|
<source>The connection to the remote server timed out.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="45"/>
|
<location filename="downloadmanager.hxx" line="48"/>
|
||||||
<source>The operation was canceled via calls to abort() or close() before it was finished.</source>
|
<source>The operation was canceled via calls to abort() or close() before it was finished.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="48"/>
|
<location filename="downloadmanager.hxx" line="51"/>
|
||||||
<source>The SSL/TLS handshake failed and the encrypted channel could not be established. See SSL-Errors above.</source>
|
<source>The SSL/TLS handshake failed and the encrypted channel could not be established. See SSL-Errors above.</source>
|
||||||
<oldsource>The SSL/TLS handshake failed and the encrypted channel could not be established. The sslErrors() signal should have been emitted.</oldsource>
|
<oldsource>The SSL/TLS handshake failed and the encrypted channel could not be established. The sslErrors() signal should have been emitted.</oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="51"/>
|
<location filename="downloadmanager.hxx" line="54"/>
|
||||||
<source>The connection to the proxy server was refused (the proxy server is not accepting requests).</source>
|
<source>The connection to the proxy server was refused (the proxy server is not accepting requests).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="54"/>
|
<location filename="downloadmanager.hxx" line="57"/>
|
||||||
<source>The proxy server closed the connection prematurely, before the entire reply was received and processed.</source>
|
<source>The proxy server closed the connection prematurely, before the entire reply was received and processed.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="57"/>
|
<location filename="downloadmanager.hxx" line="60"/>
|
||||||
<source>The proxy host name was not found (invalid proxy hostname).</source>
|
<source>The proxy host name was not found (invalid proxy hostname).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="60"/>
|
<location filename="downloadmanager.hxx" line="63"/>
|
||||||
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent.</source>
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="63"/>
|
<location filename="downloadmanager.hxx" line="66"/>
|
||||||
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered (if any).</source>
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered (if any).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="67"/>
|
<location filename="downloadmanager.hxx" line="70"/>
|
||||||
<source>The access to the remote content was denied (similar to HTTP error 401).</source>
|
<source>The access to the remote content was denied (similar to HTTP error 401).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="70"/>
|
<location filename="downloadmanager.hxx" line="73"/>
|
||||||
<source>The operation requested on the remote content is not permitted.</source>
|
<source>The operation requested on the remote content is not permitted.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="73"/>
|
<location filename="downloadmanager.hxx" line="76"/>
|
||||||
<source>The remote content was not found at the server (similar to HTTP error 404).</source>
|
<source>The remote content was not found at the server (similar to HTTP error 404).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="76"/>
|
<location filename="downloadmanager.hxx" line="79"/>
|
||||||
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted (if any).</source>
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted (if any).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="80"/>
|
<location filename="downloadmanager.hxx" line="83"/>
|
||||||
<source>The Network Access API cannot honor the request because the protocol is not known.</source>
|
<source>The Network Access API cannot honor the request because the protocol is not known.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="83"/>
|
<location filename="downloadmanager.hxx" line="86"/>
|
||||||
<source>The requested operation is invalid for this protocol.</source>
|
<source>The requested operation is invalid for this protocol.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="85"/>
|
<location filename="downloadmanager.hxx" line="88"/>
|
||||||
<source>An unknown network-related error was detected.</source>
|
<source>An unknown network-related error was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="87"/>
|
<location filename="downloadmanager.hxx" line="90"/>
|
||||||
<source>An unknown proxy-related error was detected.</source>
|
<source>An unknown proxy-related error was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="89"/>
|
<location filename="downloadmanager.hxx" line="92"/>
|
||||||
<source>An unknonwn error related to the remote content was detected.</source>
|
<source>An unknonwn error related to the remote content was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="92"/>
|
<location filename="downloadmanager.hxx" line="95"/>
|
||||||
<source>A breakdown in protocol was detected (parsing error, invalid or unexpected responses, etc.).</source>
|
<source>A breakdown in protocol was detected (parsing error, invalid or unexpected responses, etc.).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="95"/>
|
<location filename="downloadmanager.hxx" line="98"/>
|
||||||
<source><strong>Unknown network error (code: %1).</string></source>
|
<source><strong>Unknown network error (code: %1).</string></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="163"/>
|
<location filename="downloadmanager.hxx" line="166"/>
|
||||||
<source><h1>Network Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></source>
|
<source><h1>Network Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></source>
|
||||||
<oldsource><h1>Network Error</h2><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></oldsource>
|
<oldsource><h1>Network Error</h2><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="220"/>
|
<location filename="downloadmanager.hxx" line="223"/>
|
||||||
<source><h1>SSL Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></source>
|
<source><h1>SSL Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></source>
|
||||||
<oldsource><h1>SSL Error</h2><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></oldsource>
|
<oldsource><h1>SSL Error</h2><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></oldsource>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
|||||||
+60
-60
@@ -190,7 +190,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.ui" line="292"/>
|
<location filename="browser.ui" line="292"/>
|
||||||
<location filename="browser.hxx" line="487"/>
|
<location filename="browser.hxx" line="540"/>
|
||||||
<source>New Tab</source>
|
<source>New Tab</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@@ -330,116 +330,116 @@
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="151"/>
|
<location filename="browser.hxx" line="149"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>search engines combobox</comment>
|
<comment>search engines combobox</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="202"/>
|
<location filename="browser.hxx" line="200"/>
|
||||||
<source>SSL Not Supported</source>
|
<source>SSL Not Supported</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="203"/>
|
<location filename="browser.hxx" line="201"/>
|
||||||
<source>SSL is not supported on your system</source>
|
<source>SSL is not supported on your system</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="521"/>
|
<location filename="browser.hxx" line="259"/>
|
||||||
<source>Checking: %1</source>
|
<source>Checking: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="524"/>
|
<location filename="browser.hxx" line="262"/>
|
||||||
<source>Forbidden: %1</source>
|
<source>Forbidden: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="525"/>
|
<location filename="browser.hxx" line="263"/>
|
||||||
<source>Access Denied</source>
|
<source>Access Denied</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="526"/>
|
<location filename="browser.hxx" line="264"/>
|
||||||
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="532"/>
|
<location filename="browser.hxx" line="270"/>
|
||||||
<source>Reading: %1</source>
|
<source>Reading: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="534"/>
|
<location filename="browser.hxx" line="272"/>
|
||||||
<source>Illegal URL: %1</source>
|
<source>Illegal URL: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="551"/>
|
<location filename="browser.hxx" line="554"/>
|
||||||
<source>gg</source>
|
<source>gg</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="552"/>
|
<location filename="browser.hxx" line="555"/>
|
||||||
<source>http://www.google.com/search?hl=%2&q=%1</source>
|
<source>http://www.google.com/search?hl=%2&q=%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="571"/>
|
<location filename="browser.hxx" line="574"/>
|
||||||
<source>Zoom: %1%</source>
|
<source>Zoom: %1%</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="588"/>
|
<location filename="browser.hxx" line="591"/>
|
||||||
<source>opening new window</source>
|
<source>opening new window</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="631"/>
|
<location filename="browser.hxx" line="634"/>
|
||||||
<source>Print Document</source>
|
<source>Print Document</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="652"/>
|
<location filename="browser.hxx" line="655"/>
|
||||||
<source>%1 - %2</source>
|
<source>%1 - %2</source>
|
||||||
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="671"/>
|
<location filename="browser.hxx" line="674"/>
|
||||||
<source>%1 - %2</source>
|
<source>%1 - %2</source>
|
||||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="712"/>
|
<location filename="browser.hxx" line="715"/>
|
||||||
<location filename="browser.hxx" line="726"/>
|
<location filename="browser.hxx" line="729"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>neutral find</comment>
|
<comment>neutral find</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="734"/>
|
<location filename="browser.hxx" line="737"/>
|
||||||
<location filename="browser.hxx" line="744"/>
|
<location filename="browser.hxx" line="747"/>
|
||||||
<source>background-color: #ADA</source>
|
<source>background-color: #ADA</source>
|
||||||
<comment>text found</comment>
|
<comment>text found</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="736"/>
|
<location filename="browser.hxx" line="739"/>
|
||||||
<location filename="browser.hxx" line="746"/>
|
<location filename="browser.hxx" line="749"/>
|
||||||
<source>background-color: #F77</source>
|
<source>background-color: #F77</source>
|
||||||
<comment>text not found</comment>
|
<comment>text not found</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="776"/>
|
<location filename="browser.hxx" line="779"/>
|
||||||
<source>About</source>
|
<source>About</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="777"/>
|
<location filename="browser.hxx" line="780"/>
|
||||||
<source>%8
|
<source>%8
|
||||||
Version: %1
|
Version: %1
|
||||||
Builddate: %2
|
Builddate: %2
|
||||||
@@ -451,58 +451,58 @@ openssl-%7</source>
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="890"/>
|
<location filename="browser.hxx" line="893"/>
|
||||||
<source>%1</source>
|
<source>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="895"/>
|
<location filename="browser.hxx" line="898"/>
|
||||||
<source>Info: %1</source>
|
<source>Info: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="912"/>
|
<location filename="browser.hxx" line="915"/>
|
||||||
<source>done.</source>
|
<source>done.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1167"/>
|
<location filename="browser.hxx" line="1170"/>
|
||||||
<source>%1</source>
|
<source>%1</source>
|
||||||
<comment>statusbar for hovered link %1=url</comment>
|
<comment>statusbar for hovered link %1=url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1343"/>
|
<location filename="browser.hxx" line="1346"/>
|
||||||
<source>launching application ...</source>
|
<source>launching application ...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1419"/>
|
<location filename="browser.hxx" line="1422"/>
|
||||||
<source>errors</source>
|
<source>errors</source>
|
||||||
<comment>show error log</comment>
|
<comment>show error log</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1436"/>
|
|
||||||
<location filename="browser.hxx" line="1439"/>
|
<location filename="browser.hxx" line="1439"/>
|
||||||
|
<location filename="browser.hxx" line="1442"/>
|
||||||
<source>background-color: #F77</source>
|
<source>background-color: #F77</source>
|
||||||
<comment>invalid url</comment>
|
<comment>invalid url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1446"/>
|
|
||||||
<location filename="browser.hxx" line="1449"/>
|
<location filename="browser.hxx" line="1449"/>
|
||||||
|
<location filename="browser.hxx" line="1452"/>
|
||||||
<source>background-color: white</source>
|
<source>background-color: white</source>
|
||||||
<comment>valid url</comment>
|
<comment>valid url</comment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1464"/>
|
<location filename="browser.hxx" line="1467"/>
|
||||||
<source>authentication required</source>
|
<source>authentication required</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="browser.hxx" line="1476"/>
|
<location filename="browser.hxx" line="1479"/>
|
||||||
<source>ssl error</source>
|
<source>ssl error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
@@ -615,127 +615,127 @@ openssl-%7</source>
|
|||||||
<context>
|
<context>
|
||||||
<name>DownloadManager</name>
|
<name>DownloadManager</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="32"/>
|
<location filename="downloadmanager.hxx" line="35"/>
|
||||||
<source>Network connection successful, remote host can be reached.</source>
|
<source>Network connection successful, remote host can be reached.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="35"/>
|
<location filename="downloadmanager.hxx" line="38"/>
|
||||||
<source>The remote server refused the connection (the server is not accepting requests).</source>
|
<source>The remote server refused the connection (the server is not accepting requests).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="38"/>
|
<location filename="downloadmanager.hxx" line="41"/>
|
||||||
<source>The remote server closed the connection prematurely, before the entire reply was received and processed.</source>
|
<source>The remote server closed the connection prematurely, before the entire reply was received and processed.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="41"/>
|
<location filename="downloadmanager.hxx" line="44"/>
|
||||||
<source>The remote host name was not found (invalid hostname).</source>
|
<source>The remote host name was not found (invalid hostname).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="43"/>
|
<location filename="downloadmanager.hxx" line="46"/>
|
||||||
<source>The connection to the remote server timed out.</source>
|
<source>The connection to the remote server timed out.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="45"/>
|
<location filename="downloadmanager.hxx" line="48"/>
|
||||||
<source>The operation was canceled via calls to abort() or close() before it was finished.</source>
|
<source>The operation was canceled via calls to abort() or close() before it was finished.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="48"/>
|
<location filename="downloadmanager.hxx" line="51"/>
|
||||||
<source>The SSL/TLS handshake failed and the encrypted channel could not be established. See SSL-Errors above.</source>
|
<source>The SSL/TLS handshake failed and the encrypted channel could not be established. See SSL-Errors above.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="51"/>
|
<location filename="downloadmanager.hxx" line="54"/>
|
||||||
<source>The connection to the proxy server was refused (the proxy server is not accepting requests).</source>
|
<source>The connection to the proxy server was refused (the proxy server is not accepting requests).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="54"/>
|
<location filename="downloadmanager.hxx" line="57"/>
|
||||||
<source>The proxy server closed the connection prematurely, before the entire reply was received and processed.</source>
|
<source>The proxy server closed the connection prematurely, before the entire reply was received and processed.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="57"/>
|
<location filename="downloadmanager.hxx" line="60"/>
|
||||||
<source>The proxy host name was not found (invalid proxy hostname).</source>
|
<source>The proxy host name was not found (invalid proxy hostname).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="60"/>
|
<location filename="downloadmanager.hxx" line="63"/>
|
||||||
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent.</source>
|
<source>The connection to the proxy timed out or the proxy did not reply in time to the request sent.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="63"/>
|
<location filename="downloadmanager.hxx" line="66"/>
|
||||||
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered (if any).</source>
|
<source>The proxy requires authentication in order to honour the request but did not accept any credentials offered (if any).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="67"/>
|
<location filename="downloadmanager.hxx" line="70"/>
|
||||||
<source>The access to the remote content was denied (similar to HTTP error 401).</source>
|
<source>The access to the remote content was denied (similar to HTTP error 401).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="70"/>
|
<location filename="downloadmanager.hxx" line="73"/>
|
||||||
<source>The operation requested on the remote content is not permitted.</source>
|
<source>The operation requested on the remote content is not permitted.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="73"/>
|
<location filename="downloadmanager.hxx" line="76"/>
|
||||||
<source>The remote content was not found at the server (similar to HTTP error 404).</source>
|
<source>The remote content was not found at the server (similar to HTTP error 404).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="76"/>
|
<location filename="downloadmanager.hxx" line="79"/>
|
||||||
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted (if any).</source>
|
<source>The remote server requires authentication to serve the content but the credentials provided were not accepted (if any).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="80"/>
|
<location filename="downloadmanager.hxx" line="83"/>
|
||||||
<source>The Network Access API cannot honor the request because the protocol is not known.</source>
|
<source>The Network Access API cannot honor the request because the protocol is not known.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="83"/>
|
<location filename="downloadmanager.hxx" line="86"/>
|
||||||
<source>The requested operation is invalid for this protocol.</source>
|
<source>The requested operation is invalid for this protocol.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="85"/>
|
<location filename="downloadmanager.hxx" line="88"/>
|
||||||
<source>An unknown network-related error was detected.</source>
|
<source>An unknown network-related error was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="87"/>
|
<location filename="downloadmanager.hxx" line="90"/>
|
||||||
<source>An unknown proxy-related error was detected.</source>
|
<source>An unknown proxy-related error was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="89"/>
|
<location filename="downloadmanager.hxx" line="92"/>
|
||||||
<source>An unknonwn error related to the remote content was detected.</source>
|
<source>An unknonwn error related to the remote content was detected.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="92"/>
|
<location filename="downloadmanager.hxx" line="95"/>
|
||||||
<source>A breakdown in protocol was detected (parsing error, invalid or unexpected responses, etc.).</source>
|
<source>A breakdown in protocol was detected (parsing error, invalid or unexpected responses, etc.).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="95"/>
|
<location filename="downloadmanager.hxx" line="98"/>
|
||||||
<source><strong>Unknown network error (code: %1).</string></source>
|
<source><strong>Unknown network error (code: %1).</string></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="163"/>
|
<location filename="downloadmanager.hxx" line="166"/>
|
||||||
<source><h1>Network Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></source>
|
<source><h1>Network Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="downloadmanager.hxx" line="220"/>
|
<location filename="downloadmanager.hxx" line="223"/>
|
||||||
<source><h1>SSL Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></source>
|
<source><h1>SSL Error</h1><dl><dt>URL:</dt><dd>%1</dd><dt>Error Code:</dt><dd>%3</dd><dt>Error Details:</dt><dd>%2</dd></dl><table><caption>Certificate Issuer</caption><tr><th>Organization:</th><td>%4</td></tr><tr><th>Common Name:</th><td>%5</td></tr><tr><th>Location:</th><td>%6</td></tr><tr><th>Organizational Unit:</th><td>%7</td></tr><tr><th>Country:</th><td>%8</td></tr><tr><th>State or Provive:</th><td>%9</td></tr></table><table><caption>Certificate Subject</caption><tr><th>Organization:</th><td>%10</td></tr><tr><th>Common Name:</th><td>%11</td></tr><tr><th>Location:</th><td>%12</td></tr><tr><th>Organizational Unit:</th><td>%13</td></tr><tr><th>Country:</th><td>%14</td></tr><tr><th>State or Provive:</th><td>%15</td></tr></table></source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
/*! @file
|
|
||||||
|
|
||||||
@id $Id$
|
|
||||||
*/
|
|
||||||
// 1 2 3 4 5 6 7 8
|
|
||||||
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
|
||||||
|
|
||||||
#include <webpage.hxx>
|
|
||||||
#include <browser.hxx>
|
|
||||||
|
|
||||||
QWebPage* WebPage::createWindow(WebWindowType type) {
|
|
||||||
switch (type) {
|
|
||||||
case QWebPage::WebBrowserWindow:
|
|
||||||
case QWebPage::WebModalDialog: {
|
|
||||||
return _browser->newTab()->page();
|
|
||||||
} break;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
+15
-6
@@ -16,13 +16,24 @@
|
|||||||
#define LOG qDebug()<<__PRETTY_FUNCTION__
|
#define LOG qDebug()<<__PRETTY_FUNCTION__
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class Browser;
|
|
||||||
|
|
||||||
class WebPage: public QWebPage {
|
class WebPage: public QWebPage {
|
||||||
|
Q_OBJECT;
|
||||||
|
signals:
|
||||||
|
void newPage(WebPage*);
|
||||||
public:
|
public:
|
||||||
WebPage(Browser* b, QObject *parent = 0): QWebPage(parent), _browser(b) {}
|
WebPage(QObject *parent = 0): QWebPage(parent) {}
|
||||||
protected:
|
protected:
|
||||||
virtual QWebPage* createWindow(WebWindowType type);
|
virtual QWebPage* createWindow(WebWindowType type) {
|
||||||
|
switch (type) {
|
||||||
|
case QWebPage::WebBrowserWindow:
|
||||||
|
case QWebPage::WebModalDialog: {
|
||||||
|
WebPage *page(new WebPage);
|
||||||
|
newPage(page);
|
||||||
|
return page;
|
||||||
|
} break;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
virtual QString userAgentForUrl(const QUrl& url) const {
|
virtual QString userAgentForUrl(const QUrl& url) const {
|
||||||
QString add(QProcessEnvironment::systemEnvironment()
|
QString add(QProcessEnvironment::systemEnvironment()
|
||||||
.value("SWISSSURFER_USERAGENT"));
|
.value("SWISSSURFER_USERAGENT"));
|
||||||
@@ -37,8 +48,6 @@ class WebPage: public QWebPage {
|
|||||||
<<"paramValues:"<<paramValues.join(", ");
|
<<"paramValues:"<<paramValues.join(", ");
|
||||||
return QWebPage::createPlugin(classid, url, paramNames, paramValues);
|
return QWebPage::createPlugin(classid, url, paramNames, paramValues);
|
||||||
}
|
}
|
||||||
private:
|
|
||||||
Browser* _browser;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -0,0 +1,50 @@
|
|||||||
|
/*! @file
|
||||||
|
|
||||||
|
@id $Id$
|
||||||
|
*/
|
||||||
|
// 1 2 3 4 5 6 7 8
|
||||||
|
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||||||
|
|
||||||
|
#ifndef WEBVIEW_HXX
|
||||||
|
#define WEBVIEW_HXX
|
||||||
|
|
||||||
|
#include <webpage.hxx>
|
||||||
|
#include <pluginfactory.hxx>
|
||||||
|
#include <sslclientnetworkmanager.hxx>
|
||||||
|
#include <downloadmanager.hxx>
|
||||||
|
|
||||||
|
#include <QtWebKit>
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
class WebView: public QWebView {
|
||||||
|
Q_OBJECT;
|
||||||
|
signals:
|
||||||
|
void newView(WebView*);
|
||||||
|
public:
|
||||||
|
WebView(WebPage* webpage) {
|
||||||
|
x(webpage); //! @bugfix, gcc does not yet support constructor calling
|
||||||
|
}
|
||||||
|
WebView(QWidget *parent=0): QWebView(parent) {
|
||||||
|
x(new WebPage); //! @bugfix, gcc does not yet support constructor calling
|
||||||
|
}
|
||||||
|
private:
|
||||||
|
//! @bugfix, gcc does not yet support constructor calling
|
||||||
|
/*! @see http://en.wikipedia.org/wiki/C++11#Object_construction_improvement
|
||||||
|
*/
|
||||||
|
void x(WebPage* webpage) {
|
||||||
|
webpage->setParent(this);
|
||||||
|
setPage(webpage);
|
||||||
|
page()->setPluginFactory(new PluginFactory);
|
||||||
|
page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);
|
||||||
|
page()->setForwardUnsupportedContent(true);
|
||||||
|
assert(connect(page(), SIGNAL(newPage(WebPage*)),
|
||||||
|
SLOT(newPage(WebPage*))));
|
||||||
|
}
|
||||||
|
private slots:
|
||||||
|
void newPage(WebPage* p) {
|
||||||
|
newView(new WebView(p));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
Reference in New Issue
Block a user