icons are now within the line-edit and background is transparent; refs #93
@@ -13,6 +13,7 @@
|
||||
#include <QtGui/QLineEdit>
|
||||
#include <QtGui/QProgressBar>
|
||||
#include <QtGui/QComboBox>
|
||||
#include <QtGui/QToolButton>
|
||||
#include <QtGui/QSlider>
|
||||
#include <QtGui/QMessageBox>
|
||||
#include <QtGui/QPrinter>
|
||||
@@ -84,6 +85,7 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
_zoom->setTickPosition(QSlider::TicksAbove);
|
||||
assert(connect(_zoom, SIGNAL(valueChanged(int)), SLOT(zoom(int))));
|
||||
_url = new QComboBox(_toolbar);
|
||||
_url->setLineEdit(new ButtonLineEdit(_url));
|
||||
_url->setSizePolicy(QSizePolicy(QSizePolicy::Expanding,
|
||||
QSizePolicy::Preferred));
|
||||
_url->setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLength);
|
||||
@@ -118,12 +120,15 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
SLOT(load())));
|
||||
assert(connect(_url->lineEdit(), SIGNAL(textChanged(QString)),
|
||||
SLOT(goodUrl())));
|
||||
_toolbar->addAction(actionClearLocation);
|
||||
|
||||
dynamic_cast<ButtonLineEdit*>(_url->lineEdit())->add(actionAddBookmark);
|
||||
|
||||
dynamic_cast<ButtonLineEdit*>(_url->lineEdit())->add
|
||||
(actionClearLocation);
|
||||
assert(connect(actionClearLocation, SIGNAL(triggered()),
|
||||
_url, SLOT(clearEditText())));
|
||||
assert(connect(actionClearLocation, SIGNAL(triggered()),
|
||||
_url, SLOT(setFocus())));
|
||||
_toolbar->addAction(actionAddBookmark);
|
||||
}
|
||||
if (!_kiosk && _settings.flag("SaveWindowState") && _settings())
|
||||
loadWin(urls.size());
|
||||
@@ -1186,14 +1191,14 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
|
||||
void badUrl() {
|
||||
if (_url && _url->lineEdit())
|
||||
_url->lineEdit()
|
||||
->setStyleSheet(tr("background-color: #F77", "invalid url"));
|
||||
dynamic_cast<ButtonLineEdit*>(_url->lineEdit())
|
||||
->changeStyleSheet(tr("background-color: #F77", "invalid url"));
|
||||
}
|
||||
|
||||
void goodUrl() {
|
||||
if (_url && _url->lineEdit())
|
||||
_url->lineEdit()
|
||||
->setStyleSheet(tr("background-color: white", "valid url"));
|
||||
dynamic_cast<ButtonLineEdit*>(_url->lineEdit())
|
||||
->changeStyleSheet(tr("background-color: white", "valid url"));
|
||||
}
|
||||
|
||||
void downloadError(QString error) {
|
||||
@@ -1273,6 +1278,51 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
class ButtonLineEdit: public QLineEdit {
|
||||
public:
|
||||
ButtonLineEdit(QWidget* p): QLineEdit(p) {}
|
||||
QToolButton* add(QAction* a) {
|
||||
QToolButton* b(new QToolButton(this));
|
||||
b->setDefaultAction(a);
|
||||
add(b);
|
||||
return b;
|
||||
}
|
||||
ButtonLineEdit& add(QToolButton* b) {
|
||||
b->setParent(this);
|
||||
b->setStyleSheet("QToolButton { border: none; padding: 0; }");
|
||||
b->setCursor(Qt::ArrowCursor);
|
||||
_buttons.push_back(b);
|
||||
resizeEvent(0);
|
||||
return *this;
|
||||
}
|
||||
ButtonLineEdit& changeStyleSheet(QString s) {
|
||||
_style = s;
|
||||
resizeEvent(0);
|
||||
return *this;
|
||||
}
|
||||
protected:
|
||||
void resizeEvent(QResizeEvent*) {
|
||||
QSize sz;
|
||||
int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
|
||||
for (Buttons::iterator it(_buttons.begin());
|
||||
it!=_buttons.end(); ++it) {
|
||||
if (sz.isEmpty()) sz = (*it)->sizeHint();
|
||||
else sz.setWidth(sz.width()+(*it)->sizeHint().width());
|
||||
(*it)->move(rect().right() - frameWidth - sz.width(),
|
||||
(rect().bottom() + 1 - (*it)->sizeHint().height())/2);
|
||||
}
|
||||
setStyleSheet(QString("QLineEdit { padding-right: %1px; %2 }")
|
||||
.arg(sz.width() + frameWidth + 1)
|
||||
.arg(_style));
|
||||
}
|
||||
private:
|
||||
typedef QList<QToolButton*> Buttons;
|
||||
Buttons _buttons;
|
||||
QString _style;
|
||||
};
|
||||
|
||||
private:
|
||||
|
||||
QComboBox* _url;
|
||||
|
||||
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 25 KiB |
@@ -271,117 +271,117 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="444"/>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<source>Checking: %1</source>
|
||||
<oldsource>Opening: %1</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="455"/>
|
||||
<location filename="browser.hxx" line="460"/>
|
||||
<source>Reading: %1</source>
|
||||
<oldsource>Reading: %1%</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="470"/>
|
||||
<location filename="browser.hxx" line="475"/>
|
||||
<source>Zoom: %1%</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="457"/>
|
||||
<location filename="browser.hxx" line="462"/>
|
||||
<source>Illegal URL: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="519"/>
|
||||
<location filename="browser.hxx" line="524"/>
|
||||
<source>Print Document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="540"/>
|
||||
<location filename="browser.hxx" line="545"/>
|
||||
<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="709"/>
|
||||
<location filename="browser.hxx" line="714"/>
|
||||
<source>Info: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="723"/>
|
||||
<location filename="browser.hxx" line="728"/>
|
||||
<source>done.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="978"/>
|
||||
<location filename="browser.hxx" line="983"/>
|
||||
<source>%1</source>
|
||||
<comment>statusbar for hovered link %1=url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="447"/>
|
||||
<location filename="browser.hxx" line="452"/>
|
||||
<source>Forbidden: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="133"/>
|
||||
<location filename="browser.hxx" line="138"/>
|
||||
<source>SSL Not Supported</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="134"/>
|
||||
<location filename="browser.hxx" line="139"/>
|
||||
<source>SSL is not supported on your system</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="448"/>
|
||||
<location filename="browser.hxx" line="453"/>
|
||||
<source>Access Denied</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<location filename="browser.hxx" line="454"/>
|
||||
<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="559"/>
|
||||
<location filename="browser.hxx" line="564"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="580"/>
|
||||
<location filename="browser.hxx" line="593"/>
|
||||
<location filename="browser.hxx" line="607"/>
|
||||
<location filename="browser.hxx" line="585"/>
|
||||
<location filename="browser.hxx" line="598"/>
|
||||
<location filename="browser.hxx" line="612"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>neutral find</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="615"/>
|
||||
<location filename="browser.hxx" line="625"/>
|
||||
<location filename="browser.hxx" line="620"/>
|
||||
<location filename="browser.hxx" line="630"/>
|
||||
<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="617"/>
|
||||
<location filename="browser.hxx" line="627"/>
|
||||
<location filename="browser.hxx" line="622"/>
|
||||
<location filename="browser.hxx" line="632"/>
|
||||
<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="647"/>
|
||||
<location filename="browser.hxx" line="652"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="648"/>
|
||||
<location filename="browser.hxx" line="653"/>
|
||||
<source>%8
|
||||
Version: %1
|
||||
Builddate: %2
|
||||
@@ -401,41 +401,40 @@ openssl-%7</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="704"/>
|
||||
<location filename="browser.hxx" line="709"/>
|
||||
<source>%1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1114"/>
|
||||
<location filename="browser.hxx" line="1119"/>
|
||||
<source>Save File As ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1174"/>
|
||||
<location filename="browser.hxx" line="1179"/>
|
||||
<source>errors</source>
|
||||
<comment>show error log</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1190"/>
|
||||
<location filename="browser.hxx" line="1195"/>
|
||||
<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="1196"/>
|
||||
<location filename="browser.hxx" line="1201"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>valid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1211"/>
|
||||
<location filename="browser.hxx" line="1216"/>
|
||||
<source>authentication required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1223"/>
|
||||
<location filename="browser.hxx" line="1228"/>
|
||||
<source>ssl error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@@ -269,98 +269,98 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="444"/>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<source>Checking: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="133"/>
|
||||
<location filename="browser.hxx" line="138"/>
|
||||
<source>SSL Not Supported</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="134"/>
|
||||
<location filename="browser.hxx" line="139"/>
|
||||
<source>SSL is not supported on your system</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="447"/>
|
||||
<location filename="browser.hxx" line="452"/>
|
||||
<source>Forbidden: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="448"/>
|
||||
<location filename="browser.hxx" line="453"/>
|
||||
<source>Access Denied</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<location filename="browser.hxx" line="454"/>
|
||||
<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="455"/>
|
||||
<location filename="browser.hxx" line="460"/>
|
||||
<source>Reading: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="457"/>
|
||||
<location filename="browser.hxx" line="462"/>
|
||||
<source>Illegal URL: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="470"/>
|
||||
<location filename="browser.hxx" line="475"/>
|
||||
<source>Zoom: %1%</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="519"/>
|
||||
<location filename="browser.hxx" line="524"/>
|
||||
<source>Print Document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="540"/>
|
||||
<location filename="browser.hxx" line="545"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionBack_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="559"/>
|
||||
<location filename="browser.hxx" line="564"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="580"/>
|
||||
<location filename="browser.hxx" line="593"/>
|
||||
<location filename="browser.hxx" line="607"/>
|
||||
<location filename="browser.hxx" line="585"/>
|
||||
<location filename="browser.hxx" line="598"/>
|
||||
<location filename="browser.hxx" line="612"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>neutral find</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="615"/>
|
||||
<location filename="browser.hxx" line="625"/>
|
||||
<location filename="browser.hxx" line="620"/>
|
||||
<location filename="browser.hxx" line="630"/>
|
||||
<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="617"/>
|
||||
<location filename="browser.hxx" line="627"/>
|
||||
<location filename="browser.hxx" line="622"/>
|
||||
<location filename="browser.hxx" line="632"/>
|
||||
<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="647"/>
|
||||
<location filename="browser.hxx" line="652"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="648"/>
|
||||
<location filename="browser.hxx" line="653"/>
|
||||
<source>%8
|
||||
Version: %1
|
||||
Builddate: %2
|
||||
@@ -380,57 +380,56 @@ openssl-%7</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="704"/>
|
||||
<location filename="browser.hxx" line="709"/>
|
||||
<source>%1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="709"/>
|
||||
<location filename="browser.hxx" line="714"/>
|
||||
<source>Info: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="723"/>
|
||||
<location filename="browser.hxx" line="728"/>
|
||||
<source>done.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="978"/>
|
||||
<location filename="browser.hxx" line="983"/>
|
||||
<source>%1</source>
|
||||
<comment>statusbar for hovered link %1=url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1114"/>
|
||||
<location filename="browser.hxx" line="1119"/>
|
||||
<source>Save File As ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1174"/>
|
||||
<location filename="browser.hxx" line="1179"/>
|
||||
<source>errors</source>
|
||||
<comment>show error log</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1190"/>
|
||||
<location filename="browser.hxx" line="1195"/>
|
||||
<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="1196"/>
|
||||
<location filename="browser.hxx" line="1201"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>valid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1211"/>
|
||||
<location filename="browser.hxx" line="1216"/>
|
||||
<source>authentication required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1223"/>
|
||||
<location filename="browser.hxx" line="1228"/>
|
||||
<source>ssl error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@@ -271,117 +271,117 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="444"/>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<source>Checking: %1</source>
|
||||
<oldsource>Opening: %1</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="455"/>
|
||||
<location filename="browser.hxx" line="460"/>
|
||||
<source>Reading: %1</source>
|
||||
<oldsource>Reading: %1%</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="470"/>
|
||||
<location filename="browser.hxx" line="475"/>
|
||||
<source>Zoom: %1%</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="457"/>
|
||||
<location filename="browser.hxx" line="462"/>
|
||||
<source>Illegal URL: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="519"/>
|
||||
<location filename="browser.hxx" line="524"/>
|
||||
<source>Print Document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="540"/>
|
||||
<location filename="browser.hxx" line="545"/>
|
||||
<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="709"/>
|
||||
<location filename="browser.hxx" line="714"/>
|
||||
<source>Info: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="723"/>
|
||||
<location filename="browser.hxx" line="728"/>
|
||||
<source>done.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="978"/>
|
||||
<location filename="browser.hxx" line="983"/>
|
||||
<source>%1</source>
|
||||
<comment>statusbar for hovered link %1=url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="447"/>
|
||||
<location filename="browser.hxx" line="452"/>
|
||||
<source>Forbidden: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="133"/>
|
||||
<location filename="browser.hxx" line="138"/>
|
||||
<source>SSL Not Supported</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="134"/>
|
||||
<location filename="browser.hxx" line="139"/>
|
||||
<source>SSL is not supported on your system</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="448"/>
|
||||
<location filename="browser.hxx" line="453"/>
|
||||
<source>Access Denied</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<location filename="browser.hxx" line="454"/>
|
||||
<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="559"/>
|
||||
<location filename="browser.hxx" line="564"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="580"/>
|
||||
<location filename="browser.hxx" line="593"/>
|
||||
<location filename="browser.hxx" line="607"/>
|
||||
<location filename="browser.hxx" line="585"/>
|
||||
<location filename="browser.hxx" line="598"/>
|
||||
<location filename="browser.hxx" line="612"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>neutral find</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="615"/>
|
||||
<location filename="browser.hxx" line="625"/>
|
||||
<location filename="browser.hxx" line="620"/>
|
||||
<location filename="browser.hxx" line="630"/>
|
||||
<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="617"/>
|
||||
<location filename="browser.hxx" line="627"/>
|
||||
<location filename="browser.hxx" line="622"/>
|
||||
<location filename="browser.hxx" line="632"/>
|
||||
<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="647"/>
|
||||
<location filename="browser.hxx" line="652"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="648"/>
|
||||
<location filename="browser.hxx" line="653"/>
|
||||
<source>%8
|
||||
Version: %1
|
||||
Builddate: %2
|
||||
@@ -401,41 +401,40 @@ openssl-%7</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="704"/>
|
||||
<location filename="browser.hxx" line="709"/>
|
||||
<source>%1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1114"/>
|
||||
<location filename="browser.hxx" line="1119"/>
|
||||
<source>Save File As ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1174"/>
|
||||
<location filename="browser.hxx" line="1179"/>
|
||||
<source>errors</source>
|
||||
<comment>show error log</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1190"/>
|
||||
<location filename="browser.hxx" line="1195"/>
|
||||
<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="1196"/>
|
||||
<location filename="browser.hxx" line="1201"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>valid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1211"/>
|
||||
<location filename="browser.hxx" line="1216"/>
|
||||
<source>authentication required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1223"/>
|
||||
<location filename="browser.hxx" line="1228"/>
|
||||
<source>ssl error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@@ -271,117 +271,117 @@
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="444"/>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<source>Checking: %1</source>
|
||||
<oldsource>Opening: %1</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="455"/>
|
||||
<location filename="browser.hxx" line="460"/>
|
||||
<source>Reading: %1</source>
|
||||
<oldsource>Reading: %1%</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="470"/>
|
||||
<location filename="browser.hxx" line="475"/>
|
||||
<source>Zoom: %1%</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="457"/>
|
||||
<location filename="browser.hxx" line="462"/>
|
||||
<source>Illegal URL: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="519"/>
|
||||
<location filename="browser.hxx" line="524"/>
|
||||
<source>Print Document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="540"/>
|
||||
<location filename="browser.hxx" line="545"/>
|
||||
<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="709"/>
|
||||
<location filename="browser.hxx" line="714"/>
|
||||
<source>Info: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="723"/>
|
||||
<location filename="browser.hxx" line="728"/>
|
||||
<source>done.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="978"/>
|
||||
<location filename="browser.hxx" line="983"/>
|
||||
<source>%1</source>
|
||||
<comment>statusbar for hovered link %1=url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="447"/>
|
||||
<location filename="browser.hxx" line="452"/>
|
||||
<source>Forbidden: %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="133"/>
|
||||
<location filename="browser.hxx" line="138"/>
|
||||
<source>SSL Not Supported</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="134"/>
|
||||
<location filename="browser.hxx" line="139"/>
|
||||
<source>SSL is not supported on your system</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="448"/>
|
||||
<location filename="browser.hxx" line="453"/>
|
||||
<source>Access Denied</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="449"/>
|
||||
<location filename="browser.hxx" line="454"/>
|
||||
<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="559"/>
|
||||
<location filename="browser.hxx" line="564"/>
|
||||
<source>%1 - %2</source>
|
||||
<comment>statusbar actionForward_hovered %1=url %2=title</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="580"/>
|
||||
<location filename="browser.hxx" line="593"/>
|
||||
<location filename="browser.hxx" line="607"/>
|
||||
<location filename="browser.hxx" line="585"/>
|
||||
<location filename="browser.hxx" line="598"/>
|
||||
<location filename="browser.hxx" line="612"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>neutral find</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="615"/>
|
||||
<location filename="browser.hxx" line="625"/>
|
||||
<location filename="browser.hxx" line="620"/>
|
||||
<location filename="browser.hxx" line="630"/>
|
||||
<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="617"/>
|
||||
<location filename="browser.hxx" line="627"/>
|
||||
<location filename="browser.hxx" line="622"/>
|
||||
<location filename="browser.hxx" line="632"/>
|
||||
<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="647"/>
|
||||
<location filename="browser.hxx" line="652"/>
|
||||
<source>About</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="648"/>
|
||||
<location filename="browser.hxx" line="653"/>
|
||||
<source>%8
|
||||
Version: %1
|
||||
Builddate: %2
|
||||
@@ -401,41 +401,40 @@ openssl-%7</oldsource>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="704"/>
|
||||
<location filename="browser.hxx" line="709"/>
|
||||
<source>%1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1114"/>
|
||||
<location filename="browser.hxx" line="1119"/>
|
||||
<source>Save File As ...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1174"/>
|
||||
<location filename="browser.hxx" line="1179"/>
|
||||
<source>errors</source>
|
||||
<comment>show error log</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1190"/>
|
||||
<location filename="browser.hxx" line="1195"/>
|
||||
<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="1196"/>
|
||||
<location filename="browser.hxx" line="1201"/>
|
||||
<source>background-color: white</source>
|
||||
<comment>valid url</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1211"/>
|
||||
<location filename="browser.hxx" line="1216"/>
|
||||
<source>authentication required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1223"/>
|
||||
<location filename="browser.hxx" line="1228"/>
|
||||
<source>ssl error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||