diff --git a/bin/locale/cs_CZ.qm b/bin/locale/cs_CZ.qm index c89e2d151..a9d8f0969 100644 Binary files a/bin/locale/cs_CZ.qm and b/bin/locale/cs_CZ.qm differ diff --git a/bin/locale/sk_SK.qm b/bin/locale/sk_SK.qm index 881fff416..ded990b9b 100644 Binary files a/bin/locale/sk_SK.qm and b/bin/locale/sk_SK.qm differ diff --git a/bin/themes/chrome/main.css b/bin/themes/chrome/main.css index 58435bdee..9fd2b001d 100644 --- a/bin/themes/chrome/main.css +++ b/bin/themes/chrome/main.css @@ -1,8 +1,8 @@ /************************************* - * Chrome Theme v0.1 * + * Chrome Theme v0.4 * * Author: nowrep * * Based on: Firefox Chromifox Theme * - * Last updated: 08.09 2011 * + * Last updated: 04.11.2011 * *************************************/ *[html-link-look="true"] @@ -279,6 +279,7 @@ AboutDialog #label AboutDialog #textBrowser { border:none; + margin-top: -2px; /* Workarounding rounded border on KDE */ } /*DesktopNotification*/ diff --git a/bin/themes/default/main.css b/bin/themes/default/main.css index 17bc373fe..d25eafecf 100644 --- a/bin/themes/default/main.css +++ b/bin/themes/default/main.css @@ -1,7 +1,7 @@ /**************************** - * Default Theme v0.1 * + * Default Theme v0.4 * * Author: nowrep * - * Last updated: 31.08 2011 * + * Last updated: 04.11.2011 * ****************************/ *[html-link-look="true"] @@ -288,6 +288,7 @@ AboutDialog #label AboutDialog #textBrowser { border:none; + margin-top: -2px; /* Workarounding rounded border on KDE */ } /*DesktopNotification*/ diff --git a/bin/themes/linux/main.css b/bin/themes/linux/main.css index 64e7dff59..02af09313 100644 --- a/bin/themes/linux/main.css +++ b/bin/themes/linux/main.css @@ -1,8 +1,8 @@ /************************************* - * Default Theme v0.1 * + * Default Theme v0.4 * * Author: nowrep * * Based on: Firefox Chromifox Theme * - * Last updated: 08.09 2011 * + * Last updated: 04.11.2011 * *************************************/ *[html-link-look="true"] @@ -248,6 +248,7 @@ AboutDialog #label AboutDialog #textBrowser { border:none; + margin-top: -2px; /* Workarounding rounded border on KDE */ } /*DesktopNotification*/ diff --git a/bin/themes/mac/main.css b/bin/themes/mac/main.css index c7c3c9686..7bd519fda 100644 --- a/bin/themes/mac/main.css +++ b/bin/themes/mac/main.css @@ -1,8 +1,8 @@ /************************************* - * Mac Theme v0.1 * + * Mac Theme v0.4 * * Author: nowrep * * Based on: Firefox Mac OS X Theme * - * Last updated: 01.09 2011 * + * Last updated: 04.11.2011 * *************************************/ *[html-link-look="true"] @@ -276,6 +276,7 @@ AboutDialog #label AboutDialog #textBrowser { border:none; + margin-top: -2px; /* Workarounding rounded border on KDE */ } /*DesktopNotification*/ diff --git a/bin/themes/windows/main.css b/bin/themes/windows/main.css index 36b03cd30..c50d8318e 100644 --- a/bin/themes/windows/main.css +++ b/bin/themes/windows/main.css @@ -1,8 +1,8 @@ /************************************* - * Windows Theme v0.1 * + * Windows Theme v0.4 * * Author: nowrep * * Based on: Firefox Strata Aero * - * Last updated: 07.09 2011 * + * Last updated: 04.11.2011 * *************************************/ *[html-link-look="true"] @@ -282,6 +282,7 @@ AboutDialog #label AboutDialog #textBrowser { border:none; + margin-top: -2px; /* Workarounding rounded border on KDE */ } /*DesktopNotification*/ diff --git a/linux/applications/qupzilla.desktop b/linux/applications/qupzilla.desktop index 67fbd2bbd..674af0f4b 100644 --- a/linux/applications/qupzilla.desktop +++ b/linux/applications/qupzilla.desktop @@ -6,11 +6,13 @@ Comment[cs]=Rychlý a bezpečný webový prohlížeč Comment[sk]=Rýchly a bezpečný webový prehliadač Comment[de]=Ein schneller und sicherer Web Browser Comment[nl]=Een snelle en veilige webbrowser +Comment[it]=Un browser web veloce e sicuro GenericName=Web Browser GenericName[cs]=Webový prohlížeč GenericName[sk]=Webový prehliadač GenericName[de]=Web Browser GenericName[nl]=Webbrowser +GenericName[it]=Browser Web Exec=qupzilla %u MimeType=text/html;application/xhtml+xml; Terminal=false diff --git a/src/QupZilla.pro b/src/QupZilla.pro index b4d299383..8e4d29bc8 100644 --- a/src/QupZilla.pro +++ b/src/QupZilla.pro @@ -30,6 +30,7 @@ win32:LIBS += User32.lib Ole32.lib Shell32.lib ShlWapi.lib Gdi32.lib ComCtl32.li TRANSLATIONS +=../translations/cs_CZ.ts\ ../translations/sk_SK.ts\ + ../translations/de_DE.ts\ ../translations/nl_NL.ts\ ../translations/zh_CN.ts\ diff --git a/src/downloads/downloaditem.cpp b/src/downloads/downloaditem.cpp index 76bed62e2..b520735d3 100644 --- a/src/downloads/downloaditem.cpp +++ b/src/downloads/downloaditem.cpp @@ -38,6 +38,7 @@ DownloadItem::DownloadItem(QListWidgetItem* item, QNetworkReply* reply, const QS , m_downloadPage(downloadPage) , m_downloading(false) , m_openAfterFinish(openAfterFinishedDownload) + , m_downloadStopped(false) { #ifdef DOWNMANAGER_DEBUG qDebug() << __FUNCTION__ << item << reply << path << fileName; @@ -71,10 +72,10 @@ DownloadItem::DownloadItem(QListWidgetItem* item, QNetworkReply* reply, const QS m_downloading = true; m_timer.start(1000, this); readyRead(); - QTimer::singleShot(500, this, SLOT(updateDownload())); + QTimer::singleShot(200, this, SLOT(updateDownload())); if (m_reply->error() != QNetworkReply::NoError) { - stop(); + stop(false); error(m_reply->error()); } } @@ -238,6 +239,11 @@ void DownloadItem::stop(bool askForDeleteFile) #ifdef DOWNMANAGER_DEBUG qDebug() << __FUNCTION__; #endif + + if (m_downloadStopped) + return; + m_downloadStopped = true; + m_openAfterFinish = false; m_timer.stop(); m_reply->abort(); @@ -258,10 +264,9 @@ void DownloadItem::stop(bool askForDeleteFile) if (askForDeleteFile) { QMessageBox::StandardButton button = QMessageBox::question(m_item->listWidget()->parentWidget(), tr("Delete file"), tr("Do you want to also delete dowloaded file?"), QMessageBox::Yes | QMessageBox::No); - if (button != QMessageBox::Yes) - return; + if (button == QMessageBox::Yes) + QFile::remove(outputfile); } - QFile::remove(outputfile); } void DownloadItem::mouseDoubleClickEvent(QMouseEvent* e) @@ -325,7 +330,7 @@ void DownloadItem::readyRead() qDebug() << __FUNCTION__ ; #endif if (!m_outputFile.isOpen() && !m_outputFile.open(QIODevice::WriteOnly)) { - stop(); + stop(false); ui->downloadInfo->setText(tr("Error: Cannot write to file!")); return; } @@ -338,7 +343,7 @@ void DownloadItem::error(QNetworkReply::NetworkError error) qDebug() << __FUNCTION__ << error; #endif if (error != QNetworkReply::NoError) - ui->downloadInfo->setText(tr("Error: ")+m_reply->errorString()); + ui->downloadInfo->setText(tr("Error: ") + m_reply->errorString()); } void DownloadItem::updateDownload() diff --git a/src/downloads/downloaditem.h b/src/downloads/downloaditem.h index 0a4964283..bbd9292a0 100644 --- a/src/downloads/downloaditem.h +++ b/src/downloads/downloaditem.h @@ -95,6 +95,7 @@ private: bool m_downloading; bool m_openAfterFinish; + bool m_downloadStopped; double m_currSpeed; qint64 m_received; qint64 m_total; diff --git a/src/other/statusbarmessage.cpp b/src/other/statusbarmessage.cpp index f2dd610cb..ea0f32390 100644 --- a/src/other/statusbarmessage.cpp +++ b/src/other/statusbarmessage.cpp @@ -31,6 +31,8 @@ TipLabel::TipLabel(QupZilla* parent) ensurePolished(); setFrameStyle(QFrame::NoFrame); setMargin(3); + + qApp->installEventFilter(this); } void TipLabel::show() @@ -54,12 +56,35 @@ void TipLabel::paintEvent(QPaintEvent* ev) SqueezeLabelV1::paintEvent(ev); } +bool TipLabel::eventFilter(QObject* o, QEvent* e) +{ + Q_UNUSED(o); + + switch (e->type()) { + case QEvent::Leave: + case QEvent::WindowActivate: + case QEvent::WindowDeactivate: + case QEvent::MouseButtonPress: + case QEvent::MouseButtonRelease: + case QEvent::MouseButtonDblClick: + case QEvent::FocusIn: + case QEvent::FocusOut: + case QEvent::Wheel: + hide(); + break; + + default: + break; + } + return false; +} + StatusBarMessage::StatusBarMessage(QupZilla* mainClass) : QObject(mainClass) , p_QupZilla(mainClass) , m_statusBarText(new TipLabel(mainClass)) { - m_statusBarText->setParent(p_QupZilla); + m_statusBarText->setParent(p_QupZilla->window()); } void StatusBarMessage::showMessage(const QString &message) diff --git a/src/other/statusbarmessage.h b/src/other/statusbarmessage.h index 34f8fdca8..40dcb1eef 100644 --- a/src/other/statusbarmessage.h +++ b/src/other/statusbarmessage.h @@ -32,6 +32,7 @@ class TipLabel : public SqueezeLabelV1 { public: TipLabel(QupZilla* parent); + bool eventFilter(QObject* o, QEvent* e); void show(); private: diff --git a/src/plugins/clicktoflash.cpp b/src/plugins/clicktoflash.cpp index c9abd1046..a98e1e276 100644 --- a/src/plugins/clicktoflash.cpp +++ b/src/plugins/clicktoflash.cpp @@ -60,6 +60,11 @@ ClickToFlash::ClickToFlash(const QUrl &pluginUrl, const QStringList &argumentNam , m_url(pluginUrl) , m_page(parentPage) { + if (m_url.isEmpty()) { + QTimer::singleShot(200, this, SLOT(hideAdBlocked())); + return; + } + //AdBlock AdBlockManager* manager = AdBlockManager::instance(); if (manager->isEnabled()) { @@ -131,8 +136,9 @@ void ClickToFlash::hideAdBlocked() findElement(); if (!m_element.isNull()) m_element.setAttribute("style", "display:none;"); - else + else { hide(); + } //deleteLater(); //Well, it should be there, but therefore it sometimes crashes } diff --git a/src/webview/searchtoolbar.ui b/src/webview/searchtoolbar.ui index 0a9ff3633..0347b5d87 100644 --- a/src/webview/searchtoolbar.ui +++ b/src/webview/searchtoolbar.ui @@ -47,7 +47,7 @@ - 300 + 200 16777215 @@ -114,9 +114,12 @@ Qt::Horizontal + + QSizePolicy::MinimumExpanding + - 333 + 40 20 diff --git a/translations/cs_CZ.ts b/translations/cs_CZ.ts index 6e93a5de3..9c649e633 100644 --- a/translations/cs_CZ.ts +++ b/translations/cs_CZ.ts @@ -69,14 +69,6 @@ p, li { white-space: pre-wrap; } <p><b>Translators:</b><br/>%1</p> <p><b>Překladatelé</b><br/>%1</p> - - <p><b>Other contributors:</b><br/>%1</p> - <p><b>Ostatní spolupracovníci:</b><br/>%1</p> - - - <p><b>Thanks to:</b><br/>%1</p> - <p><b>Poděkování:</b><br/>%1</p> - AcceptLanguage @@ -160,10 +152,6 @@ p, li { white-space: pre-wrap; } Update completed Aktualizace hotova - - EasyList has been successfuly updated. - EasyList byl úspěšně aktualizován. - EasyList has been successfully updated. @@ -447,10 +435,6 @@ p, li { white-space: pre-wrap; } Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in Internet Explorer ukládá své záložky ve složce <b>Oblíbené</b>. Tato složka se obvykle nachází v - - Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database.This file is usually located in - Mozzila Firefox ukládá své záložky v SQLite databázi <b>places.sqlite</b>. Tento soubor se obvykle nachází v - @@ -458,14 +442,6 @@ p, li { white-space: pre-wrap; } Please choose this file to begin importing bookmarks. Vyberte prosím tento soubor pro zahájení importu. - - Google Chrome stores its bookmarks in <b>Bookmarks</b> text file.This file is usually located in - Google Chrome ukládá své záložky v textovém souboru <b>Bookmarks</b>. Tento soubor je obvykle nachází v - - - Opera stores its bookmarks in <b>bookmarks.adr</b> text file.This file is usually located in - Opera ukládá své záložky v textovém souboru <b>bookmarks.adr</b>. Tento soubor se obvykle nachází v - Please choose this folder to begin importing bookmarks. @@ -669,24 +645,12 @@ p, li { white-space: pre-wrap; } Copy address Kopírovat adresu - - Move bookmark to &folder - Přesunout záložku do &složky - - - Unsorted Bookmarks - Nesetříděné záložky - Bookmarks In Menu Záložky v menu - - Bookmarks In ToolBar - Panel záložek - &Delete @@ -756,10 +720,6 @@ p, li { white-space: pre-wrap; } Empty Prázdný - - Sites You visited the most - Nejvíce navštěvované stránky - BookmarksWidget @@ -843,13 +803,9 @@ p, li { white-space: pre-wrap; } - Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 + Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Database 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 - - 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 - CertificateInfoWidget @@ -1350,10 +1306,6 @@ nebyl nalezen! All files have been successfully downloaded. Všechna stahování byla úspěšně dokončena. - - All files have been successfuly downloaded. - Všechna stahování byla úspěšně dokončena. - Warning @@ -1706,24 +1658,15 @@ nebyl nalezen! .cz - - LocationCompleter - - Search %1 on Google.com -.......... - Hledat %1 na Google.com -.......... - - MainApplication - + Last session crashed Poslední relace spadla - + <b>QupZilla crashed :-(</b><br/>Oops, last session of QupZilla ends with its crash. We are very sorry. Would you try to restore saved state? <b>QupZilla spadla :-(</b><br/>Oops, poslední relace QupZilly skončila jejím pádem. Velice se omlouváme. Přejete si obnovit uložený stav? @@ -1969,10 +1912,6 @@ nebyl nalezen! Plugins Doplňky - - After launch: - Po spuštění: - Open blank page @@ -2137,7 +2076,7 @@ nebyl nalezen! - + Note: You cannot delete active profile. Poznámka: Nemůžete smazat aktivní profil. @@ -2479,10 +2418,6 @@ nebyl nalezen! Allow JAVA Povolit JAVA - - Allow JavaScript - Povolit JavaScript - Allow Plugins (Flash plugin) @@ -2595,62 +2530,58 @@ nebyl nalezen! Ke změně jazyka je nutný restart prohlížeče. - + OSD Notification OSD Oznámení - Drag it on the screen to place it where You want. - Přetáhněte ho na obrazovce na místo, na kterém jej chcete mít. - - - + Drag it on the screen to place it where you want. Přetáhněte jej na obrazovce na místo, na kterém jej chcete mít. - + Choose download location... Vyberte složku pro stahování... - + Choose stylesheet location... Vyberte umístění stylu... - + New Profile Nový profil - + Enter the new profile's name: Zvolte jméno nového profilu: - - + + Error! Chyba! - + This profile already exists! Tento profil již existuje! - + Cannot create profile directory! Nemohu vytvořit složku profilu! - + Confirmation Potvrzení - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Jste si jisti že chcete permanentně smazat profil "%1"? Tato akce nelze vrátit zpět! @@ -2699,451 +2630,427 @@ 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 - + &Tools &Nástroje - + &Help Nápo&věda - + &Bookmarks Zál&ožky - + Hi&story &Historie - + &File &Soubor - + &New Window &Nové okno - + Open &File Otevřít &soubor - + &Save Page As... &Uložit stránku jako... - + &Print &Tisk - + Import bookmarks... Importovat záložky... - + &Edit Úpr&avy - + &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 - + &View &Zobrazení - + &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? @@ -3166,10 +3073,6 @@ nebyl nalezen! Report issue Nahlásit problém - - If You are experiencing problems with QupZilla, please try first disable all plugins. <br/>If it won't help, then please fill this form: - Pokud máte problém s používáním QupZilly, zakažte prosím všechny doplňky. <br/> Pokud problém přetrvává, vyplňte tento formulář: - If you are experiencing problems with QupZilla, please try first disable all plugins. <br/>If it won't help, then please fill this form: @@ -3453,10 +3356,6 @@ Prosím přidejte si nějaký kliknutím na RSS ikonku v navigačním řádku.Open RSS Manager Otevřít RSS čtečku - - You have successfuly added RSS feed "%1". - Kanál "%1" byl úspěšně přidán. - You have successfully added RSS feed "%1". @@ -3535,10 +3434,6 @@ After adding or removing certificate paths, it is neccessary to restart browser Všechny certifikáty musí mít .crt příponu. Po přidání či odstranění cest k certifikátům je nutné k projevení změn restart prohlížeče. - - After adding or removing certificate paths, it is neccessary to restart browser in order to changes take effect. - Po přidání či odstranění cest k certifikátům je nutné k projevení změn restart prohlížeče. - This is list of Local Certificates stored in user profile. This list also contains all certificates, that have received an exception. @@ -3554,10 +3449,6 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Add Přidat - - If CA Authorities Certificates were not automatically loaded from system, You can specify manual paths where certificates are stored. - Pokud nebyly certifikáty CA Autorit automaticky načtené ze systému, můžete zde manuálně přidat cestu, kde jsou certifikáty uloženy. - <b>NOTE:</b> Setting this option is big security risk! @@ -3634,10 +3525,6 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Search Engine Added Vyhledávač přidán - - Search Engine "%1" has been successfuly added. - Vyhledávač "%1" byl úspěšně přidán. - Search Engine "%1" has been successfully added. @@ -3865,10 +3752,6 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Your connection to this site is <b>unsecured</b>. Připojení k této stránce je <b>nezabezpečené</b>. - - This is Your <b>%1.</b> visit of this site. - Toto je Vaše <b>%1.</b> návštěva této stránky. - @@ -3890,10 +3773,6 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ third třetí - - This is Your <b>%1</b> visit of this site. - Toto je Vaše <b>%1</b> návštěva této stránky. - You have <b>never</b> visited this site before. @@ -4018,10 +3897,6 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Source successfully saved Zdroj úspěšně uložen - - Source successfuly saved - Zdroj úspěšně uložen - Source reloaded @@ -4154,7 +4029,7 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ - + No Named Page Bezejmenná stránka @@ -4164,12 +4039,8 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Dohromady máte otevřeno %1 panelů - Actually You have %1 opened tabs - Dohromady máte otevřeno %1 panelů - - - - + + New tab Nový panel @@ -4231,12 +4102,6 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ WebPage - - To show this page, QupZilla must resend request which do it again -(like searching on making an shoping, witch has been already done.) - Pro zobrazení této stránky musí QupZilla znovu odeslat požadavek na server -(jako např. hledaní při nakupování, které již bylo provedeno.) - To show this page, QupZilla must resend request which do it again @@ -4400,10 +4265,6 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Show Web &Inspector Zobrazit Web &Inspektor - - Search "%1 .." on &Google - Hledat "%1 .." na &Googlu - &Save image as... diff --git a/translations/de_DE.ts b/translations/de_DE.ts index 6624f735f..db02e8d3a 100644 --- a/translations/de_DE.ts +++ b/translations/de_DE.ts @@ -73,14 +73,6 @@ p, li { white-space: pre-wrap; } <p><b>Translators:</b><br/>%1</p> <p><b>Übersetzer:</b><br/>%1</p> - - <p><b>Other contributors:</b><br/>%1</p> - <p><b>Weitere Mitwirkende:</b><br/>%1</p> - - - <p><b>Thanks to:</b><br/>%1</p> - <p><b>Dank an:</b><br/>%1</p> - AcceptLanguage @@ -164,10 +156,6 @@ p, li { white-space: pre-wrap; } Update completed Aktualisierung beendet - - EasyList has been successfuly updated. - EasyList wurde erfolgreich aktualisiert. - EasyList has been successfully updated. @@ -661,24 +649,12 @@ p, li { white-space: pre-wrap; } Copy address Link-Adresse kopieren - - Move bookmark to &folder - Lesezeichen in &Ordner verschieben - - - Unsorted Bookmarks - Unsortierte Lesezeichen - Bookmarks In Menu Lesezeichen im Menü - - Bookmarks In ToolBar - Lesezeichen in Werkzeug-Leiste - &Delete @@ -748,10 +724,6 @@ p, li { white-space: pre-wrap; } Empty Leer - - Sites You visited the most - Meistbesuchte Seiten - BookmarksWidget @@ -835,12 +807,8 @@ p, li { white-space: pre-wrap; } - Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 - Datenbank erfolgreich optimiert.<br/><br/><b>Datenbankgröße vorher: </b>%1<br/><b>Datenbankgröße nachher: </b>%2 - - - Database successfuly optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 - Datenbank erfolgreich optimiert.<br/><br/><b>Datenbankgröße vorher: </b>%1<br/><b>Datenbankgröße nachher: </b>%2 + Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Database Size After: </b>%2 + @@ -1341,10 +1309,6 @@ p, li { white-space: pre-wrap; } All files have been successfully downloaded. Alle Dateien wurden erfolgreich heruntergeladen. - - All files have been successfuly downloaded. - Alle Dateien wurden erfolgreich heruntergeladen. - Warning @@ -1696,24 +1660,15 @@ p, li { white-space: pre-wrap; } .de - - LocationCompleter - - Search %1 on Google.com -.......... - %1 auf Google.com suchen -.......... - - MainApplication - + Last session crashed Die letzte Sitzung wurde unerwartet beendet - + <b>QupZilla crashed :-(</b><br/>Oops, last session of QupZilla ends with its crash. We are very sorry. Would you try to restore saved state? <b>QupZilla ist abgestürzt :-(</b><br/>Hoppla,die letzte Sitzung wurde unerwartet beendet. Verzeihung. Möchten Sie den letzten Status wiederherstellen? @@ -1959,10 +1914,6 @@ p, li { white-space: pre-wrap; } Plugins Plugins - - After launch: - Nach dem Start: - Open blank page @@ -2176,10 +2127,6 @@ p, li { white-space: pre-wrap; } Allow JAVA Java zulassen - - Allow JavaScript - JavaScript erlauben - Allow Plugins (Flash plugin) @@ -2217,7 +2164,7 @@ p, li { white-space: pre-wrap; } - + Note: You cannot delete active profile. Hinweis: Ein aktives Profil kann nicht gelöscht werden. @@ -2585,62 +2532,58 @@ p, li { white-space: pre-wrap; } Um die Sprache zu ändern, starten Sie bitte QupZilla neu. - + OSD Notification OSD Benachrichtigung - Drag it on the screen to place it where You want. - Veschieben Sie es auf dem Bildschirm nach Belieben. - - - + Drag it on the screen to place it where you want. Veschieben Sie es auf dem Bildschirm nach Belieben. - + Choose download location... Download-Verzeichnis auswählen... - + Choose stylesheet location... Stylesheet-Verzeichnis wählen... - + New Profile Neues Profil - + Enter the new profile's name: Bitte geben Sie den Namen des neuen Profils ein: - - + + Error! Fehler! - + This profile already exists! Dieses Profil existiert bereits! - + Cannot create profile directory! Verzeichnis kann nicht erstellt werden! - + Confirmation Bestätigung - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Möchten Sie wirklich das Profil "%1" dauerhaft entfernen? Diese Aktion kann nicht rückgängig gemacht werden! @@ -2689,450 +2632,426 @@ p, li { white-space: pre-wrap; } QupZilla - File - Datei - - - Edit - Bearbeiten - - - Tools - Werkzeuge - - - Help - Hilfe - - - View - Ansicht - - - + Bookmarks Lesezeichen - + History Verlauf - + Quit Beenden - + New Tab Neuer Tab - + Close Tab Tab schließen - + IP Address of current page IP Adresse der aktuellen Seite - + &Tools &Werkzeuge - + &Help &Hilfe - + &Bookmarks &Lesezeichen - + Hi&story &Verlauf - + &File &Datei - + &New Window Neues &Fenster - + Open &File Datei ö&ffnen - + &Save Page As... Seite speichern &unter... - + &Print &Drucken - + Import bookmarks... Lesezeichen importieren... - + &Edit &Bearbeiten - + &Undo &Rückgängig - + &Redo &Wiederherstellen - + &Cut &Ausschneiden - + C&opy &Kopieren - + &Paste E&infügen - + &Delete &Löschen - + Select &All Alles au&swählen - + &Find &Suchen - + &View &Ansicht - + &Navigation Toolbar &Navigations-Symbolleiste - + &Bookmarks Toolbar &Lesezeichen-Werkzeug-Leiste - + Sta&tus Bar Sta&tus-Leiste - + Toolbars Werkzeugleisten - + Sidebars Seiten-Leiste - + &Page Source Seiten-&Quelltext - + &Menu Bar &Menü-Leiste - + &Fullscreen &Vollbild - + &Stop &Stopp - + &Reload &Neu laden - + Character &Encoding &Zeichenkodierung - + Zoom &In Ver&größern - + Zoom &Out Ver&kleinern - + Reset Zurücksetzen - + Close Window Fenster schließen - + Open Location Adresse aufrufen - + Send Link... Link senden... - + Other Andere - + Default Standard - + Current cookies cannot be accessed. Auf aktuelle Cookies kann nicht zugegriffen werden. - + Your session is not stored. Ihre Sitzung wird nicht gespeichert. - + Start Private Browsing Privaten Modus starten - + Private Browsing Enabled Privater Modus aktiv - + Restore &Closed Tab Geschlossenen Tab &wiederherstellen - + Bookmarks In ToolBar Lesezeichen in Werkzeug-Leiste - - - + + + Empty Leer - - + + New tab Neuer Tab - + Bookmark &This Page &Lesezeichen für diese Seite hinzufügen - + Bookmark &All Tabs Lesezeichen für alle &geöffneten Tabs hinzufügen - + Organize &Bookmarks Bookmarks &bearbeiten - + &Back &Zurück - + &Forward &Vor - + &Home &Startseite - + Show &All History &Vollständigen Verlauf anzeigen - + Closed Tabs Geschlossene Tabs - + Save Page Screen Bildschirmseite speichern - - + + (Private Browsing) (Privater Modus) - + Restore All Closed Tabs Alle geschlossenen Tabs wiederherstellen - + Clear list Liste leeren - + About &Qt Üb&er Qt - + &About QupZilla Über Qup&Zilla - + Informations about application Informationen über QupZilla - + Report &Issue &Fehlerbericht senden - + &Web Search Web&suche - + Page &Info S&eiteninformationen anzeigen - + &Download Manager &Download Manager - + &Cookies Manager &Cookie Manager - + &AdBlock &AdBlock - + RSS &Reader RSS &Reader - + Clear Recent &History &Verlauf löschen - + &Private Browsing &Privater Modus - + Pr&eferences &Einstellungen - Web Inspector - Web Inspector - - - + Open file... Datei öffnen... - + Are you sure you want to turn on private browsing? Möchten Sie wirklich den privaten Modus starten? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Wenn der private Modus aktiv ist, stehen einige Aktionen nicht zur Verfügung: - + Webpages are not added to the history. Webseiten werden nicht zum Verlauf hinzugefügt. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Solange dieses Fenster geöffnet ist, können Sie über die Symbole "Zurück" und "Vor" zu den Webseiten zurückkehren, die Sie geöffnet haben. - + There are still %1 open tabs and your session won't be stored. Are you sure to quit? Es sind noch %1 Tabs geöffnet und Ihre Sitzung wird nicht gespeichert. Möchten Sie QupZilla wirklich beenden? @@ -3155,10 +3074,6 @@ p, li { white-space: pre-wrap; } Report issue Fehlerbericht senden - - If You are experiencing problems with QupZilla, please try first disable all plugins. <br/>If it won't help, then please fill this form: - Wenn Sie bei der Nutzung von QupZilla auf Probleme stoßen, deaktivieren Sie bitte zuerst alle Plugins. <br/> Sollte dies das Problem nicht lösen, füllen Sie bitte dieses Formular aus: - If you are experiencing problems with QupZilla, please try first disable all plugins. <br/>If it won't help, then please fill this form: @@ -3271,14 +3186,6 @@ p, li { white-space: pre-wrap; } Translators Übersetzer - - Linux - Linux - - - Windows - Windows - Version @@ -3450,10 +3357,6 @@ Bitte fügen Sie Feeds über das RSS Symbol in der Navigationsleiste hinzu.Open RSS Manager RSS Manager öffnen - - You have successfuly added RSS feed "%1". - RSS Feed "%1" erfolgreich hinzugefügt. - You have successfully added RSS feed "%1". @@ -3557,42 +3460,6 @@ After adding or removing certificate paths, it is neccessary to restart browser Alle Zertifikate müssen einen .crt suffix besitzen. Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gestarten werden, um die Änderung wirksam zu machen. - - Delete - Löschen - - - Ignore all warnings - Alle Warnungen ignorieren - - - <b>Organization: </b> - <b>Organisation: </b> - - - <b>Domain Name: </b> - <b>Domänen-Name: </b> - - - <b>Locality Name: </b> - <b>Name der Stadt: </b> - - - <b>Country Name: </b> - <b>Name des Landes: </b> - - - <b>Verified by: </b> - <b>Bestätigt von: </b> - - - <b>Expiration Date: </b> - <b>Ablaufdatum: </b> - - - SSL Certificate Informations - SSL Zertifkatsinformationen - Choose path... @@ -3659,10 +3526,6 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Search Engine Added Suchmaschine hinzugefügt - - Search Engine "%1" has been successfuly added. - Suchmaschine "%1" wurde erfolgreich hinzugefügt. - Search Engine "%1" has been successfully added. @@ -3795,42 +3658,6 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest <b>Preview</b> <b>Vorschau</b> - - <b>Issued To</b> - <b>Ausgestellt für</b> - - - Common Name (CN): - Allgemeiner Name (CN): - - - Organization (O): - Organisation (O): - - - Organizational Unit (OU): - Organisationseinheit (OU): - - - Serial Number: - Seriennummer: - - - <b>Issued By</b> - <b>Ausgestellt von</b> - - - <b>Validity</b> - <b>Gültigkeit</b> - - - Issued On: - Ausgestellt für: - - - Expires On: - Verfällt am: - Site address: @@ -3925,10 +3752,6 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Your connection to this site is <b>unsecured</b>. Diese Verbindung ist <b>unverschlüsselt</b>. - - This is Your <b>%1.</b> visit of this site. - Dies ist Ihr <b>%1.</b> Besuch dieser Seite. - @@ -3950,10 +3773,6 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest third dritter - - This is Your <b>%1</b> visit of this site. - Dies ist Ihr <b>%1</b> Besuch dieser Seite. - You have <b>never</b> visited this site before. @@ -4078,10 +3897,6 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Source successfully saved Quelltext erfolgreich gespeichert - - Source successfuly saved - Quelltext erfolgreich gespeichert - Source reloaded @@ -4214,7 +4029,7 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest - + No Named Page Unbekannte Seite @@ -4224,12 +4039,8 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Aktuell sind %1 Tabs geöffnet - Actually You have %1 opened tabs - Aktuell sind %1 Tabs geöffnet - - - - + + New tab Neuer Tab @@ -4291,12 +4102,6 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest WebPage - - To show this page, QupZilla must resend request which do it again -(like searching on making an shoping, witch has been already done.) - Um diese Seite anzeigen zu können, muss QupZilla eine erneute Abfrage an den Server versenden - - To show this page, QupZilla must resend request which do it again @@ -4460,10 +4265,6 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Show Web &Inspector Web &Inspector anzeigen - - Search "%1 .." on &Google - Suche "%1 .." auf &Google - &Save image as... diff --git a/translations/es.ts b/translations/es.ts index 61c3f5c1e..5c423c930 100644 --- a/translations/es.ts +++ b/translations/es.ts @@ -803,7 +803,7 @@ p, li { white-space: pre-wrap; } - Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 + Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Database Size After: </b>%2 @@ -1657,12 +1657,12 @@ p, li { white-space: pre-wrap; } MainApplication - + Last session crashed - + <b>QupZilla crashed :-(</b><br/>Oops, last session of QupZilla ends with its crash. We are very sorry. Would you try to restore saved state? @@ -2022,7 +2022,7 @@ p, li { white-space: pre-wrap; } - + Note: You cannot delete active profile. @@ -2524,58 +2524,58 @@ p, li { white-space: pre-wrap; } - + OSD Notification - + Drag it on the screen to place it where you want. - + Choose download location... - + Choose stylesheet location... - + New Profile - + Enter the new profile's name: - - + + Error! - + This profile already exists! - + Cannot create profile directory! - + Confirmation - + Are you sure to permanently delete "%1" profile? This action cannot be undone! @@ -2624,426 +2624,426 @@ p, li { white-space: pre-wrap; } QupZilla - + Private Browsing Enabled - + IP Address of current page - + Bookmarks - + History - + &New Window - + New Tab - + Open Location - + Open &File - + Close Tab - + Close Window - + &Save Page As... - + Save Page Screen - + Send Link... - + &Print - + Import bookmarks... - + Quit - + &Undo - + &Redo - + &Cut - + C&opy - + &Paste - + &Delete - + Select &All - + &Find - + &Tools - + &Help - + &Bookmarks - + Hi&story - + &File - + &Edit - + &View - + &Navigation Toolbar - + &Bookmarks Toolbar - + Sta&tus Bar - + &Menu Bar - + &Fullscreen - + &Stop - + &Reload - + Character &Encoding - + Toolbars - + Sidebars - + Zoom &In - + Zoom &Out - + Reset - + &Page Source - + Closed Tabs - + Restore &Closed Tab - - + + (Private Browsing) - + Bookmark &This Page - + Bookmark &All Tabs - + Organize &Bookmarks - + Bookmarks In ToolBar - - - + + + Empty - + &Back - + &Forward - + &Home - + Show &All History - + Restore All Closed Tabs - + Clear list - + About &Qt - + &About QupZilla - + Informations about application - + Report &Issue - + &Web Search - + Page &Info - + &Download Manager - + &Cookies Manager - + &AdBlock - + RSS &Reader - + Clear Recent &History - + &Private Browsing - + Pr&eferences - + Other - + Default - + Open file... - + Are you sure you want to turn on private browsing? - + When private browsing is turned on, some actions concerning your privacy will be disabled: - + Webpages are not added to the history. - + Current cookies cannot be accessed. - + Your session is not stored. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. - + Start Private Browsing - + There are still %1 open tabs and your session won't be stored. Are you sure to quit? - - + + New tab @@ -4019,7 +4019,7 @@ After adding or removing certificate paths, it is neccessary to restart browser - + No Named Page @@ -4029,8 +4029,8 @@ After adding or removing certificate paths, it is neccessary to restart browser - - + + New tab diff --git a/translations/nl_NL.ts b/translations/nl_NL.ts index 6e7086a53..79d3d8405 100644 --- a/translations/nl_NL.ts +++ b/translations/nl_NL.ts @@ -831,8 +831,12 @@ p, li { white-space: pre-wrap; } + Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Database Size After: </b>%2 + + + Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 - Database succesvol geoptimaliseerd.<br/><br/><b>Database-grootte vooraf: </b>%1<br/><b>Database-grootte nadien: </b>%2 + Database succesvol geoptimaliseerd.<br/><br/><b>Database-grootte vooraf: </b>%1<br/><b>Database-grootte nadien: </b>%2 Database successfuly optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 @@ -1706,12 +1710,12 @@ werd niet gevonden! MainApplication - + Last session crashed Laatste sessie gecrashed - + <b>QupZilla crashed :-(</b><br/>Oops, last session of QupZilla ends with its crash. We are very sorry. Would you try to restore saved state? <b>QupZilla crashte :-(</b><br/>Oeps, de laatste sessie van QupZilla eindigde met een crash. We verontschuldigen ons. Wilt u proberen om de opgeslagen status te herstellen? @@ -2125,7 +2129,7 @@ werd niet gevonden! - + Note: You cannot delete active profile. Noot: U kunt het actieve profiel niet verwijderen. @@ -2583,7 +2587,7 @@ werd niet gevonden! Om de gekozen taal toe te passen, moet u de browser herstarten. - + OSD Notification OSD-melding @@ -2592,53 +2596,53 @@ werd niet gevonden! Versleep het op het scherm en plaats het waar U wilt. - + Drag it on the screen to place it where you want. Versleep het op het scherm en plaats het waar U wilt. - + Choose download location... Kies downloadlocatie... - + Choose stylesheet location... Kies stylesheet-locatie... - + New Profile Nieuw profiel - + Enter the new profile's name: Voer de nieuw profielnaam in: - - + + Error! Fout! - + This profile already exists! Dit profiel bestaat reeds! - + Cannot create profile directory! Kan profielmap niet aanmaken! - + Confirmation Bevestiging - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Weet u zeker dat u profiel "%1"wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt! @@ -2707,397 +2711,397 @@ werd niet gevonden! Beeld - + Bookmarks Bladwijzers - + History Geschiedenis - + Quit Sluit af - + New Tab Nieuw tabblad - + Close Tab Sluit tabblad - + IP Address of current page IP-adres van huidige pagina - + &Tools Hulp&middelen - + &Help &Help - + &Bookmarks &Bladwijzers - + Hi&story &Geschiedenis - + &File &Bestand - + &New Window &Nieuw venster - + Open &File Open &bestand - + &Save Page As... &Sla pagina op als... - + &Print &Afdrukken - + Import bookmarks... Importeer bladwijzers... - + &Edit Be&werken - + &Undo &Ongedaan maken - + &Redo &Herhalen - + &Cut &Knippen - + C&opy K&opiëren - + &Paste &Plakken - + &Delete &Verwijderen - + Select &All Selecteer &Alles - + &Find &Zoeken - + &View &Toon - + &Navigation Toolbar &Navigatiewerkbalk - + &Bookmarks Toolbar &Bladwijzerwerkbalk - + Sta&tus Bar Sta&tusbalk - + Toolbars Werkbalken - + Sidebars Zijpanelen - + &Page Source &Pagina-broncode - + &Menu Bar &Menubalk - + &Fullscreen &Volledig scherm - + &Stop &Stoppen - + &Reload &Herladen - + Character &Encoding &Karakter-tekenset - + Zoom &In Zoo&m in - + Zoom &Out Z&oom uit - + Reset Herstart - + Close Window Sluit venster - + Open Location Open locatie - + Send Link... Verstuur link... - + Other Overig - + Default Standaard - + Current cookies cannot be accessed. Huidige cookies kunnen niet worden benaderd. - + Your session is not stored. Uw sessie is niet bewaard. - + Start Private Browsing Start incognito browsen - + Private Browsing Enabled Incognito browsen ingeschakeld - + Restore &Closed Tab Herstel &gesloten tabblad - + Bookmarks In ToolBar Bookmarks In Toolbar Bladwijzers op werkbalk - - - + + + Empty Leeg - - + + New tab Nieuw tabblad - + Bookmark &This Page Bladwijzer &deze pagina - + Bookmark &All Tabs Bladwijzer &alle tabbladen - + Organize &Bookmarks Organiseer &bladwijzers - + &Back &Terug - + &Forward &Vooruit - + &Home &Startpagina - + Show &All History Toon &alle geschiedenis - + Closed Tabs Gesloten tabbladen - + Save Page Screen Sla schermafbeelding op - - + + (Private Browsing) (Incognito browsen) - + Restore All Closed Tabs Herstel alle gesloten tabbladen - + Clear list Wis lijst - + About &Qt Over &Qt - + &About QupZilla &Over QupZilla - + Informations about application Informatie over programma - + Report &Issue Rapporteer &probleem - + &Web Search &Webzoeken - + Page &Info Pagina-&info - + &Download Manager &Downloadbeheerder - + &Cookies Manager &Cookies-beheerder - + &AdBlock &AdBlock - + RSS &Reader &RSS-lezer - + Clear Recent &History Wis recente &geschiedenis - + &Private Browsing &Incognito browsen - + Pr&eferences &Instellingen @@ -3106,32 +3110,32 @@ werd niet gevonden! Web-inspecteur - + Open file... Open bestand... - + Are you sure you want to turn on private browsing? Weet u zeker dat u incognito browsen wilt inschakelen? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Wanneer incognito browsen is ingeschakeld, zullen sommige acties aangaande uw privacy uitgeschakeld worden: - + Webpages are not added to the history. Webpagina's worden niet toegevoegd aan uw geschiedenis. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Totdat u dit venster afsluit, kunt nog steeds op de Terug en Vooruit-knoppen klikken om terug naar de webpagina's te gaan die u hebt geopend. - + There are still %1 open tabs and your session won't be stored. Are you sure to quit? U heeft nog steeds %1 geopende tabs en uw sessie zal niet worden opgeslagen. Weet u zeker dat u wilt afsluiten? @@ -4134,7 +4138,7 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te - + No Named Page Niet-benoemde pagina @@ -4148,8 +4152,8 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Eigenlijk heeft U %1 geopende tabbladen - - + + New tab Nieuw tabblad diff --git a/translations/sk_SK.ts b/translations/sk_SK.ts index 5ca943db3..59ca5e890 100644 --- a/translations/sk_SK.ts +++ b/translations/sk_SK.ts @@ -2323,7 +2323,7 @@ p, li { white-space: pre-wrap; } Default zoom on pages: - + Základné priblíženie stránok: @@ -2405,7 +2405,7 @@ p, li { white-space: pre-wrap; } Close download manager when downloading finishes - + Zavrieť správcu sťahovania po ukončení sťahovania @@ -2745,12 +2745,12 @@ p, li { white-space: pre-wrap; } &Tools - + &Nástroje &Help - + Nápo&veda @@ -2760,12 +2760,12 @@ p, li { white-space: pre-wrap; } Hi&story - + &História &File - + &Súbor @@ -2795,7 +2795,7 @@ p, li { white-space: pre-wrap; } &Edit - + Úpr&avy @@ -2840,7 +2840,7 @@ p, li { white-space: pre-wrap; } &View - + &Zobrazenie diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts index 49885e4d0..9ee946f96 100644 --- a/translations/zh_CN.ts +++ b/translations/zh_CN.ts @@ -823,7 +823,7 @@ p, li { white-space: pre-wrap; } - Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 + Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Database Size After: </b>%2 @@ -1689,12 +1689,12 @@ p, li { white-space: pre-wrap; } MainApplication - + Last session crashed - + <b>QupZilla crashed :-(</b><br/>Oops, last session of QupZilla ends with its crash. We are very sorry. Would you try to restore saved state? @@ -2054,7 +2054,7 @@ p, li { white-space: pre-wrap; } - + Note: You cannot delete active profile. 注意:您不能删除活动配置文件。 @@ -2561,7 +2561,7 @@ p, li { white-space: pre-wrap; } <b>网站首选的语言</ B> - + OSD Notification OSD的通知 @@ -2570,53 +2570,53 @@ p, li { white-space: pre-wrap; } 在屏幕上拖动它到你想要的地方。 - + Drag it on the screen to place it where you want. - + Choose download location... 选择下载位置... ... - + Choose stylesheet location... 选择样式表的位置... - + New Profile 新的配置文件 - + Enter the new profile's name: 输入新配置文件的名称: - - + + Error! 错误! - + This profile already exists! 此配置文件已经存在! - + Cannot create profile directory! 无法创建配置文件目录! - + Confirmation 确认 - + Are you sure to permanently delete "%1" profile? This action cannot be undone! 您确定要永久删除“%1”个人资料吗?这将无法复原! @@ -2665,12 +2665,12 @@ p, li { white-space: pre-wrap; } QupZilla - + Private Browsing Enabled 启用隐私浏览 - + IP Address of current page 当前页面的IP地址 @@ -2683,12 +2683,12 @@ p, li { white-space: pre-wrap; } 帮助 - + Bookmarks 书签 - + History 历史 @@ -2697,62 +2697,62 @@ p, li { white-space: pre-wrap; } 文件 - + &New Window 打开新窗口&N - + New Tab 新标签 - + Open Location 打开位置 - + Open &File 打开&F - + Close Tab 关闭标签页 - + Close Window 关闭窗口 - + &Save Page As... 保存页作为&S... - + Save Page Screen 保存屏幕网页 - + Send Link... 发送链接... - + &Print 打印&P - + Import bookmarks... - + Quit 退出 @@ -2761,42 +2761,42 @@ p, li { white-space: pre-wrap; } 编辑 - + &Undo 撤消&U - + &Redo 重做&R - + &Cut 剪切&C - + C&opy 复制&o - + &Paste 粘贴&p - + &Delete 删除&D - + Select &All 选取所有&A - + &Find 查找&F @@ -2805,306 +2805,306 @@ p, li { white-space: pre-wrap; } 查看 - + &Tools - + &Help - + &Bookmarks - + Hi&story - + &File - + &Edit - + &View - + &Navigation Toolbar 导航工具栏&N - + &Bookmarks Toolbar 书签工具栏&B - + Sta&tus Bar - + &Menu Bar 菜单栏&M - + &Fullscreen 全屏&F - + &Stop 停止&S - + &Reload 刷新&R - + Character &Encoding 字符与编码&E - + Toolbars 工具栏 - + Sidebars 侧边栏 - + Zoom &In 放大&I - + Zoom &Out 缩小&O - + Reset 重置 - + &Page Source 页面源代码&P - + Closed Tabs 关闭标签页 - + Restore &Closed Tab 还原关闭的标签&C - - + + (Private Browsing) (私人浏览) - + Bookmark &This Page 收藏本页&T - + Bookmark &All Tabs 收藏全部标签页&A - + Organize &Bookmarks 组织书签&B - + Bookmarks In ToolBar 工具栏中的书签 - - - + + + Empty 空页面 - + &Back 后退&B - + &Forward 前进&F - + &Home 主页&H - + Show &All History 显示所有历史页&A - + Restore All Closed Tabs 还原关闭的标签 - + Clear list 清除列表 - + About &Qt 关于Qt&Q - + &About QupZilla 关于QupZIlla&A - + Informations about application 软件信息 - + Report &Issue 报告及发行&I - + &Web Search 网页搜索&W - + Page &Info 网页信息&I - + &Download Manager 下载管理&D - + &Cookies Manager 管理Cookies&C - + &AdBlock - + RSS &Reader RSS阅读器&R - + Clear Recent &History 清除最近的历史&H - + &Private Browsing 隐私浏览&P - + Pr&eferences 首选项&e - + Other 其他 - + Default 默认 - + Open file... 打开文件... - + Are you sure you want to turn on private browsing? 你确定要打开隐私浏览吗? - + When private browsing is turned on, some actions concerning your privacy will be disabled: 打开隐私浏览时,有关于您的隐私行动将被禁用: - + Webpages are not added to the history. 网页不会添加到历史记录。 - + Current cookies cannot be accessed. 当前的cookies无法被访问。 - + Your session is not stored. 不会存储您的会话。 - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. 直到您关闭该窗口,你仍然可以单击后退和前进按钮,返回到你已经打开的网页. - + Start Private Browsing 开始隐私浏览 - + There are still %1 open tabs and your session won't be stored. Are you sure to quit? 还有%1打开的标签和您的会话将不会被储存。你一定要退出吗? - - + + New tab 新标签 @@ -4101,7 +4101,7 @@ After adding or removing certificate paths, it is neccessary to restart browser - + No Named Page 无命名页面 @@ -4111,8 +4111,8 @@ After adding or removing certificate paths, it is neccessary to restart browser - - + + New tab 新标签