diff --git a/bin/locale/cs_CZ.qm b/bin/locale/cs_CZ.qm index 7ca94bd49..ab2bcd179 100644 Binary files a/bin/locale/cs_CZ.qm and b/bin/locale/cs_CZ.qm differ diff --git a/src/QupZilla.pro b/src/QupZilla.pro index c7ebef2e5..b7df21d39 100644 --- a/src/QupZilla.pro +++ b/src/QupZilla.pro @@ -133,7 +133,8 @@ SOURCES += main.cpp\ navigation/reloadstopbutton.cpp \ preferences/thememanager.cpp \ network/qupzillaschemehandler.cpp \ - tools/globalfunctions.cpp + tools/globalfunctions.cpp \ + other/pagescreen.cpp HEADERS += \ 3rdparty/qtwin.h \ @@ -227,7 +228,8 @@ HEADERS += \ navigation/reloadstopbutton.h \ preferences/thememanager.h \ network/qupzillaschemehandler.h \ - tools/globalfunctions.h + tools/globalfunctions.h \ + other/pagescreen.h FORMS += \ preferences/autofillmanager.ui \ @@ -261,7 +263,8 @@ FORMS += \ webview/jsprompt.ui \ other/browsinglibrary.ui \ webview/searchtoolbar.ui \ - preferences/thememanager.ui + preferences/thememanager.ui \ + other/pagescreen.ui RESOURCES += \ data/icons.qrc \ @@ -288,3 +291,6 @@ win32:LIBS += User32.lib Ole32.lib Shell32.lib ShlWapi.lib Gdi32.lib ComCtl32.li + + + diff --git a/src/app/qupzilla.cpp b/src/app/qupzilla.cpp index c02e737bb..238d37891 100644 --- a/src/app/qupzilla.cpp +++ b/src/app/qupzilla.cpp @@ -55,6 +55,7 @@ #include "locationbarsettings.h" #include "browsinglibrary.h" #include "navigationbar.h" +#include "pagescreen.h" const QString QupZilla::VERSION = "1.0.0-b4"; //const QString QupZilla::BUILDTIME = QLocale(QLocale::English).toDateTime(__DATE__" "__TIME__, "MMM d yyyy hh:mm:ss").toString("MM/dd/yyyy hh:ss"); @@ -226,9 +227,9 @@ void QupZilla::setupMenu() m_menuFile->addAction(QIcon::fromTheme("window-close"), tr("Close Window"), this, SLOT(close()))->setShortcut(QKeySequence("Ctrl+Shift+W")); m_menuFile->addSeparator(); m_menuFile->addAction(QIcon::fromTheme("document-save"), tr("&Save Page As..."), this, SLOT(savePage()))->setShortcut(QKeySequence("Ctrl+S")); + m_menuFile->addAction(tr("Save Page Screen"), this, SLOT(savePageScreen())); m_menuFile->addAction(tr("Send Link..."), this, SLOT(sendLink())); - m_menuFile->addAction(QIcon::fromTheme("document-print"), tr("&Print"), this, SLOT(printPage())); - m_menuFile->addSeparator(); + m_menuFile->addAction(QIcon::fromTheme("document-print"), tr("&Print"), this, SLOT(printPage())); m_menuFile->addSeparator(); m_menuFile->addAction(QIcon::fromTheme("application-exit"), tr("Quit"), this, SLOT(quitApp()))->setShortcut(QKeySequence("Ctrl+Q")); menuBar()->addMenu(m_menuFile); @@ -1034,6 +1035,12 @@ void QupZilla::printPage() delete dialog; } +void QupZilla::savePageScreen() +{ + PageScreen* p = new PageScreen(weView()); + p->show(); +} + void QupZilla::startPrivate(bool state) { if (state) { diff --git a/src/app/qupzilla.h b/src/app/qupzilla.h index c902d7a6d..b402644bd 100644 --- a/src/app/qupzilla.h +++ b/src/app/qupzilla.h @@ -143,6 +143,7 @@ private slots: void aboutQupZilla(); void addTab() { m_tabWidget->addView(QUrl(), tr("New tab"), TabWidget::NewTab, true); } void printPage(); + void savePageScreen(); void aboutToShowHistoryMenu(); void aboutToShowClosedTabsMenu(); diff --git a/src/bookmarks/bookmarksmanager.cpp b/src/bookmarks/bookmarksmanager.cpp index 6058e7761..c471ed0b2 100644 --- a/src/bookmarks/bookmarksmanager.cpp +++ b/src/bookmarks/bookmarksmanager.cpp @@ -25,6 +25,7 @@ #include "bookmarksmodel.h" #include "iconprovider.h" #include "browsinglibrary.h" +#include "globalfunctions.h" BookmarksManager::BookmarksManager(QupZilla* mainClass, QWidget* parent) : QWidget(parent) @@ -34,10 +35,7 @@ BookmarksManager::BookmarksManager(QupZilla* mainClass, QWidget* parent) : ,m_bookmarksModel(mApp->bookmarksModel()) { ui->setupUi(this); - //CENTER on scren - const QRect screen = QApplication::desktop()->screenGeometry(); - const QRect &size = QWidget::geometry(); - QWidget::move( (screen.width()-size.width())/2, (screen.height()-size.height())/2 ); + qz_centerWidgetOnScreen(this); connect(ui->deleteB, SIGNAL(clicked()), this, SLOT(deleteItem())); connect(ui->bookmarksTree, SIGNAL(itemChanged(QTreeWidgetItem*,int)), this, SLOT(itemChanged(QTreeWidgetItem*))); diff --git a/src/cookies/cookiemanager.cpp b/src/cookies/cookiemanager.cpp index 7dca1e00a..2fe5a4e34 100644 --- a/src/cookies/cookiemanager.cpp +++ b/src/cookies/cookiemanager.cpp @@ -20,16 +20,14 @@ #include "qupzilla.h" #include "cookiejar.h" #include "mainapplication.h" +#include "globalfunctions.h" CookieManager::CookieManager(QWidget* parent) : QWidget(parent) ,ui(new Ui::CookieManager) { ui->setupUi(this); - //CENTER on scren - const QRect screen = QApplication::desktop()->screenGeometry(); - const QRect &size = QWidget::geometry(); - QWidget::move( (screen.width()-size.width())/2, (screen.height()-size.height())/2 ); + qz_centerWidgetOnScreen(this); //QTimer::singleShot(0, this, SLOT(refreshTable())); diff --git a/src/downloads/downloadmanager.cpp b/src/downloads/downloadmanager.cpp index 6f1ed1dc4..117a42577 100644 --- a/src/downloads/downloadmanager.cpp +++ b/src/downloads/downloadmanager.cpp @@ -24,6 +24,7 @@ #include "networkmanager.h" #include "qtwin.h" #include "desktopnotificationsfactory.h" +#include "globalfunctions.h" DownloadManager::DownloadManager(QWidget* parent) : QWidget(parent) @@ -37,10 +38,7 @@ DownloadManager::DownloadManager(QWidget* parent) : QtWin::extendFrameIntoClientArea(this); #endif ui->clearButton->setIcon(QIcon::fromTheme("edit-clear")); - //CENTER on screen - const QRect screen = QApplication::desktop()->screenGeometry(); - const QRect &size = QWidget::geometry(); - QWidget::move( (screen.width()-size.width())/2, (screen.height()-size.height())/2 ); + qz_centerWidgetOnScreen(this); m_iconProvider = new QFileIconProvider(); m_networkManager = mApp->networkManager(); diff --git a/src/downloads/downloadmanager.h b/src/downloads/downloadmanager.h index 491d8b574..cd322bed9 100644 --- a/src/downloads/downloadmanager.h +++ b/src/downloads/downloadmanager.h @@ -21,7 +21,6 @@ #include #include #include -#include #include #include #include diff --git a/src/history/historymanager.cpp b/src/history/historymanager.cpp index 3ef50f0e0..8560d20b0 100644 --- a/src/history/historymanager.cpp +++ b/src/history/historymanager.cpp @@ -21,6 +21,7 @@ #include "historymodel.h" #include "iconprovider.h" #include "browsinglibrary.h" +#include "globalfunctions.h" HistoryManager::HistoryManager(QupZilla* mainClass, QWidget* parent) : QWidget(parent) @@ -31,10 +32,7 @@ HistoryManager::HistoryManager(QupZilla* mainClass, QWidget* parent) : ui->setupUi(this); ui->historyTree->setDefaultItemShowMode(TreeWidget::ItemsCollapsed); ui->historyTree->setSelectionMode(QAbstractItemView::ExtendedSelection); - //CENTER on scren - const QRect screen = QApplication::desktop()->screenGeometry(); - const QRect &size = QWidget::geometry(); - QWidget::move( (screen.width()-size.width())/2, (screen.height()-size.height())/2 ); + qz_centerWidgetOnScreen(this); connect(ui->historyTree, SIGNAL(itemDoubleClicked(QTreeWidgetItem*,int)),this, SLOT(itemDoubleClicked(QTreeWidgetItem*))); connect(ui->deleteB, SIGNAL(clicked()), this, SLOT(deleteItem())); diff --git a/src/other/browsinglibrary.cpp b/src/other/browsinglibrary.cpp index ed1a91ea1..49796d099 100644 --- a/src/other/browsinglibrary.cpp +++ b/src/other/browsinglibrary.cpp @@ -22,6 +22,7 @@ #include "rssmanager.h" #include "mainapplication.h" #include "downloaditem.h" +#include "globalfunctions.h" BrowsingLibrary::BrowsingLibrary(QupZilla* mainClass, QWidget *parent) : QWidget(parent) @@ -39,10 +40,7 @@ BrowsingLibrary::BrowsingLibrary(QupZilla* mainClass, QWidget *parent) resize(settings.value("size", QSize(760, 470)).toSize()); settings.endGroup(); - //CENTER on scren - const QRect screen = QApplication::desktop()->screenGeometry(); - const QRect &size = QWidget::geometry(); - QWidget::move( (screen.width()-size.width())/2, (screen.height()-size.height())/2 ); + qz_centerWidgetOnScreen(this); ui->tabs->AddTab(m_historyManager, QIcon(":/icons/other/bighistory.png"), tr("History")); ui->tabs->AddTab(m_bookmarksManager, QIcon(":/icons/other/bigstar.png"), tr("Bookmarks")); diff --git a/src/other/browsinglibrary.h b/src/other/browsinglibrary.h index b735b4c21..bea62f604 100644 --- a/src/other/browsinglibrary.h +++ b/src/other/browsinglibrary.h @@ -19,7 +19,6 @@ #define LIBRARY_H #include -#include #include #include diff --git a/src/other/pagescreen.cpp b/src/other/pagescreen.cpp new file mode 100644 index 000000000..7a3229e68 --- /dev/null +++ b/src/other/pagescreen.cpp @@ -0,0 +1,60 @@ +#include "pagescreen.h" +#include "ui_pagescreen.h" +#include "webview.h" +#include "globalfunctions.h" + +PageScreen::PageScreen(WebView *view) + : QWidget() + , ui(new Ui::PageScreen) + , m_view(view) +{ + setAttribute(Qt::WA_DeleteOnClose); + ui->setupUi(this); + qz_centerWidgetOnScreen(this); + + createPixmap(); + ui->label->setPixmap(m_pagePixmap); + + connect(ui->buttonBox, SIGNAL(clicked(QAbstractButton*)), this, SLOT(buttonClicked(QAbstractButton*))); +} + +void PageScreen::buttonClicked(QAbstractButton* b) +{ + QString path; + + switch (ui->buttonBox->standardButton(b)) { + case QDialogButtonBox::Cancel: + close(); + break; + + case QDialogButtonBox::Save: + path = QFileDialog::getSaveFileName(this, tr("Save Page Screen..."), tr("screen.png")); + if (!path.isEmpty()) + m_pagePixmap.save(path); + break; + + default: + break; + } +} + +void PageScreen::createPixmap() +{ + QWebPage* page = m_view->page(); + QSize originalSize = page->viewportSize(); + page->setViewportSize(page->mainFrame()->contentsSize()); + + QImage image(page->viewportSize(), QImage::Format_ARGB32); + QPainter painter(&image); + page->mainFrame()->render(&painter); + painter.end(); + + m_pagePixmap = QPixmap::fromImage(image); + + page->setViewportSize(originalSize); +} + +PageScreen::~PageScreen() +{ + delete ui; +} diff --git a/src/other/pagescreen.h b/src/other/pagescreen.h new file mode 100644 index 000000000..16807455c --- /dev/null +++ b/src/other/pagescreen.h @@ -0,0 +1,34 @@ +#ifndef PAGESCREEN_H +#define PAGESCREEN_H + +#include +#include +#include +#include +#include + +namespace Ui { + class PageScreen; +} + +class WebView; +class PageScreen : public QWidget +{ + Q_OBJECT + +public: + explicit PageScreen(WebView* view); + ~PageScreen(); + +private slots: + void buttonClicked(QAbstractButton* b); + +private: + void createPixmap(); + + Ui::PageScreen *ui; + WebView* m_view; + QPixmap m_pagePixmap; +}; + +#endif // PAGESCREEN_H diff --git a/src/other/pagescreen.ui b/src/other/pagescreen.ui new file mode 100644 index 000000000..119f3e935 --- /dev/null +++ b/src/other/pagescreen.ui @@ -0,0 +1,81 @@ + + + PageScreen + + + + 0 + 0 + 470 + 425 + + + + Page Screen + + + + 0 + + + 0 + + + 0 + + + + + QFrame::NoFrame + + + QFrame::Plain + + + 0 + + + true + + + + + 0 + 0 + 470 + 376 + + + + + 0 + + + 0 + + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + + + + QDialogButtonBox::Cancel|QDialogButtonBox::Save + + + true + + + + + + + + diff --git a/src/other/sourceviewer.cpp b/src/other/sourceviewer.cpp index 7396f587c..efbabce39 100644 --- a/src/other/sourceviewer.cpp +++ b/src/other/sourceviewer.cpp @@ -19,6 +19,7 @@ #include "webview.h" #include "htmlhighlighter.h" #include "sourceviewersearch.h" +#include "globalfunctions.h" SourceViewer::SourceViewer(QWebPage* page, const QString &selectedHtml) : QWidget(0) @@ -90,10 +91,7 @@ SourceViewer::SourceViewer(QWebPage* page, const QString &selectedHtml) : menuView->actions().at(3)->setChecked(true); menuBar->addMenu(menuView); - //CENTER on scren - const QRect screen = QApplication::desktop()->screenGeometry(); - const QRect &size = QWidget::geometry(); - QWidget::move( (screen.width()-size.width())/2, (screen.height()-size.height())/2 ); + qz_centerWidgetOnScreen(this); //Highlight selectedHtml if (!selectedHtml.isEmpty()) diff --git a/src/other/sourceviewer.h b/src/other/sourceviewer.h index 906286f84..16dc2b26e 100644 --- a/src/other/sourceviewer.h +++ b/src/other/sourceviewer.h @@ -27,7 +27,6 @@ #include #include #include -#include #include #include #include diff --git a/src/rss/rssmanager.cpp b/src/rss/rssmanager.cpp index 799acbe1e..3821e7cc4 100644 --- a/src/rss/rssmanager.cpp +++ b/src/rss/rssmanager.cpp @@ -23,6 +23,7 @@ #include "treewidget.h" #include "iconprovider.h" #include "browsinglibrary.h" +#include "globalfunctions.h" RSSManager::RSSManager(QupZilla* mainClass, QWidget* parent) : QWidget(parent) @@ -30,10 +31,7 @@ RSSManager::RSSManager(QupZilla* mainClass, QWidget* parent) : ,p_QupZilla(mainClass) { ui->setupUi(this); -// CENTER on scren - const QRect screen = QApplication::desktop()->screenGeometry(); - const QRect &size = geometry(); - QWidget::move( (screen.width()-size.width())/2, (screen.height()-size.height())/2 ); + qz_centerWidgetOnScreen(this); ui->tabWidget->setElideMode(Qt::ElideRight); m_networkManager = new QNetworkAccessManager(); diff --git a/src/tools/globalfunctions.cpp b/src/tools/globalfunctions.cpp index c0dd4a8e9..2e1cb722c 100644 --- a/src/tools/globalfunctions.cpp +++ b/src/tools/globalfunctions.cpp @@ -20,3 +20,10 @@ QByteArray qz_readAllFileContents(const QString &filename) return a; } + +void qz_centerWidgetOnScreen(QWidget *w) +{ + const QRect screen = QApplication::desktop()->screenGeometry(); + const QRect &size = w->geometry(); + w->move( (screen.width()-size.width())/2, (screen.height()-size.height())/2 ); +} diff --git a/src/tools/globalfunctions.h b/src/tools/globalfunctions.h index 690dc13dd..bb248a545 100644 --- a/src/tools/globalfunctions.h +++ b/src/tools/globalfunctions.h @@ -5,8 +5,13 @@ #include #include #include +#include +#include +#include QByteArray qz_pixmapToByteArray(const QPixmap &pix); QByteArray qz_readAllFileContents(const QString &filename); +void qz_centerWidgetOnScreen(QWidget* w); + #endif // GLOBALFUNCTIONS_H diff --git a/translations/cs_CZ.ts b/translations/cs_CZ.ts index 1afc9c65e..41ed9fa59 100644 --- a/translations/cs_CZ.ts +++ b/translations/cs_CZ.ts @@ -316,82 +316,82 @@ p, li { white-space: pre-wrap; } Optimalizovat databázi - + Add new folder Přidat složku - + Choose name for new bookmark folder: Zvolte jméno pro novou složku: - + New Tab Nový panel - - - - - + + + + + Bookmarks In Menu Záložky v menu - - - - - + + + + + Bookmarks In ToolBar Panel záložek - + Open link in actual &tab Otevřít odkaz v &aktuálním panelu - + Open link in &new tab Otevřít odkaz v novém &panelu - + Move bookmark to &folder Přesunout záložku do &složky - - - + + + Unsorted Bookmarks Nesetříděné záložky - + <b>Warning: </b>You already have this page bookmarked! <b>Upozornění: </b>Tuto stránku již máte v záložkách! - + Choose name and location of bookmark. Zvolte jméno a umístění záložky. - + Add New Bookmark Přidat záložku - + Choose folder for bookmarks: Zvolte složku pro záložky: - + Bookmark All Tabs Přidat všechny panely do záložek @@ -575,27 +575,27 @@ p, li { white-space: pre-wrap; } Hledat... - + History Historie - + Bookmarks Záložky - + RSS RSS - + Database Optimized Databáze optimalizována - + Database successfuly optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 Databáze byla úspěšně optimalizována.<br/><br/><b>Velikost databáze před: </b>%1<br/><b>Velikost databáze po: </b>%2 @@ -779,12 +779,12 @@ p, li { white-space: pre-wrap; } + + - - <cookie not selected> <nebylo zvoleno cookie> @@ -795,42 +795,42 @@ p, li { white-space: pre-wrap; } - + Remove cookie Odebrat cookie - + Search Vyhledávání - + Confirmation Potvrzení - + Are you sure to delete all cookies on your computer? Opravdu chcete vymazat všechny cookies z počítače? - + Remove cookies Odebrat cookies - + Secure only Zabezpečené připojení - + All connections Libovolný typ připojení - + Session cookie konce relace @@ -987,50 +987,50 @@ nebyl nalezen! DownloadManager - + %1% of %2 files (%3) %4 remaining %1% z %2 souborů (%3) %4 zbyvá - + % - Download Manager % - Správce stahování - - + + Save file as... Uložit soubor jako... - + Download Finished Stahování dokončeno - + All files have been successfuly downloaded. Všechna stahování byla úspěšně dokončena. - + Warning Varování - + Are you sure to quit? All uncompleted downloads will be cancelled! Jste si jistý že chcete skončit? Všechna nedokončená stahování budou zrušena! - + NoNameDownload BezNazvu - - + + Download Manager Správce stahování @@ -1121,45 +1121,45 @@ nebyl nalezen! Optimalizovat databázi - + New Tab Nový panel - + Open link in actual tab Otevřít odkaz v aktuálním panelu - + Open link in new tab Otevřít odkaz v novém panelu - - + + Today Dnes - - + + This Week Tento týden - - + + This Month Tento měsíc - + Confirmation Potvrzení - + Are you sure to delete all history? Opravdu chcete vymazat celou historii? @@ -1440,6 +1440,24 @@ nebyl nalezen! Proxy %1 požaduje uživatelské jméno a heslo. + + PageScreen + + + Page Screen + Snímek stránky + + + + Save Page Screen... + Uložit snímek stránky... + + + + screen.png + snimek.png + + PluginsList @@ -2219,414 +2237,419 @@ nebyl nalezen! QupZilla - + File Soubor - + Edit Úpravy - + Tools Nástroje - + Help Nápověda - + View Zobrazení - - + + Bookmarks Záložky - - + + History Historie - + Quit Konec - + New Tab Nový panel - + Close Tab Zavřít panel - + IP Address of current page IP Adresa aktuální stránky - + &New Window &Nové okno - + Open &File Otevřít &soubor - + &Save Page As... &Uložit stránku jako... - + &Print &Tisk - + &Undo &Zpět - + &Redo &Vpřed - + &Cut V&yjmout - + C&opy &Kopírovat - + &Paste V&ložit - + &Delete &Odstranit - + Select &All Vyb&rat vše - + &Find &Najít - + &Navigation Toolbar &Navigační lišta - + &Bookmarks Toolbar Panel &záložek - + Sta&tus Bar Sta&tus bar - + Toolbars Nástrojové lišty - + Sidebars Postranní lišta - + &Page Source Zdrojový &kód stránky - + &Menu Bar &Menu - + &Fullscreen &Celá obrazovka - + &Stop Z&astavit - + &Reload O&bnovit - + Character &Encoding Kó&dování znaků - + Zoom &In Zoo&m + - + Zoom &Out Z&oom - - + Reset Původní - + Close Window Zavřít okno - + Open Location Otevřít adresu - + Send Link... Poslat odkaz... - + Other Ostatní - + Default Defaultní - + Current cookies cannot be accessed. Současné cookies nejsou dostupné. - + Your session is not stored. Vaše relace není uložena. - + Start Private Browsing Spustit anonymní prohlížení - + Private Browsing Enabled Soukromé prohlížení zapnuto - + Restore &Closed Tab Obnovit zavř&ený panel - + Bookmarks In ToolBar Bookmarks In Toolbar Panel záložek - - - + + + Empty Prázdný - + New tab Nový panel - + Bookmark &This Page Přidat &stránku do záložek - + Bookmark &All Tabs Přidat &všechny panely do záložek - + Organize &Bookmarks Organizovat &záložky - + &Back &Zpět - + &Forward &Vpřed - + &Home &Domů - + Show &All History Zobrazit celou &historii - + Closed Tabs Zavřené panely - - + + Save Page Screen + Uložit snímek stránky + + + + (Private Browsing) (Soukromé prohlížení) - + Restore All Closed Tabs Obnovit všechny zavřené panely - + Clear list Vyčistit seznam - + About &Qt O &Qt - + &About QupZilla &O QupZille - + Informations about application Informace o aplikaci - + Report &Issue Nahlásit &problém - + &Web Search Hledání na &webu - + Page &Info Informace o &stránce - + &Download Manager Správce s&tahování - + &Cookies Manager Správce coo&kies - + &AdBlock &AdBlock - + RSS &Reader &RSS čtečka - + Clear Recent &History Vymazat nedá&vnou historii - + &Private Browsing Soukromé prohlíž&ení - + Pr&eferences Předvo&lby - - + + Web Inspector Web Inspektor - + Open file... Otevřít soubor... - + Are you sure you want to turn on private browsing? Jste si jistý že chcete zapnout soukromé prohlížení? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Se zapnutým soukromým prohlížením jsou některé akce týkající se soukromí vypnuty: - + Webpages are not added to the history. Stránky nejsou přidávány do historie. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Než zavřete prohlížeč, stále můžete použít tlačítka Zpět a Vpřed k vrácení se na stránky které jste otevřeli. - + There are still %1 open tabs and your session won't be stored. Are you sure to quit? Ještě je otevřeno %1 panelů a Vaše relace nebude uložena. Opravdu chcete skončit? @@ -2800,12 +2823,12 @@ nebyl nalezen! - + Empty Prázdný - + You don't have any RSS Feeds.<br/> Please add some with RSS icon in navigation bar on site which offers feeds. Nemáte žádný RSS kanál.<br/> @@ -2832,64 +2855,64 @@ Prosím přidejte si nějaký kliknutím na RSS ikonku v navigačním řádku.Optimalizovat databázi - + News Novinky - - + + Loading... Načítám... - + Fill title and URL of a feed: Vyplňte titulek a adresu kanálu: - + Feed title: Titulek kanálu: - + Feed URL: Adresa kanálu: - + Edit RSS Feed Upravit kanál - + Open link in actual tab Otevřít odkaz v aktuálním panelu - + Open link in new tab Otevřít odkaz v novém panelu - - + + New Tab Nový panel - + Error in fetching feed Chyba při stahování kanálu - + RSS feed duplicated Duplikovaný kanál - + You already have this feed. Tento kanál již odebíráte. @@ -3279,138 +3302,138 @@ Prosím přidejte si nějaký kliknutím na RSS ikonku v navigačním řádku. SourceViewer - + Source of Zdrojový kód - + File Soubor - + Save as... Uložit jako... - + Close Zavřít - + Edit Úpravy - + Undo Zpět - + Redo Vpřed - + Cut Vyjmout - + Copy Kopírovat - + Paste Vložit - + Delete Odstranit - + Select All Vybrat vše - + Find Najít - - + + Go to Line... Jít na řádek... - + View Zobrazení - + Reload Obnovit - + Editable Povolit úpravy - + Word Wrap Zalamovat řádky - + Save file... Uložit soubor... - + Error! Chyba! - + Cannot write to file! Nemohu zapisovat do souboru! - + Error writing to file Nelze zapisovat do souboru - + Source successfuly saved Zdroj úspěšně uložen - + Source reloaded Zdroj znovu načten - + Editable changed Povolení úprav změněno - + Word Wrap changed Zalamování řádků změněno - + Enter line number Zadejte číslo řádku @@ -3514,24 +3537,24 @@ Prosím přidejte si nějaký kliknutím na RSS ikonku v navigačním řádku.Zobrazit seznam otevřených panelů - + Loading... Načítám... - - + + No Named Page Bezejmenná stránka - + Actually You have %1 opened tabs Dohromady máte otevřeno %1 panelů - - + + New tab Nový panel diff --git a/translations/sk_SK.ts b/translations/sk_SK.ts index 018feff8c..0ae46b26e 100644 --- a/translations/sk_SK.ts +++ b/translations/sk_SK.ts @@ -320,82 +320,82 @@ p, li { white-space: pre-wrap; } Optimalizovať databázu - + Add new folder Pridať novú zložku - + Choose name for new bookmark folder: Zvoľte meno pre novú zložku: - + New Tab Nový panel - - - - - + + + + + Bookmarks In Menu Záložky v menu - - - - - + + + + + Bookmarks In ToolBar Panel záložiek - + Open link in actual &tab Otvoriť odkaz v &aktuálnom panely - + Open link in &new tab Otvoriť odkaz na &novom panely - + Move bookmark to &folder Presunúť záložku do &zložky - - - + + + Unsorted Bookmarks Nezotriedené záložky - + <b>Warning: </b>You already have this page bookmarked! <b>Upozornenie: </b>Túto stránku máte už v záložkách! - + Choose name and location of bookmark. Zvoľte meno a umiestnenie záložky. - + Add New Bookmark Pridať záložku - + Choose folder for bookmarks: Zvoľte zložku pre záložku: - + Bookmark All Tabs Pridať všetky panely do záložiek @@ -579,27 +579,27 @@ p, li { white-space: pre-wrap; } Hľadať... - + History História - + Bookmarks Záložky - + RSS RSS - + Database Optimized Databáza optimalizovaná - + Database successfuly optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 Databáza bola úspešne optimalizovaná.<br/><br/><b>Veľkosť databáze pred: </b>%1<br/><b>Veľkosť databáze por: </b>%2 @@ -782,12 +782,12 @@ p, li { white-space: pre-wrap; } + + - - <cookie not selected> <nebolo zvolene cookie> @@ -798,42 +798,42 @@ p, li { white-space: pre-wrap; } - + Remove cookie Odstrániť cookie - + Search Hľadať - + Confirmation Potvrdenie - + Are you sure to delete all cookies on your computer? Skutočne chcete vymazať všetky cookies z počítača? - + Remove cookies Odstrániť cookies - + Secure only Zabezpečené pripojenie - + All connections Všetky pripojenia - + Session cookie Konca relácie @@ -990,50 +990,50 @@ p, li { white-space: pre-wrap; } DownloadManager - + %1% of %2 files (%3) %4 remaining %1% z %2 súborov (%3) %4 zostávajú - + % - Download Manager % - Správca sťahovania - - + + Save file as... Uložiť súbor ako... - + Download Finished Sťahovanie dokončené - + All files have been successfuly downloaded. Všetky súbory boli úspešne stiahnuté. - + Warning Upozornenie - + Are you sure to quit? All uncompleted downloads will be cancelled! Ste si istý, že chcete skončiť? Všetky nedokončené sťahovania budú zrušene! - + NoNameDownload BezNázvu - - + + Download Manager Správca sťahovania @@ -1124,45 +1124,45 @@ p, li { white-space: pre-wrap; } Optimalizovať databázu - + New Tab Nový panel - + Open link in actual tab Otvoriť odkaz v aktuálnom panely - + Open link in new tab Otvoriť odkaz na novom panely - - + + Today Dnes - - + + This Week Tento týždeň - - + + This Month Tento mesiac - + Confirmation Potvrdenie - + Are you sure to delete all history? Skutočne chcete vymazať celú históriu? @@ -1442,6 +1442,24 @@ p, li { white-space: pre-wrap; } Proxy %1 požaduje uživateľské meno a heslo. + + PageScreen + + + Page Screen + + + + + Save Page Screen... + + + + + screen.png + + + PluginsList @@ -2221,413 +2239,418 @@ p, li { white-space: pre-wrap; } QupZilla - + File Súbor - + Edit Upraviť - + Tools Nástroje - + Help Pomocník - + View Zobraziť - - + + Bookmarks Záložky - - + + History História - + Quit Koniec - + New Tab Nový panel - + Close Tab Zavriet panel - + IP Address of current page IP Adresa aktuálnej stránky - + &New Window &Nové okno - + Open &File Otvoriť &súbor - + &Save Page As... &Uložiť stránku ako... - + &Print &Tlačiť - + &Undo &Späť - + &Redo &Dopredu - + &Cut &Vystrihnúť - + C&opy &Kopírovať - + &Paste &Prilepiť - + &Delete &Odstrániť - + Select &All Vybrať vš&etko - + &Find &Hľadať - + &Navigation Toolbar &Navigačná lišta - + &Bookmarks Toolbar Panel &záložiek - + Sta&tus Bar Status &bar - + Toolbars Nástrojové lišty - + Sidebars Bočné lišty - + &Page Source Zdrojový &kód stránky - + &Menu Bar &Menu - + &Fullscreen &Celá obrazovka - + &Stop Zasta&viť - + &Reload &Obnoviť - + Character &Encoding Kódovan&ie znakov - + Zoom &In Prib&lížiť - + Zoom &Out Od&dialiť - + Reset Resetovať - + Close Window Zavrieť okno - + Open Location Otvoriť adresu - + Send Link... Poslať odkaz... - + Other Ostatné - + Default Základné - + Current cookies cannot be accessed. - + Your session is not stored. - + Start Private Browsing Spustiť anonymné prehliadanie - + Private Browsing Enabled Súkromné prehliadanie je zapnuté - + Restore &Closed Tab Obnoviť zavretý pan&el - + Bookmarks In ToolBar Panel záložiek - - - + + + Empty Prázdny - + New tab Nový panel - + Bookmark &This Page Pridať &stránku do záložiek - + Bookmark &All Tabs Pridať &všetky panely do záložiek - + Organize &Bookmarks &Organizovať záložky - + &Back &Späť - + &Forward &Dopredu - + &Home Do&mov - + Show &All History Zobraziť celú &históriu - + Closed Tabs Zatvorené panely - - + + Save Page Screen + + + + + (Private Browsing) (Súkromné prehliadanie) - + Restore All Closed Tabs Obnoviť všetky zatvorené panely - + Clear list Vyčistiť list - + About &Qt O &Qt - + &About QupZilla &O QupZille - + Informations about application - + Report &Issue - + &Web Search Hladať na &webu - + Page &Info &Informácie o stránke - + &Download Manager Správca &sťahovania - + &Cookies Manager Správca &cookies - + &AdBlock &AdBlock - + RSS &Reader &RSS čítač - + Clear Recent &History Vymazať nedávnu &históriu - + &Private Browsing Súkromné prehlia&danie - + Pr&eferences Pr&edvoľby - - + + Web Inspector Web inšpektor - + Open file... Otvoriť súbor... - + Are you sure you want to turn on private browsing? Ste si istý, že chcete zapnúť súkromné prehliadanie? - + When private browsing is turned on, some actions concerning your privacy will be disabled: So zapnutým súkromným prehliadaním sú niektoré akcie týkajúce sa súkromia vypnuté: - + Webpages are not added to the history. Stránky nie sú pridávané do histórie. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Dokiaľ nezavriete prehliadač, tak stále môžete používať tlačidla Späť a Dopredu k vráteniu sa na stránky, ktoré ste mali otvorené. - + There are still %1 open tabs and your session won't be stored. Are you sure to quit? Stále sú otvorené %1 panely a Vaša relácia nebude uložená. Skutočne chcete skončiť? @@ -2801,12 +2824,12 @@ p, li { white-space: pre-wrap; } - + Empty Prázdny - + You don't have any RSS Feeds.<br/> Please add some with RSS icon in navigation bar on site which offers feeds. Nemáte žiadny RSS kanál.<br/> @@ -2833,64 +2856,64 @@ Prosím pridajte si nejaký kliknutím na RSS ikonku v navigačnom riadku.Optimalizovať databázu - + News Novinky - - + + Loading... Nahrávam... - + Fill title and URL of a feed: Vyplnte názov a adresu kanálu: - + Feed title: Názov kanálu: - + Feed URL: Adresa kanálu: - + Edit RSS Feed Upraviť RSS - + Open link in actual tab Otvoriť odkaz v aktuálnom panely - + Open link in new tab Otvoriť odkaz na novom panely - - + + New Tab Nový panel - + Error in fetching feed Chyba pri sťahovaní kanálu - + RSS feed duplicated Duplikovaný kanál - + You already have this feed. Tento kanál už odoberáte. @@ -3279,138 +3302,138 @@ Prosím pridajte si nejaký kliknutím na RSS ikonku v navigačnom riadku. SourceViewer - + Source of Zdrojový kód - + File Súbor - + Save as... Uložiť ako... - + Close Zavrieť - + Edit Upraviť - + Undo Späť - + Redo Dopredu - + Cut Vystrihnúť - + Copy Kopírovať - + Paste Prilepiť - + Delete Vymazať - + Select All Vybrať všetko - + Find Hľadať - - + + Go to Line... Ísť na riadok... - + View Zobraziť - + Reload Obnoviť - + Editable Povoliť úpravy - + Word Wrap Zalamovať riadky - + Save file... Uložiť súbor... - + Error! Chyba! - + Cannot write to file! Nemôžem zapisovať do súboru! - + Error writing to file Nejde zapisovať do súboru - + Source successfuly saved Zdroj úspečne uložený - + Source reloaded Zdroj novu načítaný - + Editable changed Povolenie úprav zmenené - + Word Wrap changed Zalamovanie riadkov zmenené - + Enter line number Zadajte číslo riadku @@ -3514,24 +3537,24 @@ Prosím pridajte si nejaký kliknutím na RSS ikonku v navigačnom riadku.Zobraziť zoznam otvorených panelov - + Loading... Nahrávam... - - + + No Named Page Stránka bez mena - + Actually You have %1 opened tabs Momentálne otvorených %1 panelov - - + + New tab Nový panel