ignore abort, url-bar red if load fails, better error message and same for find: red if not found, green if found; closes #68
This commit is contained in:
@@ -91,9 +91,10 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
_toolbar->addWidget(_url);
|
||||
assert(connect(_url, SIGNAL(currentIndexChanged(const QString&)),
|
||||
SLOT(load(QString))));
|
||||
assert(connect(&_networkManager, SIGNAL(finished(QNetworkReply*)),
|
||||
SLOT(finished(QNetworkReply*))));
|
||||
assert(connect(&_networkManager, SIGNAL(created(QNetworkReply*)),
|
||||
&_downloadManager, SLOT(add(QNetworkReply*))));
|
||||
|
||||
assert(connect(&_downloadManager, SIGNAL(progress(qint64, qint64)),
|
||||
SLOT(progress(qint64, qint64))));
|
||||
assert(connect(&_downloadManager, SIGNAL(started()),
|
||||
@@ -114,6 +115,8 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
} else {
|
||||
assert(connect(_url->lineEdit(), SIGNAL(returnPressed()),
|
||||
SLOT(load())));
|
||||
assert(connect(_url->lineEdit(), SIGNAL(textChanged(QString)),
|
||||
SLOT(goodUrl())));
|
||||
_toolbar->addWidget(_clearUrl = new QPushButton("X", _toolbar));
|
||||
assert(connect(_clearUrl, SIGNAL(clicked(bool)),
|
||||
_url, SLOT(clearEditText())));
|
||||
@@ -574,6 +577,10 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
_downloadManager.abort();
|
||||
}
|
||||
|
||||
void on__find_textChanged(QString) {
|
||||
_find->setStyleSheet(tr("background-color: white", "neutral find"));
|
||||
}
|
||||
|
||||
void on_actionFind_triggered() {
|
||||
if (!_find) {
|
||||
statusBar()->addPermanentWidget(_find = new QLineEdit);
|
||||
@@ -584,6 +591,7 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
disconnect(_find, SIGNAL(textEdited(QString)), this, SLOT(rfind()));
|
||||
assert(connect(_find, SIGNAL(returnPressed()), SLOT(find())));
|
||||
assert(connect(_find, SIGNAL(textEdited(QString)), SLOT(find())));
|
||||
_find->setStyleSheet(tr("background-color: white", "neutral find"));
|
||||
_find->setFocus();
|
||||
}
|
||||
|
||||
@@ -597,20 +605,27 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
disconnect(_find, SIGNAL(textEdited(QString)), this, SLOT(find()));
|
||||
assert(connect(_find, SIGNAL(returnPressed()), SLOT(rfind())));
|
||||
assert(connect(_find, SIGNAL(textEdited(QString)), SLOT(rfind())));
|
||||
_find->setStyleSheet(tr("background-color: white", "neutral find"));
|
||||
_find->setFocus();
|
||||
}
|
||||
|
||||
void find(const QString& txt=QString()) {
|
||||
qobject_cast<QWebView*>(_tabs->currentWidget())->findText
|
||||
if (qobject_cast<QWebView*>(_tabs->currentWidget())->findText
|
||||
(_find->text(),
|
||||
QWebPage::FindWrapsAroundDocument);
|
||||
QWebPage::FindWrapsAroundDocument))
|
||||
_find->setStyleSheet(tr("background-color: #ADA", "text found"));
|
||||
else
|
||||
_find->setStyleSheet(tr("background-color: #F77", "text not found"));
|
||||
}
|
||||
|
||||
void rfind(const QString& txt=QString()) {
|
||||
qobject_cast<QWebView*>(_tabs->currentWidget())->findText
|
||||
if(qobject_cast<QWebView*>(_tabs->currentWidget())->findText
|
||||
(_find->text(),
|
||||
QWebPage::FindWrapsAroundDocument
|
||||
|QWebPage::FindBackward);
|
||||
|QWebPage::FindBackward))
|
||||
_find->setStyleSheet(tr("background-color: #ADA", "text found"));
|
||||
else
|
||||
_find->setStyleSheet(tr("background-color: #F77", "text not found"));
|
||||
}
|
||||
|
||||
void on_actionUnFind_triggered() {
|
||||
@@ -705,7 +720,7 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
|
||||
void loadFinished(bool ok) {
|
||||
LOG<<(ok?"success":"error");
|
||||
statusBar()->showMessage(ok?tr("done."):tr("page load error."));
|
||||
if (ok) statusBar()->showMessage(tr("done."));
|
||||
activateTab();
|
||||
}
|
||||
|
||||
@@ -1145,6 +1160,25 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
_progress->setEnabled(false);
|
||||
}
|
||||
|
||||
void finished(QNetworkReply *r) {
|
||||
LOG;
|
||||
if (r->error()!=QNetworkReply::NoError &&
|
||||
r->error()!=QNetworkReply::OperationCanceledError) {
|
||||
statusBar()->showMessage(DownloadManager::networkError(r->error()));
|
||||
badUrl();
|
||||
}
|
||||
}
|
||||
|
||||
void badUrl() {
|
||||
_url->lineEdit()
|
||||
->setStyleSheet(tr("background-color: #F77", "invalid url"));
|
||||
}
|
||||
|
||||
void goodUrl() {
|
||||
_url->lineEdit()
|
||||
->setStyleSheet(tr("background-color: white", "valid url"));
|
||||
}
|
||||
|
||||
void downloadError(QString error) {
|
||||
_errorLog.append(error);
|
||||
}
|
||||
|
@@ -246,98 +246,117 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="442"/>
|
||||
<location filename="browser.hxx" line="445"/>
|
||||
<source>Checking: %1</source>
|
||||
<oldsource>Opening: %1</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="453"/>
|
||||
<location filename="browser.hxx" line="456"/>
|
||||
<source>Reading: %1</source>
|
||||
<oldsource>Reading: %1%</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="468"/>
|
||||
<location filename="browser.hxx" line="471"/>
|
||||
<source>Zoom: %1%</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="455"/>
|
||||
<location filename="browser.hxx" line="458"/>
|
||||
<source>Illegal URL: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="517"/>
|
||||
<location filename="browser.hxx" line="520"/>
|
||||
<source>Print Document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="538"/>
|
||||
<location filename="browser.hxx" line="541"/>
|
||||
<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="695"/>
|
||||
<location filename="browser.hxx" line="710"/>
|
||||
<source>Info: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="708"/>
|
||||
<location filename="browser.hxx" line="723"/>
|
||||
<source>done.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="708"/>
|
||||
<source>page load error.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="961"/>
|
||||
<location filename="browser.hxx" line="976"/>
|
||||
<source>%1</source>
|
||||
<comment>statusbar for hovered link %1=url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="445"/>
|
||||
<location filename="browser.hxx" line="448"/>
|
||||
<source>Forbidden: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="131"/>
|
||||
<location filename="browser.hxx" line="134"/>
|
||||
<source>SSL Not Supported</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="132"/>
|
||||
<location filename="browser.hxx" line="135"/>
|
||||
<source>SSL is not supported on your system</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="446"/>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<source>Access Denied</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="447"/>
|
||||
<location filename="browser.hxx" line="450"/>
|
||||
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="557"/>
|
||||
<location filename="browser.hxx" line="560"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="633"/>
|
||||
<location filename="browser.hxx" line="581"/>
|
||||
<location filename="browser.hxx" line="594"/>
|
||||
<location filename="browser.hxx" line="608"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>neutral find</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="616"/>
|
||||
<location filename="browser.hxx" line="626"/>
|
||||
<source>background-color: #ADA</source>
|
||||
<oldsource>background-color: #7F7</oldsource>
|
||||
<comment>text found</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="618"/>
|
||||
<location filename="browser.hxx" line="628"/>
|
||||
<source>background-color: #F77</source>
|
||||
<oldsource>background-color: lightred</oldsource>
|
||||
<comment>text not found</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="648"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="634"/>
|
||||
<location filename="browser.hxx" line="649"/>
|
||||
<source>%8
|
||||
Version: %1
|
||||
Builddate: %2
|
||||
@@ -357,22 +376,35 @@ openssl-%7</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="690"/>
|
||||
<location filename="browser.hxx" line="705"/>
|
||||
<source>%1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1097"/>
|
||||
<location filename="browser.hxx" line="1112"/>
|
||||
<source>Save File As ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1160"/>
|
||||
<location filename="browser.hxx" line="1174"/>
|
||||
<source>background-color: #F77</source>
|
||||
<oldsource>background-color: lightred</oldsource>
|
||||
<comment>invalid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1179"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>valid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1194"/>
|
||||
<source>authentication required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1172"/>
|
||||
<location filename="browser.hxx" line="1206"/>
|
||||
<source>ssl error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@@ -244,74 +244,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="442"/>
|
||||
<location filename="browser.hxx" line="445"/>
|
||||
<source>Checking: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="131"/>
|
||||
<location filename="browser.hxx" line="134"/>
|
||||
<source>SSL Not Supported</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="132"/>
|
||||
<location filename="browser.hxx" line="135"/>
|
||||
<source>SSL is not supported on your system</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="445"/>
|
||||
<location filename="browser.hxx" line="448"/>
|
||||
<source>Forbidden: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="446"/>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<source>Access Denied</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="447"/>
|
||||
<location filename="browser.hxx" line="450"/>
|
||||
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="453"/>
|
||||
<location filename="browser.hxx" line="456"/>
|
||||
<source>Reading: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="455"/>
|
||||
<location filename="browser.hxx" line="458"/>
|
||||
<source>Illegal URL: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="468"/>
|
||||
<location filename="browser.hxx" line="471"/>
|
||||
<source>Zoom: %1%</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="517"/>
|
||||
<location filename="browser.hxx" line="520"/>
|
||||
<source>Print Document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="538"/>
|
||||
<location filename="browser.hxx" line="541"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="557"/>
|
||||
<location filename="browser.hxx" line="560"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="633"/>
|
||||
<location filename="browser.hxx" line="581"/>
|
||||
<location filename="browser.hxx" line="594"/>
|
||||
<location filename="browser.hxx" line="608"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>neutral find</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="616"/>
|
||||
<location filename="browser.hxx" line="626"/>
|
||||
<source>background-color: #ADA</source>
|
||||
<oldsource>background-color: #7F7</oldsource>
|
||||
<comment>text found</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="618"/>
|
||||
<location filename="browser.hxx" line="628"/>
|
||||
<source>background-color: #F77</source>
|
||||
<oldsource>background-color: lightred</oldsource>
|
||||
<comment>text not found</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="648"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="634"/>
|
||||
<location filename="browser.hxx" line="649"/>
|
||||
<source>%8
|
||||
Version: %1
|
||||
Builddate: %2
|
||||
@@ -331,43 +355,51 @@ openssl-%7</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="690"/>
|
||||
<location filename="browser.hxx" line="705"/>
|
||||
<source>%1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="695"/>
|
||||
<location filename="browser.hxx" line="710"/>
|
||||
<source>Info: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="708"/>
|
||||
<location filename="browser.hxx" line="723"/>
|
||||
<source>done.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="708"/>
|
||||
<source>page load error.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="961"/>
|
||||
<location filename="browser.hxx" line="976"/>
|
||||
<source>%1</source>
|
||||
<comment>statusbar for hovered link %1=url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1097"/>
|
||||
<location filename="browser.hxx" line="1112"/>
|
||||
<source>Save File As ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1160"/>
|
||||
<location filename="browser.hxx" line="1174"/>
|
||||
<source>background-color: #F77</source>
|
||||
<oldsource>background-color: lightred</oldsource>
|
||||
<comment>invalid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1179"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>valid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1194"/>
|
||||
<source>authentication required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1172"/>
|
||||
<location filename="browser.hxx" line="1206"/>
|
||||
<source>ssl error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@@ -246,98 +246,117 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="442"/>
|
||||
<location filename="browser.hxx" line="445"/>
|
||||
<source>Checking: %1</source>
|
||||
<oldsource>Opening: %1</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="453"/>
|
||||
<location filename="browser.hxx" line="456"/>
|
||||
<source>Reading: %1</source>
|
||||
<oldsource>Reading: %1%</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="468"/>
|
||||
<location filename="browser.hxx" line="471"/>
|
||||
<source>Zoom: %1%</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="455"/>
|
||||
<location filename="browser.hxx" line="458"/>
|
||||
<source>Illegal URL: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="517"/>
|
||||
<location filename="browser.hxx" line="520"/>
|
||||
<source>Print Document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="538"/>
|
||||
<location filename="browser.hxx" line="541"/>
|
||||
<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="695"/>
|
||||
<location filename="browser.hxx" line="710"/>
|
||||
<source>Info: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="708"/>
|
||||
<location filename="browser.hxx" line="723"/>
|
||||
<source>done.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="708"/>
|
||||
<source>page load error.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="961"/>
|
||||
<location filename="browser.hxx" line="976"/>
|
||||
<source>%1</source>
|
||||
<comment>statusbar for hovered link %1=url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="445"/>
|
||||
<location filename="browser.hxx" line="448"/>
|
||||
<source>Forbidden: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="131"/>
|
||||
<location filename="browser.hxx" line="134"/>
|
||||
<source>SSL Not Supported</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="132"/>
|
||||
<location filename="browser.hxx" line="135"/>
|
||||
<source>SSL is not supported on your system</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="446"/>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<source>Access Denied</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="447"/>
|
||||
<location filename="browser.hxx" line="450"/>
|
||||
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="557"/>
|
||||
<location filename="browser.hxx" line="560"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="633"/>
|
||||
<location filename="browser.hxx" line="581"/>
|
||||
<location filename="browser.hxx" line="594"/>
|
||||
<location filename="browser.hxx" line="608"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>neutral find</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="616"/>
|
||||
<location filename="browser.hxx" line="626"/>
|
||||
<source>background-color: #ADA</source>
|
||||
<oldsource>background-color: #7F7</oldsource>
|
||||
<comment>text found</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="618"/>
|
||||
<location filename="browser.hxx" line="628"/>
|
||||
<source>background-color: #F77</source>
|
||||
<oldsource>background-color: lightred</oldsource>
|
||||
<comment>text not found</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="648"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="634"/>
|
||||
<location filename="browser.hxx" line="649"/>
|
||||
<source>%8
|
||||
Version: %1
|
||||
Builddate: %2
|
||||
@@ -357,22 +376,35 @@ openssl-%7</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="690"/>
|
||||
<location filename="browser.hxx" line="705"/>
|
||||
<source>%1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1097"/>
|
||||
<location filename="browser.hxx" line="1112"/>
|
||||
<source>Save File As ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1160"/>
|
||||
<location filename="browser.hxx" line="1174"/>
|
||||
<source>background-color: #F77</source>
|
||||
<oldsource>background-color: lightred</oldsource>
|
||||
<comment>invalid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1179"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>valid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1194"/>
|
||||
<source>authentication required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1172"/>
|
||||
<location filename="browser.hxx" line="1206"/>
|
||||
<source>ssl error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@@ -246,98 +246,117 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="442"/>
|
||||
<location filename="browser.hxx" line="445"/>
|
||||
<source>Checking: %1</source>
|
||||
<oldsource>Opening: %1</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="453"/>
|
||||
<location filename="browser.hxx" line="456"/>
|
||||
<source>Reading: %1</source>
|
||||
<oldsource>Reading: %1%</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="468"/>
|
||||
<location filename="browser.hxx" line="471"/>
|
||||
<source>Zoom: %1%</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="455"/>
|
||||
<location filename="browser.hxx" line="458"/>
|
||||
<source>Illegal URL: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="517"/>
|
||||
<location filename="browser.hxx" line="520"/>
|
||||
<source>Print Document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="538"/>
|
||||
<location filename="browser.hxx" line="541"/>
|
||||
<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="695"/>
|
||||
<location filename="browser.hxx" line="710"/>
|
||||
<source>Info: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="708"/>
|
||||
<location filename="browser.hxx" line="723"/>
|
||||
<source>done.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="708"/>
|
||||
<source>page load error.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="961"/>
|
||||
<location filename="browser.hxx" line="976"/>
|
||||
<source>%1</source>
|
||||
<comment>statusbar for hovered link %1=url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="445"/>
|
||||
<location filename="browser.hxx" line="448"/>
|
||||
<source>Forbidden: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="131"/>
|
||||
<location filename="browser.hxx" line="134"/>
|
||||
<source>SSL Not Supported</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="132"/>
|
||||
<location filename="browser.hxx" line="135"/>
|
||||
<source>SSL is not supported on your system</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="446"/>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<source>Access Denied</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="447"/>
|
||||
<location filename="browser.hxx" line="450"/>
|
||||
<source><p>Access denied due to security considerations.</p><p>You are not allowed to connect to %1.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="557"/>
|
||||
<location filename="browser.hxx" line="560"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="633"/>
|
||||
<location filename="browser.hxx" line="581"/>
|
||||
<location filename="browser.hxx" line="594"/>
|
||||
<location filename="browser.hxx" line="608"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>neutral find</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="616"/>
|
||||
<location filename="browser.hxx" line="626"/>
|
||||
<source>background-color: #ADA</source>
|
||||
<oldsource>background-color: #7F7</oldsource>
|
||||
<comment>text found</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="618"/>
|
||||
<location filename="browser.hxx" line="628"/>
|
||||
<source>background-color: #F77</source>
|
||||
<oldsource>background-color: lightred</oldsource>
|
||||
<comment>text not found</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="648"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="634"/>
|
||||
<location filename="browser.hxx" line="649"/>
|
||||
<source>%8
|
||||
Version: %1
|
||||
Builddate: %2
|
||||
@@ -357,22 +376,35 @@ openssl-%7</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="690"/>
|
||||
<location filename="browser.hxx" line="705"/>
|
||||
<source>%1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1097"/>
|
||||
<location filename="browser.hxx" line="1112"/>
|
||||
<source>Save File As ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1160"/>
|
||||
<location filename="browser.hxx" line="1174"/>
|
||||
<source>background-color: #F77</source>
|
||||
<oldsource>background-color: lightred</oldsource>
|
||||
<comment>invalid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1179"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>valid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1194"/>
|
||||
<source>authentication required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1172"/>
|
||||
<location filename="browser.hxx" line="1206"/>
|
||||
<source>ssl error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
Reference in New Issue
Block a user