undo last change r367 due to typo

This commit is contained in:
Marc Wäckerlin
2015-03-08 19:14:20 +00:00
parent 205f1ac725
commit 49a29e3657
55 changed files with 90 additions and 175 deletions
+4 -8
View File
@@ -5,21 +5,17 @@
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>swisssurfer</string>
<string>swisssurfer</string>
<string>swissbrowser</string>
<key>CFBundleGetInfoString</key>
<string>SwissSign, (c) 2011</string>
<key>CFBundleIconFile</key>
<string>swisssurfer.icns</string>
<string>swisssurfer.icns</string>
<string>swissbrowser.icns</string>
<key>CFBundleIdentifier</key>
<string>com.swisssign.swisssurfer</string>
<string>com.swisssign.swisssurfer</string>
<string>com.swisssign.swissbrowser</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>SwissSurfer</string>
<string>SwissSurfer</string>
<string>SwissBrowser</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
+2 -4
View File
@@ -1019,8 +1019,7 @@ class Browser: public QMainWindow, protected Ui::Browser {
void resetWindowTitle() {
if (qobject_cast<QWebView*>(_tabs->currentWidget()))
setWindowTitle(trUtf8("[%1] - %2 - SwissSurfer (%3)",
setWindowTitle(trUtf8("[%1] - %2 - SwissSurfer (%3)",
setWindowTitle(trUtf8("[%1] - %2 - SwissBrowser (%3)",
"main window title "
"%1 = host name "
"%2 = page title "
@@ -1031,8 +1030,7 @@ class Browser: public QMainWindow, protected Ui::Browser {
->title()))
.arg(_tabs->count()));
else
setWindowTitle(trUtf8("SwissSurfer", "window title with no tab"));
setWindowTitle(trUtf8("SwissSurfer", "window title with no tab"));
setWindowTitle(trUtf8("SwissBrowser", "window title with no tab"));
}
void statusBarMessage(const QString& text) {
+2 -4
View File
@@ -11,13 +11,11 @@
</rect>
</property>
<property name="windowTitle">
<string>SwissSurfer</string>
<string>SwissSurfer</string>
<string>SwissBrowser</string>
</property>
<property name="windowIcon">
<iconset resource="resources.qrc">
<normaloff>:/icons/32x32/swisssurfer.png</normaloff>:/icons/32x32/swisssurfer.png</iconset>
<normaloff>:/icons/32x32/swisssurfer.png</normaloff>:/icons/32x32/swisssurfer.png</iconset>
<normaloff>:/icons/32x32/swissbrowser.png</normaloff>:/icons/32x32/swissbrowser.png</iconset>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout_3">
+5 -10
View File
@@ -29,8 +29,7 @@
#include <memory>
//! @defgroup browser The SwissSurfer Executable and Main Window
//! @defgroup browser The SwissSurfer Executable and Main Window
//! @defgroup browser The SwissBrowser Executable and Main Window
//! @defgroup pkcs11 The PKCS#11 Client Authentication
//! @defgroup qbrowserlib The Swiss Browser Library
//! @defgroup designer Qt Designer Plugin for Browser Related Widgets
@@ -116,18 +115,15 @@ int main(int argv, char** argc) try {
QTextCodec::setCodecForLocale(utf8);
QTextCodec::setCodecForTr(utf8);
QApplication app(argv, argc);
app.setWindowIcon(QIcon(":/icons/32x32/swisssurfer.png"));
app.setWindowIcon(QIcon(":/icons/32x32/swisssurfer.png"));
app.setApplicationName(QObject::trUtf8("SwissSurfer", "application name"));
app.setApplicationName(QObject::trUtf8("SwissSurfer", "application name"));
app.setWindowIcon(QIcon(":/icons/32x32/swissbrowser.png"));
app.setApplicationName(QObject::trUtf8("SwissBrowser", "application name"));
app.setApplicationVersion(VERSION);
QTranslator qtTranslator;
if (env().contains("LANGUAGE")) QLocale::setDefault(env()["LANGUAGE"]);
qtTranslator.load(":/language/qt_" + QLocale().name());
app.installTranslator(&qtTranslator);
QTranslator appTranslator;
appTranslator.load(":/language/swisssurfer_"+ QLocale().name());
appTranslator.load(":/language/swisssurfer_"+ QLocale().name());
appTranslator.load(":/language/swissbrowser_"+ QLocale().name());
app.installTranslator(&appTranslator);
//----------------------------------------------------------------------------
TMP=QDir::toNativeSeparators(QDir::tempPath());
@@ -155,8 +151,7 @@ int main(int argv, char** argc) try {
bool editbookmarks(false);
QStringList args(app.arguments());
std::auto_ptr<QSettings> settings
(std::auto_ptr<QSettings>(new QSettings("SwissSign", "SwissSurfer")));
(std::auto_ptr<QSettings>(new QSettings("SwissSign", "SwissSurfer")));
(std::auto_ptr<QSettings>(new QSettings("SwissSign", "SwissBrowser")));
for (QStringList::iterator it(args.begin()); ++it!=args.end();)
if (*it=="-h" || *it=="--help" || *it=="-help" || *it=="/?") {
std::cout<<helptext().toStdString()<<std::endl;
+2 -4
View File
@@ -38,8 +38,7 @@ ALL_SRC = ${top_srcdir}/src/*.[ch]xx ${top_srcdir}/src/*.ui $(shell find ${top_s
QMAKE_PROJECT = qmake.pro
QMAKE_MAKEFILE = makefile.qmake
bin_SCRIPTS = swisssurfer
bin_SCRIPTS = swisssurfer
bin_SCRIPTS = swissbrowser
QMAKE_TARGET = ${bin_SCRIPTS}
TARGETS = ${QMAKE_TARGET}
@@ -105,7 +104,6 @@ clean-local:
CLEANFILES = ${TARGETS} ${TARGETS:%=%.exe} $(LANGS:%=@PACKAGENAME@_%.qm) \
*.o *.obj qrc_*.cpp ui_*.h moc_*.cpp \
${QMAKE_TARGET} object_script.swisssurfer \
${QMAKE_TARGET} object_script.swisssurfer \
${QMAKE_TARGET} object_script.swissbrowser \
@PACKAGENAME@.xpm
MAINTAINERCLEANFILES = makefile.in ${QMAKE_MAKEFILE}
+2 -4
View File
@@ -183,8 +183,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Serif&apos;; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -401,8 +400,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Serif&apos;; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
+2 -4
View File
@@ -183,8 +183,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Serif&apos;; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -401,8 +400,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Serif&apos;; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
+2 -4
View File
@@ -183,8 +183,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Serif&apos;; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -401,8 +400,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Serif&apos;; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
+2 -4
View File
@@ -183,8 +183,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Serif&apos;; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -401,8 +400,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Serif&apos;; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Verdana&apos;; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
+2 -4
View File
@@ -53,8 +53,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Verdana'; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Verdana'; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Verdana'; font-size:medium; color:#363534;&quot;&gt;Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>DNS prefetch enabled</string>
@@ -343,8 +342,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Verdana'; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Verdana'; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Verdana'; font-size:medium; color:#363534;&quot;&gt;Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="text">
<string>private browsing</string>
+1 -2
View File
@@ -29,8 +29,7 @@ win32 {
QMAKE_LIBS += /opt/local/i586-mingw32msvc/lib/winscard.a
CONFIG += release
}
ICON = swisssurfer.icns
ICON = swisssurfer.icns
ICON = swissbrowser.icns
TRANSLATIONS = @PACKAGENAME@_en.ts \
@PACKAGENAME@_de.ts \
+2 -4
View File
@@ -1,8 +1,7 @@
<RCC>
<qresource prefix="icons/32x32">
<file alias="butt32_49.png">resources/icons/32x32/butt32_49.png</file>
<file alias="swisssurfer.png">resources/icons/32x32/swisssurfer.png</file>
<file alias="swisssurfer.png">resources/icons/32x32/swisssurfer.png</file>
<file alias="swissbrowser.png">resources/icons/32x32/swissbrowser.png</file>
<file alias="butt32_01.png">resources/icons/32x32/butt32_01.png</file>
<file alias="butt32_02.png">resources/icons/32x32/butt32_02.png</file>
<file alias="butt32_03.png">resources/icons/32x32/butt32_03.png</file>
@@ -19,8 +18,7 @@
</qresource>
<qresource prefix="icons/16x16">
<file alias="butt16_49.png">resources/icons/16x16/butt16_49.png</file>
<file alias="swisssurfer.png">resources/icons/16x16/swisssurfer.png</file>
<file alias="swisssurfer.png">resources/icons/16x16/swisssurfer.png</file>
<file alias="swissbrowser.png">resources/icons/16x16/swissbrowser.png</file>
<file alias="butt16_01.png">resources/icons/16x16/butt16_01.png</file>
<file alias="butt16_02.png">resources/icons/16x16/butt16_02.png</file>
<file alias="butt16_03.png">resources/icons/16x16/butt16_03.png</file>

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Before

Width:  |  Height:  |  Size: 942 B

After

Width:  |  Height:  |  Size: 942 B

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Before

Width:  |  Height:  |  Size: 345 KiB

After

Width:  |  Height:  |  Size: 345 KiB

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

+12
View File
@@ -0,0 +1,12 @@
[Desktop Entry]
Type=Application
Name=swissbrowser
Name[de]=swissbrowser
Name[fr]=swissbrowser
Name[it]=swissbrowser
Name[en]=swissbrowser
GenericName=SwissBrowser
Comment=Browser with SuisseID login
Icon=/usr/share/swissbrowser/swissbrowser.png
Categories=Network;WebBrowser
Exec=/usr/bin/swissbrowser
@@ -405,8 +405,7 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="browser.ui" line="14"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -456,15 +455,13 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="browser.hxx" line="1017"/>
<source>[%1] - %2 - SwissSurfer (%3)</source>
<source>[%1] - %2 - SwissSurfer (%3)</source>
<source>[%1] - %2 - SwissBrowser (%3)</source>
<comment>main window title %1 = host name %2 = page title %3 = number of open tabs</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="browser.hxx" line="1028"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<comment>window title with no tab</comment>
<translation type="unfinished"></translation>
</message>
@@ -765,8 +762,7 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="main.cxx" line="119"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<comment>application name</comment>
<translation type="unfinished"></translation>
</message>
@@ -405,8 +405,7 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="browser.ui" line="14"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -456,15 +455,13 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="browser.hxx" line="1017"/>
<source>[%1] - %2 - SwissSurfer (%3)</source>
<source>[%1] - %2 - SwissSurfer (%3)</source>
<source>[%1] - %2 - SwissBrowser (%3)</source>
<comment>main window title %1 = host name %2 = page title %3 = number of open tabs</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="browser.hxx" line="1028"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<comment>window title with no tab</comment>
<translation type="unfinished"></translation>
</message>
@@ -765,8 +762,7 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="main.cxx" line="119"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<comment>application name</comment>
<translation type="unfinished"></translation>
</message>
@@ -405,8 +405,7 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="browser.ui" line="14"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -456,15 +455,13 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="browser.hxx" line="1017"/>
<source>[%1] - %2 - SwissSurfer (%3)</source>
<source>[%1] - %2 - SwissSurfer (%3)</source>
<source>[%1] - %2 - SwissBrowser (%3)</source>
<comment>main window title %1 = host name %2 = page title %3 = number of open tabs</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="browser.hxx" line="1028"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<comment>window title with no tab</comment>
<translation type="unfinished"></translation>
</message>
@@ -765,8 +762,7 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="main.cxx" line="119"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<comment>application name</comment>
<translation type="unfinished"></translation>
</message>
@@ -405,8 +405,7 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="browser.ui" line="14"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<translation type="unfinished"></translation>
</message>
<message>
@@ -456,15 +455,13 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="browser.hxx" line="1017"/>
<source>[%1] - %2 - SwissSurfer (%3)</source>
<source>[%1] - %2 - SwissSurfer (%3)</source>
<source>[%1] - %2 - SwissBrowser (%3)</source>
<comment>main window title %1 = host name %2 = page title %3 = number of open tabs</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="browser.hxx" line="1028"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<comment>window title with no tab</comment>
<translation type="unfinished"></translation>
</message>
@@ -765,8 +762,7 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
</message>
<message>
<location filename="main.cxx" line="119"/>
<source>SwissSurfer</source>
<source>SwissSurfer</source>
<source>SwissBrowser</source>
<comment>application name</comment>
<translation type="unfinished"></translation>
</message>
-20
View File
@@ -1,20 +0,0 @@
[Desktop Entry]
Type=Application
Name=swisssurfer
Name=swisssurfer
Name[de]=swisssurfer
Name[de]=swisssurfer
Name[fr]=swisssurfer
Name[fr]=swisssurfer
Name[it]=swisssurfer
Name[it]=swisssurfer
Name[en]=swisssurfer
Name[en]=swisssurfer
GenericName=SwissSurfer
GenericName=SwissSurfer
Comment=Browser with SuisseID login
Icon=/usr/share/swisssurfer/swisssurfer.png
Icon=/usr/share/swisssurfer/swisssurfer.png
Categories=Network;WebBrowser
Exec=/usr/bin/swisssurfer
Exec=/usr/bin/swisssurfer