renamed swissbrowser to swisssurfer
@@ -5,17 +5,21 @@
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>swissbrowser</string>
|
||||
<string>swisssurfer</string>
|
||||
<string>swisssurfer</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>SwissSign, (c) 2011</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>swissbrowser.icns</string>
|
||||
<string>swisssurfer.icns</string>
|
||||
<string>swisssurfer.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.swisssign.swissbrowser</string>
|
||||
<string>com.swisssign.swisssurfer</string>
|
||||
<string>com.swisssign.swisssurfer</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>SwissBrowser</string>
|
||||
<string>SwissSurfer</string>
|
||||
<string>SwissSurfer</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
|
||||
@@ -1019,7 +1019,8 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
|
||||
void resetWindowTitle() {
|
||||
if (qobject_cast<QWebView*>(_tabs->currentWidget()))
|
||||
setWindowTitle(trUtf8("[%1] - %2 - SwissBrowser (%3)",
|
||||
setWindowTitle(trUtf8("[%1] - %2 - SwissSurfer (%3)",
|
||||
setWindowTitle(trUtf8("[%1] - %2 - SwissSurfer (%3)",
|
||||
"main window title "
|
||||
"%1 = host name "
|
||||
"%2 = page title "
|
||||
@@ -1030,7 +1031,8 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
->title()))
|
||||
.arg(_tabs->count()));
|
||||
else
|
||||
setWindowTitle(trUtf8("SwissBrowser", "window title with no tab"));
|
||||
setWindowTitle(trUtf8("SwissSurfer", "window title with no tab"));
|
||||
setWindowTitle(trUtf8("SwissSurfer", "window title with no tab"));
|
||||
}
|
||||
|
||||
void statusBarMessage(const QString& text) {
|
||||
|
||||
@@ -11,11 +11,13 @@
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>SwissBrowser</string>
|
||||
<string>SwissSurfer</string>
|
||||
<string>SwissSurfer</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset resource="resources.qrc">
|
||||
<normaloff>:/icons/32x32/swissbrowser.png</normaloff>:/icons/32x32/swissbrowser.png</iconset>
|
||||
<normaloff>:/icons/32x32/swisssurfer.png</normaloff>:/icons/32x32/swisssurfer.png</iconset>
|
||||
<normaloff>:/icons/32x32/swisssurfer.png</normaloff>:/icons/32x32/swisssurfer.png</iconset>
|
||||
</property>
|
||||
<widget class="QWidget" name="centralwidget">
|
||||
<layout class="QGridLayout" name="gridLayout_3">
|
||||
|
||||
@@ -29,7 +29,8 @@
|
||||
#include <memory>
|
||||
|
||||
|
||||
//! @defgroup browser The SwissBrowser Executable and Main Window
|
||||
//! @defgroup browser The SwissSurfer Executable and Main Window
|
||||
//! @defgroup browser The SwissSurfer 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
|
||||
@@ -115,15 +116,18 @@ int main(int argv, char** argc) try {
|
||||
QTextCodec::setCodecForLocale(utf8);
|
||||
QTextCodec::setCodecForTr(utf8);
|
||||
QApplication app(argv, argc);
|
||||
app.setWindowIcon(QIcon(":/icons/32x32/swissbrowser.png"));
|
||||
app.setApplicationName(QObject::trUtf8("SwissBrowser", "application name"));
|
||||
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.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/swissbrowser_"+ QLocale().name());
|
||||
appTranslator.load(":/language/swisssurfer_"+ QLocale().name());
|
||||
appTranslator.load(":/language/swisssurfer_"+ QLocale().name());
|
||||
app.installTranslator(&appTranslator);
|
||||
//----------------------------------------------------------------------------
|
||||
TMP=QDir::toNativeSeparators(QDir::tempPath());
|
||||
@@ -151,7 +155,8 @@ 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", "SwissBrowser")));
|
||||
(std::auto_ptr<QSettings>(new QSettings("SwissSign", "SwissSurfer")));
|
||||
(std::auto_ptr<QSettings>(new QSettings("SwissSign", "SwissSurfer")));
|
||||
for (QStringList::iterator it(args.begin()); ++it!=args.end();)
|
||||
if (*it=="-h" || *it=="--help" || *it=="-help" || *it=="/?") {
|
||||
std::cout<<helptext().toStdString()<<std::endl;
|
||||
|
||||
@@ -38,7 +38,8 @@ 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 = swissbrowser
|
||||
bin_SCRIPTS = swisssurfer
|
||||
bin_SCRIPTS = swisssurfer
|
||||
QMAKE_TARGET = ${bin_SCRIPTS}
|
||||
|
||||
TARGETS = ${QMAKE_TARGET}
|
||||
@@ -104,6 +105,7 @@ clean-local:
|
||||
|
||||
CLEANFILES = ${TARGETS} ${TARGETS:%=%.exe} $(LANGS:%=@PACKAGENAME@_%.qm) \
|
||||
*.o *.obj qrc_*.cpp ui_*.h moc_*.cpp \
|
||||
${QMAKE_TARGET} object_script.swissbrowser \
|
||||
${QMAKE_TARGET} object_script.swisssurfer \
|
||||
${QMAKE_TARGET} object_script.swisssurfer \
|
||||
@PACKAGENAME@.xpm
|
||||
MAINTAINERCLEANFILES = makefile.in ${QMAKE_MAKEFILE}
|
||||
|
||||
@@ -183,7 +183,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -400,7 +401,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
||||
@@ -183,7 +183,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -400,7 +401,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
||||
@@ -183,7 +183,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -400,7 +401,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
||||
@@ -183,7 +183,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -400,7 +401,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
||||
@@ -53,7 +53,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissBrowser will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></string>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></string>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Specifies whether SwissSurfer will try to pre-fetch DNS entries to speed up browsing.</span></p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>DNS prefetch enabled</string>
|
||||
@@ -342,7 +343,8 @@ p, li { white-space: pre-wrap; }
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'DejaVu Serif'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissBrowser from recording visited pages in the history and storing web page icons.</span></p></body></html></string>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></string>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Verdana'; font-size:medium; color:#363534;">Private browsing prevents SwissSurfer from recording visited pages in the history and storing web page icons.</span></p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>private browsing</string>
|
||||
|
||||
@@ -29,7 +29,8 @@ win32 {
|
||||
QMAKE_LIBS += /opt/local/i586-mingw32msvc/lib/winscard.a
|
||||
CONFIG += release
|
||||
}
|
||||
ICON = swissbrowser.icns
|
||||
ICON = swisssurfer.icns
|
||||
ICON = swisssurfer.icns
|
||||
|
||||
TRANSLATIONS = @PACKAGENAME@_en.ts \
|
||||
@PACKAGENAME@_de.ts \
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
<RCC>
|
||||
<qresource prefix="icons/32x32">
|
||||
<file alias="butt32_49.png">resources/icons/32x32/butt32_49.png</file>
|
||||
<file alias="swissbrowser.png">resources/icons/32x32/swissbrowser.png</file>
|
||||
<file alias="swisssurfer.png">resources/icons/32x32/swisssurfer.png</file>
|
||||
<file alias="swisssurfer.png">resources/icons/32x32/swisssurfer.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>
|
||||
@@ -18,7 +19,8 @@
|
||||
</qresource>
|
||||
<qresource prefix="icons/16x16">
|
||||
<file alias="butt16_49.png">resources/icons/16x16/butt16_49.png</file>
|
||||
<file alias="swissbrowser.png">resources/icons/16x16/swissbrowser.png</file>
|
||||
<file alias="swisssurfer.png">resources/icons/16x16/swisssurfer.png</file>
|
||||
<file alias="swisssurfer.png">resources/icons/16x16/swisssurfer.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 |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 8.0 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 6.2 KiB |
|
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 |
|
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 |
@@ -1,12 +0,0 @@
|
||||
[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
|
||||
@@ -0,0 +1,20 @@
|
||||
[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
|
||||
@@ -405,7 +405,8 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.ui" line="14"/>
|
||||
<source>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -455,13 +456,15 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1017"/>
|
||||
<source>[%1] - %2 - SwissBrowser (%3)</source>
|
||||
<source>[%1] - %2 - SwissSurfer (%3)</source>
|
||||
<source>[%1] - %2 - SwissSurfer (%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>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<comment>window title with no tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -762,7 +765,8 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="main.cxx" line="119"/>
|
||||
<source>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<comment>application name</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -405,7 +405,8 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.ui" line="14"/>
|
||||
<source>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -455,13 +456,15 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1017"/>
|
||||
<source>[%1] - %2 - SwissBrowser (%3)</source>
|
||||
<source>[%1] - %2 - SwissSurfer (%3)</source>
|
||||
<source>[%1] - %2 - SwissSurfer (%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>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<comment>window title with no tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -762,7 +765,8 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="main.cxx" line="119"/>
|
||||
<source>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<comment>application name</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -405,7 +405,8 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.ui" line="14"/>
|
||||
<source>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -455,13 +456,15 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1017"/>
|
||||
<source>[%1] - %2 - SwissBrowser (%3)</source>
|
||||
<source>[%1] - %2 - SwissSurfer (%3)</source>
|
||||
<source>[%1] - %2 - SwissSurfer (%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>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<comment>window title with no tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -762,7 +765,8 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="main.cxx" line="119"/>
|
||||
<source>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<comment>application name</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -405,7 +405,8 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.ui" line="14"/>
|
||||
<source>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
@@ -455,13 +456,15 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="browser.hxx" line="1017"/>
|
||||
<source>[%1] - %2 - SwissBrowser (%3)</source>
|
||||
<source>[%1] - %2 - SwissSurfer (%3)</source>
|
||||
<source>[%1] - %2 - SwissSurfer (%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>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<comment>window title with no tab</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -762,7 +765,8 @@ This product includes cryptographic software written by Eric Young (eay@cryptsof
|
||||
</message>
|
||||
<message>
|
||||
<location filename="main.cxx" line="119"/>
|
||||
<source>SwissBrowser</source>
|
||||
<source>SwissSurfer</source>
|
||||
<source>SwissSurfer</source>
|
||||
<comment>application name</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||