mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Enahnced clear recent history dialog, it now allows to delete
today/week/month/all history
This commit is contained in:
parent
c148836d10
commit
325cc445a7
Binary file not shown.
|
@ -48,16 +48,14 @@ int HistoryModel::addHistoryEntry(const QString &url, QString &title)
|
|||
query.bindValue(0, url);
|
||||
query.exec();
|
||||
if (!query.next()) {
|
||||
QDateTime now = QDateTime::currentDateTime();
|
||||
query.prepare("INSERT INTO history (count, date, url, title) VALUES (1,?,?,?)");
|
||||
query.bindValue(0, now.toMSecsSinceEpoch());
|
||||
query.bindValue(0, QDateTime::currentMSecsSinceEpoch());
|
||||
query.bindValue(1, url);
|
||||
query.bindValue(2, title);
|
||||
query.exec();
|
||||
}else{
|
||||
QDateTime now = QDateTime::currentDateTime();
|
||||
query.prepare("UPDATE history SET count = count + 1, date=?, title=? WHERE url=?");
|
||||
query.bindValue(0, now.toMSecsSinceEpoch());
|
||||
query.bindValue(0, QDateTime::currentMSecsSinceEpoch());
|
||||
query.bindValue(1, title);
|
||||
query.bindValue(2, url);
|
||||
query.exec();
|
||||
|
|
|
@ -26,66 +26,61 @@
|
|||
ClearPrivateData::ClearPrivateData(QupZilla* mainClass, QWidget* parent) :
|
||||
QDialog(parent)
|
||||
,p_QupZilla(mainClass)
|
||||
,ui(new Ui::ClearPrivateData)
|
||||
{
|
||||
setWindowTitle(tr("Clear Recent History"));
|
||||
setWindowIcon(QIcon(":/icons/qupzilla.png"));
|
||||
m_layout = new QBoxLayout(QBoxLayout::TopToBottom, this);
|
||||
m_label = new QLabel(this);
|
||||
m_buttonBox = new QDialogButtonBox(this);
|
||||
m_buttonBox->addButton(QDialogButtonBox::Ok);
|
||||
m_buttonBox->addButton(QDialogButtonBox::Cancel);
|
||||
connect(m_buttonBox, SIGNAL(accepted()), this, SLOT(dialogAccepted()));
|
||||
connect(m_buttonBox, SIGNAL(rejected()), this, SLOT(close()));
|
||||
m_layout->addWidget(m_label);
|
||||
m_label->setText(tr("Choose what you want to delete:"));
|
||||
m_layout->addWidget(m_buttonBox);
|
||||
ui->setupUi(this);
|
||||
ui->buttonBox->setFocus();
|
||||
connect(ui->clearAdobeCookies, SIGNAL(clicked(QPoint)), this, SLOT(clearFlash()));
|
||||
connect(ui->history, SIGNAL(clicked(bool)), this, SLOT(historyClicked(bool)));
|
||||
connect(ui->buttonBox, SIGNAL(accepted()), this, SLOT(dialogAccepted()));
|
||||
}
|
||||
|
||||
m_clearHistory = new QCheckBox(tr("Clear history"), this);
|
||||
m_clearCookies = new QCheckBox(tr("Clear cookies"), this);
|
||||
m_clearCache = new QCheckBox(tr("Clear cache"), this);
|
||||
m_clearIcons = new QCheckBox(tr("Clear icons"), this);
|
||||
m_clearFlashCookies = new ClickableLabel(this);
|
||||
m_clearFlashCookies->setText(tr("Clear cookies from Adobe Flash Player"));
|
||||
|
||||
m_clearHistory->setChecked(true);
|
||||
m_clearCookies->setChecked(true);
|
||||
m_clearCache->setChecked(true);
|
||||
m_clearIcons->setChecked(true);
|
||||
m_clearFlashCookies->setStyleSheet("color: blue; text-decoration: underline;");
|
||||
m_clearFlashCookies->setCursor(Qt::PointingHandCursor);
|
||||
|
||||
m_layout->addWidget(m_clearHistory);
|
||||
m_layout->addWidget(m_clearCookies);
|
||||
m_layout->addWidget(m_clearCache);
|
||||
m_layout->addWidget(m_clearIcons);
|
||||
m_layout->addWidget(m_clearFlashCookies);
|
||||
|
||||
m_layout->addWidget(m_buttonBox);
|
||||
|
||||
connect(m_clearFlashCookies, SIGNAL(clicked(QPoint)), this, SLOT(clearFlash()));
|
||||
void ClearPrivateData::historyClicked(bool state)
|
||||
{
|
||||
ui->historyLength->setEnabled(state);
|
||||
}
|
||||
|
||||
void ClearPrivateData::clearFlash()
|
||||
{
|
||||
p_QupZilla->loadAddress(QUrl("http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html"));
|
||||
p_QupZilla->tabWidget()->addView(QUrl("http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html"));
|
||||
}
|
||||
|
||||
void ClearPrivateData::dialogAccepted()
|
||||
{
|
||||
if (m_clearHistory->isChecked()) {
|
||||
if (ui->history->isChecked()) {
|
||||
QDateTime dateTime = QDateTime::currentDateTime();
|
||||
qint64 nowMS = QDateTime::currentMSecsSinceEpoch();
|
||||
qint64 date;
|
||||
|
||||
switch (ui->historyLength->currentIndex()) {
|
||||
case 0: //Later Today
|
||||
dateTime.setTime(QTime(0,0));
|
||||
date = dateTime.toMSecsSinceEpoch();
|
||||
break;
|
||||
case 1: //Week
|
||||
date = nowMS - 60u * 60u * 24u * 7u * 1000u;
|
||||
break;
|
||||
case 2: //Month
|
||||
date = nowMS - 60u * 60u * 24u * 30u * 1000u;
|
||||
break;
|
||||
case 3: //All
|
||||
date = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
QSqlQuery query;
|
||||
query.exec("DELETE FROM history");
|
||||
query.exec("DELETE FROM history WHERE date > "+QString::number(date));
|
||||
query.exec("VACUUM");
|
||||
}
|
||||
if (m_clearCookies->isChecked()) {
|
||||
if (ui->cookies->isChecked()) {
|
||||
QList<QNetworkCookie> cookies;
|
||||
mApp->cookieJar()->setAllCookies(cookies);
|
||||
}
|
||||
if (m_clearCache->isChecked()) {
|
||||
if (ui->cache->isChecked()) {
|
||||
mApp->webSettings()->clearMemoryCaches();
|
||||
mApp->networkManager()->cache()->clear();
|
||||
}
|
||||
if (m_clearIcons->isChecked()) {
|
||||
if (ui->icons->isChecked()) {
|
||||
mApp->webSettings()->clearIconDatabase();
|
||||
}
|
||||
close();
|
||||
|
|
|
@ -24,7 +24,10 @@
|
|||
#include <QCheckBox>
|
||||
#include <QLabel>
|
||||
|
||||
class ClickableLabel;
|
||||
namespace Ui {
|
||||
class ClearPrivateData;
|
||||
}
|
||||
|
||||
class QupZilla;
|
||||
class ClearPrivateData : public QDialog
|
||||
{
|
||||
|
@ -37,22 +40,14 @@ signals:
|
|||
public slots:
|
||||
|
||||
private slots:
|
||||
void historyClicked(bool state);
|
||||
void dialogAccepted();
|
||||
void clearFlash();
|
||||
|
||||
private:
|
||||
QupZilla* p_QupZilla;
|
||||
Ui::ClearPrivateData* ui;
|
||||
|
||||
QBoxLayout* m_layout;
|
||||
QLabel* m_label;
|
||||
QDialogButtonBox* m_buttonBox;
|
||||
|
||||
QCheckBox* m_clearHistory;
|
||||
QCheckBox* m_clearCookies;
|
||||
QCheckBox* m_clearCache;
|
||||
QCheckBox* m_clearIcons;
|
||||
|
||||
ClickableLabel* m_clearFlashCookies;
|
||||
};
|
||||
|
||||
#endif // CLEARPRIVATEDATA_H
|
||||
|
|
|
@ -63,7 +63,10 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="7" column="1">
|
||||
<widget class="QLabel" name="label">
|
||||
<widget class="ClickableLabel" name="clearAdobeCookies">
|
||||
<property name="cursor">
|
||||
<cursorShape>PointingHandCursor</cursorShape>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">color: blue; text-decoration: underline;</string>
|
||||
</property>
|
||||
|
@ -109,7 +112,7 @@
|
|||
<widget class="QComboBox" name="historyLength">
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Today</string>
|
||||
<string>Later Today</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
|
@ -144,6 +147,13 @@
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>ClickableLabel</class>
|
||||
<extends>QLabel</extends>
|
||||
<header>clickablelabel.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources>
|
||||
<include location="../data/icons.qrc"/>
|
||||
</resources>
|
||||
|
|
|
@ -387,40 +387,65 @@ p, li { white-space: pre-wrap; }
|
|||
<context>
|
||||
<name>ClearPrivateData</name>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="29"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="14"/>
|
||||
<source>Clear Recent History</source>
|
||||
<translation>Vymazat nedávnou historii</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="39"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="24"/>
|
||||
<source>Choose what you want to delete:</source>
|
||||
<translation>Vyberte co chcete smazat:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="42"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="31"/>
|
||||
<source>Clear history</source>
|
||||
<translation>Smazat historii</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="43"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="41"/>
|
||||
<source>Clear cookies</source>
|
||||
<translation>Smazat cookies</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="44"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="51"/>
|
||||
<source>Clear cache</source>
|
||||
<translation>Vyprázdnit vyrovnávací paměť</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="45"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="61"/>
|
||||
<source>Clear icons</source>
|
||||
<translation>Smazat ikony</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="47"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="71"/>
|
||||
<source>Clear cookies from Adobe Flash Player</source>
|
||||
<translation>Smazat cookies z Adobe Flash Playeru</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="88"/>
|
||||
<source><b>Clear Recent History</b></source>
|
||||
<translation><b>Vymazat nedávnou historii</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="112"/>
|
||||
<source>Today</source>
|
||||
<translation>Dnes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="117"/>
|
||||
<source>Week</source>
|
||||
<translation>Týden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="122"/>
|
||||
<source>Month</source>
|
||||
<translation>Měsíc</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="127"/>
|
||||
<source>All</source>
|
||||
<translation>Vše</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ClickToFlash</name>
|
||||
|
@ -1905,7 +1930,7 @@ neexistuje!</translation>
|
|||
<translation>Prázdný</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.h" line="141"/>
|
||||
<location filename="../src/app/qupzilla.h" line="137"/>
|
||||
<source>New tab</source>
|
||||
<translation>Nový panel</translation>
|
||||
</message>
|
||||
|
@ -2518,7 +2543,7 @@ Prosím přidejte si nějaký kliknutím na RSS ikonku v navigačním řádku.</
|
|||
<translation>Dohromady máte otevřeno %1 panelů</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/tabwidget.h" line="56"/>
|
||||
<location filename="../src/webview/tabwidget.h" line="52"/>
|
||||
<source>New tab</source>
|
||||
<translation>Nový panel</translation>
|
||||
</message>
|
||||
|
@ -2649,146 +2674,145 @@ Prosím přidejte si nějaký kliknutím na RSS ikonku v navigačním řádku.</
|
|||
<name>WebView</name>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="123"/>
|
||||
<location filename="../src/webview/webview.cpp" line="245"/>
|
||||
<location filename="../src/webview/webview.cpp" line="244"/>
|
||||
<source>Loading...</source>
|
||||
<translation>Načítám...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="214"/>
|
||||
<location filename="../src/webview/webview.cpp" line="692"/>
|
||||
<location filename="../src/webview/webview.cpp" line="693"/>
|
||||
<source>No Named Page</source>
|
||||
<translation>Bezejmenná stránka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="245"/>
|
||||
<location filename="../src/webview/webview.cpp" line="244"/>
|
||||
<source>Done</source>
|
||||
<translation>Hotovo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="337"/>
|
||||
<location filename="../src/webview/webview.cpp" line="341"/>
|
||||
<location filename="../src/webview/webview.cpp" line="503"/>
|
||||
<location filename="../src/webview/webview.cpp" line="336"/>
|
||||
<location filename="../src/webview/webview.cpp" line="340"/>
|
||||
<location filename="../src/webview/webview.cpp" line="502"/>
|
||||
<source>New tab</source>
|
||||
<translation>Nový panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="391"/>
|
||||
<location filename="../src/webview/webview.cpp" line="390"/>
|
||||
<source>Open link in new window</source>
|
||||
<translation>Otevřít odkaz v novém okně</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="392"/>
|
||||
<location filename="../src/webview/webview.cpp" line="391"/>
|
||||
<source>Open link in new tab</source>
|
||||
<translation>Otevřít odkaz v novém panelu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="394"/>
|
||||
<location filename="../src/webview/webview.cpp" line="393"/>
|
||||
<source>Bookmark link</source>
|
||||
<translation>Přidat odkaz do záložek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="395"/>
|
||||
<location filename="../src/webview/webview.cpp" line="394"/>
|
||||
<source>Save link as...</source>
|
||||
<translation>Uložit odkaz jako...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="396"/>
|
||||
<location filename="../src/webview/webview.cpp" line="395"/>
|
||||
<source>Send link...</source>
|
||||
<translation>Odeslat odkaz...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="397"/>
|
||||
<location filename="../src/webview/webview.cpp" line="396"/>
|
||||
<source>Copy link address</source>
|
||||
<translation>Kopírovat adresu odkazu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="406"/>
|
||||
<location filename="../src/webview/webview.cpp" line="405"/>
|
||||
<source>Show image</source>
|
||||
<translation>Zobrazit obrázek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="407"/>
|
||||
<location filename="../src/webview/webview.cpp" line="406"/>
|
||||
<source>Copy image</source>
|
||||
<translation>Kopírovat obrázek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="408"/>
|
||||
<location filename="../src/webview/webview.cpp" line="407"/>
|
||||
<source>Copy image address</source>
|
||||
<oldsource>Coyp image address</oldsource>
|
||||
<translation>Kopírovat adresu obrázku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="410"/>
|
||||
<location filename="../src/webview/webview.cpp" line="409"/>
|
||||
<source>Save image as...</source>
|
||||
<translation>Uložit obrázek jako...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="411"/>
|
||||
<location filename="../src/webview/webview.cpp" line="410"/>
|
||||
<source>Send image...</source>
|
||||
<translation>Odeslat obrázek...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="427"/>
|
||||
<location filename="../src/webview/webview.cpp" line="426"/>
|
||||
<source>Back</source>
|
||||
<translation>Zpět</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="435"/>
|
||||
<location filename="../src/webview/webview.cpp" line="434"/>
|
||||
<source>Forward</source>
|
||||
<translation>Vpřed</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="449"/>
|
||||
<location filename="../src/webview/webview.cpp" line="448"/>
|
||||
<source>Reload</source>
|
||||
<translation>Obnovit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="456"/>
|
||||
<location filename="../src/webview/webview.cpp" line="455"/>
|
||||
<source>Stop</source>
|
||||
<translation>Zastavit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="460"/>
|
||||
<location filename="../src/webview/webview.cpp" line="459"/>
|
||||
<source>Bookmark page</source>
|
||||
<translation>Přidat stránku do záložek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="461"/>
|
||||
<location filename="../src/webview/webview.cpp" line="460"/>
|
||||
<source>Save page as...</source>
|
||||
<translation>Uložit stránku jako...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="462"/>
|
||||
<location filename="../src/webview/webview.cpp" line="461"/>
|
||||
<source>Send page...</source>
|
||||
<translation>Odeslat stránku...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="464"/>
|
||||
<location filename="../src/webview/webview.cpp" line="463"/>
|
||||
<source>Select all</source>
|
||||
<translation>Vybrat vše</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="469"/>
|
||||
<location filename="../src/webview/webview.cpp" line="468"/>
|
||||
<source>Show source code</source>
|
||||
<translation>Zobrazit zdrojový kód</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="470"/>
|
||||
<location filename="../src/webview/webview.cpp" line="469"/>
|
||||
<source>Show info about site</source>
|
||||
<translation>Zobrazit informace o stránce</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="474"/>
|
||||
<location filename="../src/webview/webview.cpp" line="470"/>
|
||||
<source>Show Web Inspector</source>
|
||||
<translation>Zobrazit Web Inspektor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="480"/>
|
||||
<location filename="../src/webview/webview.cpp" line="479"/>
|
||||
<source>Search </source>
|
||||
<translation>Hledat </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="480"/>
|
||||
<location filename="../src/webview/webview.cpp" line="479"/>
|
||||
<source>... on Google</source>
|
||||
<translation>... na Googlu</translation>
|
||||
</message>
|
||||
|
|
|
@ -391,40 +391,65 @@ p, li { white-space: pre-wrap; }
|
|||
<context>
|
||||
<name>ClearPrivateData</name>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="29"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="14"/>
|
||||
<source>Clear Recent History</source>
|
||||
<translation>Vymazať nedávnu históriu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="39"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="24"/>
|
||||
<source>Choose what you want to delete:</source>
|
||||
<translation>Vyberte, čo chcete zmazať:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="42"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="31"/>
|
||||
<source>Clear history</source>
|
||||
<translation>Zmazať históriu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="43"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="41"/>
|
||||
<source>Clear cookies</source>
|
||||
<translation>Zmazať cookies</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="44"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="51"/>
|
||||
<source>Clear cache</source>
|
||||
<translation>Zmazať vyrovnávaciu pamäť</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="45"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="61"/>
|
||||
<source>Clear icons</source>
|
||||
<translation>Zmazať ikony</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.cpp" line="47"/>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="71"/>
|
||||
<source>Clear cookies from Adobe Flash Player</source>
|
||||
<translation>Zmazať cookies z Adobe Flash Playeru</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="88"/>
|
||||
<source><b>Clear Recent History</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="112"/>
|
||||
<source>Today</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="117"/>
|
||||
<source>Week</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="122"/>
|
||||
<source>Month</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="127"/>
|
||||
<source>All</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ClickToFlash</name>
|
||||
|
@ -1906,7 +1931,7 @@ neexistuje!</translation>
|
|||
<translation>Prázdny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.h" line="141"/>
|
||||
<location filename="../src/app/qupzilla.h" line="137"/>
|
||||
<source>New tab</source>
|
||||
<translation>Nový panel</translation>
|
||||
</message>
|
||||
|
@ -2518,7 +2543,7 @@ Prosím pridajte si nejaký kliknutím na RSS ikonku v navigačnom riadku.</tran
|
|||
<translation>Momentálne otvorených %1 panelov</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/tabwidget.h" line="56"/>
|
||||
<location filename="../src/webview/tabwidget.h" line="52"/>
|
||||
<source>New tab</source>
|
||||
<translation>Nový panel</translation>
|
||||
</message>
|
||||
|
@ -2649,145 +2674,144 @@ Prosím pridajte si nejaký kliknutím na RSS ikonku v navigačnom riadku.</tran
|
|||
<name>WebView</name>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="123"/>
|
||||
<location filename="../src/webview/webview.cpp" line="245"/>
|
||||
<location filename="../src/webview/webview.cpp" line="244"/>
|
||||
<source>Loading...</source>
|
||||
<translation>Načítavam...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="214"/>
|
||||
<location filename="../src/webview/webview.cpp" line="692"/>
|
||||
<location filename="../src/webview/webview.cpp" line="693"/>
|
||||
<source>No Named Page</source>
|
||||
<translation>Stránka bez mena</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="245"/>
|
||||
<location filename="../src/webview/webview.cpp" line="244"/>
|
||||
<source>Done</source>
|
||||
<translation>Hotovo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="337"/>
|
||||
<location filename="../src/webview/webview.cpp" line="341"/>
|
||||
<location filename="../src/webview/webview.cpp" line="503"/>
|
||||
<location filename="../src/webview/webview.cpp" line="336"/>
|
||||
<location filename="../src/webview/webview.cpp" line="340"/>
|
||||
<location filename="../src/webview/webview.cpp" line="502"/>
|
||||
<source>New tab</source>
|
||||
<translation>Nový panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="391"/>
|
||||
<location filename="../src/webview/webview.cpp" line="390"/>
|
||||
<source>Open link in new window</source>
|
||||
<translation>Otvoriť odkaz v novom okne</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="392"/>
|
||||
<location filename="../src/webview/webview.cpp" line="391"/>
|
||||
<source>Open link in new tab</source>
|
||||
<translation>Otvoriť odkaz na novom panely</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="394"/>
|
||||
<location filename="../src/webview/webview.cpp" line="393"/>
|
||||
<source>Bookmark link</source>
|
||||
<translation>Pridať odkaz do záložiek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="395"/>
|
||||
<location filename="../src/webview/webview.cpp" line="394"/>
|
||||
<source>Save link as...</source>
|
||||
<translation>Odoslať odkaz...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="396"/>
|
||||
<location filename="../src/webview/webview.cpp" line="395"/>
|
||||
<source>Send link...</source>
|
||||
<translation>Odoslať odkaz...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="397"/>
|
||||
<location filename="../src/webview/webview.cpp" line="396"/>
|
||||
<source>Copy link address</source>
|
||||
<translation>Kopírovať adresu odkazu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="406"/>
|
||||
<location filename="../src/webview/webview.cpp" line="405"/>
|
||||
<source>Show image</source>
|
||||
<translation>Zobraziť obrázok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="407"/>
|
||||
<location filename="../src/webview/webview.cpp" line="406"/>
|
||||
<source>Copy image</source>
|
||||
<translation>Kopírovať obrázok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="408"/>
|
||||
<location filename="../src/webview/webview.cpp" line="407"/>
|
||||
<source>Copy image address</source>
|
||||
<translation>Kopírovať adresu obrázku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="410"/>
|
||||
<location filename="../src/webview/webview.cpp" line="409"/>
|
||||
<source>Save image as...</source>
|
||||
<translation>Uložiť obrázok ako...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="411"/>
|
||||
<location filename="../src/webview/webview.cpp" line="410"/>
|
||||
<source>Send image...</source>
|
||||
<translation>Odoslať obrázok...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="427"/>
|
||||
<location filename="../src/webview/webview.cpp" line="426"/>
|
||||
<source>Back</source>
|
||||
<translation>Späť</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="435"/>
|
||||
<location filename="../src/webview/webview.cpp" line="434"/>
|
||||
<source>Forward</source>
|
||||
<translation>Dopredu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="449"/>
|
||||
<location filename="../src/webview/webview.cpp" line="448"/>
|
||||
<source>Reload</source>
|
||||
<translation>Obnoviť</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="456"/>
|
||||
<location filename="../src/webview/webview.cpp" line="455"/>
|
||||
<source>Stop</source>
|
||||
<translation>Zastaviť</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="460"/>
|
||||
<location filename="../src/webview/webview.cpp" line="459"/>
|
||||
<source>Bookmark page</source>
|
||||
<translation>Pridať stránku do záložiek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="461"/>
|
||||
<location filename="../src/webview/webview.cpp" line="460"/>
|
||||
<source>Save page as...</source>
|
||||
<translation>Uložiť stránku ako...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="462"/>
|
||||
<location filename="../src/webview/webview.cpp" line="461"/>
|
||||
<source>Send page...</source>
|
||||
<translation>Odoslať stránku...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="464"/>
|
||||
<location filename="../src/webview/webview.cpp" line="463"/>
|
||||
<source>Select all</source>
|
||||
<translation>Vybrať všetko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="469"/>
|
||||
<location filename="../src/webview/webview.cpp" line="468"/>
|
||||
<source>Show source code</source>
|
||||
<translation>Zobraziť zdrojový kód</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="470"/>
|
||||
<location filename="../src/webview/webview.cpp" line="469"/>
|
||||
<source>Show info about site</source>
|
||||
<translation>Zobraziť informácie o stránke</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="474"/>
|
||||
<location filename="../src/webview/webview.cpp" line="470"/>
|
||||
<source>Show Web Inspector</source>
|
||||
<translation>Zobraziť Web inšpektora</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="480"/>
|
||||
<location filename="../src/webview/webview.cpp" line="479"/>
|
||||
<source>Search </source>
|
||||
<translation>Hľadať </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webview.cpp" line="480"/>
|
||||
<location filename="../src/webview/webview.cpp" line="479"/>
|
||||
<source>... on Google</source>
|
||||
<translation>... na Googlu</translation>
|
||||
</message>
|
||||
|
|
Loading…
Reference in New Issue
Block a user