diff --git a/bin/locale/cs_CZ.qm b/bin/locale/cs_CZ.qm index 303777d87..9fa0735c0 100644 Binary files a/bin/locale/cs_CZ.qm and b/bin/locale/cs_CZ.qm differ diff --git a/linux/hicolor/128x128/apps/qupzilla.png b/linux/hicolor/128x128/apps/qupzilla.png index c297ba308..523bb3fa8 100644 Binary files a/linux/hicolor/128x128/apps/qupzilla.png and b/linux/hicolor/128x128/apps/qupzilla.png differ diff --git a/linux/hicolor/16x16/apps/qupzilla.png b/linux/hicolor/16x16/apps/qupzilla.png index 27511a063..2b5dfef4e 100644 Binary files a/linux/hicolor/16x16/apps/qupzilla.png and b/linux/hicolor/16x16/apps/qupzilla.png differ diff --git a/linux/hicolor/256x256/apps/qupzilla.png b/linux/hicolor/256x256/apps/qupzilla.png index 2bf7eee91..787155176 100644 Binary files a/linux/hicolor/256x256/apps/qupzilla.png and b/linux/hicolor/256x256/apps/qupzilla.png differ diff --git a/linux/hicolor/32x32/apps/qupzilla.png b/linux/hicolor/32x32/apps/qupzilla.png index 69a544938..a79005b1d 100644 Binary files a/linux/hicolor/32x32/apps/qupzilla.png and b/linux/hicolor/32x32/apps/qupzilla.png differ diff --git a/linux/hicolor/48x48/apps/qupzilla.png b/linux/hicolor/48x48/apps/qupzilla.png index cb3f441b5..ba7fbfe78 100644 Binary files a/linux/hicolor/48x48/apps/qupzilla.png and b/linux/hicolor/48x48/apps/qupzilla.png differ diff --git a/linux/hicolor/64x64/apps/qupzilla.png b/linux/hicolor/64x64/apps/qupzilla.png index a94fe6016..182c8e336 100644 Binary files a/linux/hicolor/64x64/apps/qupzilla.png and b/linux/hicolor/64x64/apps/qupzilla.png differ diff --git a/linux/pixmaps/qupzilla.png b/linux/pixmaps/qupzilla.png index cb3f441b5..ba7fbfe78 100644 Binary files a/linux/pixmaps/qupzilla.png and b/linux/pixmaps/qupzilla.png differ diff --git a/src/adblock/adblockicon.cpp b/src/adblock/adblockicon.cpp index dcfa0507c..056e91341 100644 --- a/src/adblock/adblockicon.cpp +++ b/src/adblock/adblockicon.cpp @@ -17,14 +17,20 @@ * ============================================================ */ #include "adblockicon.h" #include "adblockmanager.h" +#include "mainapplication.h" #include "qupzilla.h" #include "webpage.h" #include "tabbedwebview.h" #include "tabwidget.h" +#include "desktopnotificationsfactory.h" AdBlockIcon::AdBlockIcon(QupZilla* mainClass, QWidget* parent) : ClickableLabel(parent) , p_QupZilla(mainClass) + , m_menuAction(0) + , m_flashTimer(0) + , m_timerTicks(0) + , m_enabled(false) { setMaximumHeight(16); setCursor(Qt::PointingHandCursor); @@ -33,26 +39,87 @@ AdBlockIcon::AdBlockIcon(QupZilla* mainClass, QWidget* parent) connect(this, SIGNAL(clicked(QPoint)), this, SLOT(showMenu(QPoint))); } -void AdBlockIcon::showMenu(const QPoint &pos) +void AdBlockIcon::popupBlocked(const QString &rule, const QUrl &url) { - AdBlockManager* manager = AdBlockManager::instance(); + QPair pair; + pair.first = rule; + pair.second = url; - QMenu menu; - menu.addAction(tr("Show AdBlock &Settings"), manager, SLOT(showDialog())); - menu.addSeparator(); - QList entries = p_QupZilla->weView()->webPage()->adBlockedEntries(); - if (entries.isEmpty()) { - menu.addAction(tr("No content blocked"))->setEnabled(false); + m_blockedPopups.append(pair); + + mApp->desktopNotifications()->showNotifications(QPixmap(":html/adblock_big.png"), tr("Blocked popup window"), tr("AdBlock blocked unwanted popup window.")); + + if (!m_flashTimer) { + m_flashTimer = new QTimer(this); } - else { - menu.addAction(tr("Blocked URL (AdBlock Rule) - click to edit rule"))->setEnabled(false); - foreach(const WebPage::AdBlockedEntry & entry, entries) { - QString address = entry.url.toString().right(55); - menu.addAction(tr("%1 with (%2)").arg(address, entry.rule), manager, SLOT(showRule()))->setData(entry.rule); + + if (m_flashTimer->isActive()) { + stopAnimation(); + } + + m_flashTimer->setInterval(500); + m_flashTimer->start(); + + connect(m_flashTimer, SIGNAL(timeout()), this, SLOT(animateIcon())); +} + +QAction* AdBlockIcon::menuAction() +{ + if (!m_menuAction) { + m_menuAction = new QAction(tr("AdBlock"), this); + m_menuAction->setMenu(new QMenu); + connect(m_menuAction->menu(), SIGNAL(aboutToShow()), this, SLOT(createMenu())); + } + + m_menuAction->setIcon(QIcon(m_enabled ? ":icons/other/adblock.png" : ":icons/other/adblock-disabled.png")); + + return m_menuAction; +} + +void AdBlockIcon::createMenu(QMenu* menu) +{ + if (!menu) { + menu = qobject_cast(sender()); + if (!menu) { + return; } } - menu.addSeparator(); - menu.addAction(tr("Learn About Writing &Rules"), this, SLOT(learnAboutRules())); + + menu->clear(); + + AdBlockManager* manager = AdBlockManager::instance(); + + menu->addAction(tr("Show AdBlock &Settings"), manager, SLOT(showDialog())); + menu->addSeparator(); + if (!m_blockedPopups.isEmpty()) { + menu->addAction(tr("Blocked Popup Windows"))->setEnabled(false); + for (int i = 0; i < m_blockedPopups.count(); i++) { + const QPair &pair = m_blockedPopups.at(i); + QString address = pair.second.toString().right(55); + menu->addAction(tr("%1 with (%2)").arg(address, pair.first).replace("&", "&&"), manager, SLOT(showRule()))->setData(pair.first); + } + } + + menu->addSeparator(); + QList entries = p_QupZilla->weView()->webPage()->adBlockedEntries(); + if (entries.isEmpty()) { + menu->addAction(tr("No content blocked"))->setEnabled(false); + } + else { + menu->addAction(tr("Blocked URL (AdBlock Rule) - click to edit rule"))->setEnabled(false); + foreach(const WebPage::AdBlockedEntry & entry, entries) { + QString address = entry.url.toString().right(55); + menu->addAction(tr("%1 with (%2)").arg(address, entry.rule).replace("&", "&&"), manager, SLOT(showRule()))->setData(entry.rule); + } + } + menu->addSeparator(); + menu->addAction(tr("Learn About Writing &Rules"), this, SLOT(learnAboutRules())); +} + +void AdBlockIcon::showMenu(const QPoint &pos) +{ + QMenu menu; + createMenu(&menu); menu.exec(pos); } @@ -62,6 +129,31 @@ void AdBlockIcon::learnAboutRules() p_QupZilla->tabWidget()->addView(QUrl("http://adblockplus.org/en/filters"), Qz::NT_SelectedTab); } +void AdBlockIcon::animateIcon() +{ + ++m_timerTicks; + if (m_timerTicks > 10) { + stopAnimation(); + return; + } + + if (pixmap()->isNull()) { + setPixmap(QPixmap(":icons/other/adblock.png")); + } + else { + setPixmap(QPixmap()); + } +} + +void AdBlockIcon::stopAnimation() +{ + m_timerTicks = 0; + m_flashTimer->stop(); + disconnect(m_flashTimer, SIGNAL(timeout()), this, SLOT(animateIcon())); + + setEnabled(m_enabled); +} + void AdBlockIcon::setEnabled(bool enabled) { if (enabled) { @@ -70,6 +162,8 @@ void AdBlockIcon::setEnabled(bool enabled) else { setPixmap(QPixmap(":icons/other/adblock-disabled.png")); } + + m_enabled = enabled; } AdBlockIcon::~AdBlockIcon() diff --git a/src/adblock/adblockicon.h b/src/adblock/adblockicon.h index a7e734e53..08e4fbc21 100644 --- a/src/adblock/adblockicon.h +++ b/src/adblock/adblockicon.h @@ -31,18 +31,30 @@ public: explicit AdBlockIcon(QupZilla* mainClass, QWidget* parent = 0); ~AdBlockIcon(); + void popupBlocked(const QString &rule, const QUrl &url); + QAction* menuAction(); + signals: public slots: void setEnabled(bool enabled); + void createMenu(QMenu* menu = 0); private slots: void showMenu(const QPoint &pos); void learnAboutRules(); + void animateIcon(); + void stopAnimation(); + private: QupZilla* p_QupZilla; + QAction* m_menuAction; + QList > m_blockedPopups; + QTimer* m_flashTimer; + int m_timerTicks; + bool m_enabled; }; #endif // ADBLOCKICON_H diff --git a/src/adblock/adblocknetwork.cpp b/src/adblock/adblocknetwork.cpp index aeb2f592c..0d96c0ee8 100644 --- a/src/adblock/adblocknetwork.cpp +++ b/src/adblock/adblocknetwork.cpp @@ -91,4 +91,3 @@ QNetworkReply* AdBlockNetwork::block(const QNetworkRequest &request) } return 0; } - diff --git a/src/app/qupzilla.cpp b/src/app/qupzilla.cpp index 79cfb2db7..c6a188712 100644 --- a/src/app/qupzilla.cpp +++ b/src/app/qupzilla.cpp @@ -718,7 +718,7 @@ void QupZilla::aboutToShowBookmarksMenu() } m_bookmarksMenuChanged = false; - while( m_menuBookmarks->actions().count() != 4) { + while (m_menuBookmarks->actions().count() != 4) { QAction* act = m_menuBookmarks->actions().at(4); if (act->menu()) { act->menu()->clear(); @@ -1284,10 +1284,15 @@ void QupZilla::showStatusbar() settings.setValue("Browser-View-Settings/showStatusbar", !status); } -void QupZilla::showWebInspector() +void QupZilla::showWebInspector(bool toggle) { if (m_webInspectorDock) { - m_webInspectorDock.data()->show(); + if (toggle) { + m_webInspectorDock.data()->setVisible(!m_webInspectorDock.data()->isVisible()); + } + else { + m_webInspectorDock.data()->show(); + } return; } diff --git a/src/app/qupzilla.h b/src/app/qupzilla.h index 54908485d..3f4345342 100644 --- a/src/app/qupzilla.h +++ b/src/app/qupzilla.h @@ -105,6 +105,7 @@ public: inline QString activeProfil() { return m_activeProfil; } inline QString activeLanguage() { return m_activeLanguage; } inline QLabel* ipLabel() { return m_ipLabel; } + inline AdBlockIcon* adBlockIcon() { return m_adblockIcon; } inline QColor menuTextColor() { return m_menuTextColor; } inline QMenu* menuHelp() { return m_menuHelp; } inline QAction* actionRestoreTab() { return m_actionRestoreTab; } @@ -123,7 +124,7 @@ signals: public slots: void setWindowTitle(const QString &t); - void showWebInspector(); + void showWebInspector(bool toggle = true); void showBookmarksToolbar(); void loadActionUrl(); void loadActionUrlInNewTab(); diff --git a/src/data/icons/exeicons/qupzilla-window.png b/src/data/icons/exeicons/qupzilla-window.png index c528c1e6b..94b7a3668 100644 Binary files a/src/data/icons/exeicons/qupzilla-window.png and b/src/data/icons/exeicons/qupzilla-window.png differ diff --git a/src/data/icons/exeicons/qupzilla.ico b/src/data/icons/exeicons/qupzilla.ico index 709263ccd..515e92567 100644 Binary files a/src/data/icons/exeicons/qupzilla.ico and b/src/data/icons/exeicons/qupzilla.ico differ diff --git a/src/downloads/downloadfilehelper.cpp b/src/downloads/downloadfilehelper.cpp index 3789904bf..fbc3424c7 100644 --- a/src/downloads/downloadfilehelper.cpp +++ b/src/downloads/downloadfilehelper.cpp @@ -109,6 +109,18 @@ void DownloadFileHelper::optionsDialogAccepted(int finish) case 2: //Save m_lastDownloadOption = DownloadManager::SaveFile; break; + + default: + qWarning() << "DownloadFileHelper::optionsDialogAccepted invalid return value!"; + if (m_timer) { + delete m_timer; + } + + m_reply->abort(); + m_reply->deleteLater(); + return; + + break; } m_manager->setLastDownloadOption(m_lastDownloadOption); diff --git a/src/downloads/downloadfilehelper.h b/src/downloads/downloadfilehelper.h index a60bebe11..4985338a1 100644 --- a/src/downloads/downloadfilehelper.h +++ b/src/downloads/downloadfilehelper.h @@ -50,7 +50,7 @@ signals: void itemCreated(QListWidgetItem* item, DownloadItem* downItem); private slots: - void optionsDialogAccepted(int finish); + void optionsDialogAccepted(int finish = -1); void fileNameChoosed(const QString &name, bool fileNameAutoGenerated = false); private: diff --git a/src/downloads/downloadmanager.cpp b/src/downloads/downloadmanager.cpp index cf2fc0600..0cd501806 100644 --- a/src/downloads/downloadmanager.cpp +++ b/src/downloads/downloadmanager.cpp @@ -230,6 +230,7 @@ void DownloadManager::itemCreated(QListWidgetItem* item, DownloadItem* downItem) ui->list->setItemWidget(item, downItem); item->setSizeHint(downItem->sizeHint()); + downItem->show(); show(); raise(); diff --git a/src/downloads/downloadoptionsdialog.cpp b/src/downloads/downloadoptionsdialog.cpp index ba2b9b762..a7de5d1c9 100644 --- a/src/downloads/downloadoptionsdialog.cpp +++ b/src/downloads/downloadoptionsdialog.cpp @@ -21,6 +21,7 @@ DownloadOptionsDialog::DownloadOptionsDialog(const QString &fileName, const QPixmap &fileIcon, const QString &mimeType, const QUrl &url, QWidget* parent) : QDialog(parent) , ui(new Ui::DownloadOptionsDialog) + , m_signalEmited(false) { ui->setupUi(this); ui->fileName->setText("" + fileName + ""); @@ -62,10 +63,16 @@ void DownloadOptionsDialog::emitDialogFinished(int status) status = 2; } } + + m_signalEmited = true; emit dialogFinished(status); } DownloadOptionsDialog::~DownloadOptionsDialog() { + if (!m_signalEmited) { + emit dialogFinished(-1); + } + delete ui; } diff --git a/src/downloads/downloadoptionsdialog.h b/src/downloads/downloadoptionsdialog.h index f54086e95..db0c769d3 100644 --- a/src/downloads/downloadoptionsdialog.h +++ b/src/downloads/downloadoptionsdialog.h @@ -47,6 +47,7 @@ signals: private: Ui::DownloadOptionsDialog* ui; + bool m_signalEmited; }; #endif // DOWNLOADOPTIONSDIALOG_H diff --git a/src/tools/closedtabsmanager.cpp b/src/tools/closedtabsmanager.cpp index 26488b289..8ce0f5b7a 100644 --- a/src/tools/closedtabsmanager.cpp +++ b/src/tools/closedtabsmanager.cpp @@ -17,7 +17,7 @@ * ============================================================ */ #include "closedtabsmanager.h" #include "webview.h" -#include "qwebhistory.h" +#include "mainapplication.h" ClosedTabsManager::ClosedTabsManager(QObject* parent) : QObject(parent) @@ -26,7 +26,8 @@ ClosedTabsManager::ClosedTabsManager(QObject* parent) void ClosedTabsManager::saveView(WebView* view, int position) { - if (view->url().isEmpty() && view->history()->items().count() == 0) { + if (mApp->webSettings()->testAttribute(QWebSettings::PrivateBrowsingEnabled) || + (view->url().isEmpty() && view->history()->items().count() == 0)) { return; } diff --git a/src/tools/closedtabsmanager.h b/src/tools/closedtabsmanager.h index 7b76c68ac..2c5d0c0c8 100644 --- a/src/tools/closedtabsmanager.h +++ b/src/tools/closedtabsmanager.h @@ -20,6 +20,7 @@ #include #include +#include class WebView; class ClosedTabsManager : public QObject diff --git a/src/webview/tabbedwebview.cpp b/src/webview/tabbedwebview.cpp index 150165f46..7d88e3eaa 100644 --- a/src/webview/tabbedwebview.cpp +++ b/src/webview/tabbedwebview.cpp @@ -30,6 +30,7 @@ #include "iconprovider.h" #include "searchenginesmanager.h" #include "enhancedmenu.h" +#include "adblockicon.h" TabbedWebView::TabbedWebView(QupZilla* mainClass, WebTab* webTab) : WebView(webTab) @@ -94,7 +95,7 @@ void TabbedWebView::slotIconChanged() void TabbedWebView::inspectElement() { - p_QupZilla->showWebInspector(); + p_QupZilla->showWebInspector(false); triggerPageAction(QWebPage::InspectElement); } @@ -312,7 +313,9 @@ void TabbedWebView::contextMenuEvent(QContextMenuEvent* event) createContextMenu(m_menu, hitTest, event->pos()); + m_menu->addSeparator(); mApp->plugins()->populateWebViewMenu(m_menu, this, hitTest); + m_menu->addAction(p_QupZilla->adBlockIcon()->menuAction()); m_menu->addSeparator(); m_menu->addAction(tr("Inspect Element"), this, SLOT(inspectElement())); diff --git a/src/webview/tabwidget.cpp b/src/webview/tabwidget.cpp index 0c9960091..88e86ce87 100644 --- a/src/webview/tabwidget.cpp +++ b/src/webview/tabwidget.cpp @@ -243,6 +243,7 @@ void TabWidget::aboutToShowTabsMenu() } else { QString title = view->title(); + title.replace("&", "&&"); if (title.length() > 40) { title.truncate(40); title += ".."; @@ -336,7 +337,7 @@ int TabWidget::addView(QUrl url, const QString &title, const Qz::NewTabPositionF void TabWidget::setTabText(int index, const QString &text) { QString newtext = text; - newtext.remove("&"); // Avoid Alt+letter shortcuts + newtext.replace("&", "&&"); // Avoid Alt+letter shortcuts if (WebTab* webTab = qobject_cast(p_QupZilla->tabWidget()->widget(index))) { if (webTab->isPinned()) { diff --git a/src/webview/webpage.cpp b/src/webview/webpage.cpp index 1dc6fcc4c..3d1d62683 100644 --- a/src/webview/webpage.cpp +++ b/src/webview/webpage.cpp @@ -35,6 +35,7 @@ #include "popupwebpage.h" #include "popupwebview.h" #include "networkmanagerproxy.h" +#include "adblockicon.h" QString WebPage::UserAgent = ""; QString WebPage::m_lastUploadLocation = QDir::homePath(); @@ -433,6 +434,15 @@ bool WebPage::extension(Extension extension, const ExtensionOption* option, Exte exReturn->baseUrl = exOption->url; exReturn->content = errString.toUtf8(); + + if (PopupWebPage* popupPage = qobject_cast(exOption->frame->page())) { + WebView* view = qobject_cast(popupPage->view()); + if (view) { + // Closing blocked popup + p_QupZilla->adBlockIcon()->popupBlocked(rule, exOption->url); + view->closeView(); + } + } return true; } } diff --git a/src/webview/webview.cpp b/src/webview/webview.cpp index 3be0654cf..d5c83ea0c 100644 --- a/src/webview/webview.cpp +++ b/src/webview/webview.cpp @@ -554,8 +554,6 @@ void WebView::createContextMenu(QMenu* menu, const QWebHitTestResult &hitTest, c // if (!selectedHtml().isEmpty()) // menu->addAction(tr("Show source of selection"), this, SLOT(showSourceOfSelection())); #endif - - // mApp->plugins()->populateWebViewMenu(m_menu, this, hitTest); } void WebView::createPageContextMenu(QMenu* menu, const QPoint &pos) diff --git a/tests/adblock.html b/tests/adblock.html new file mode 100644 index 000000000..eeaa6ed40 --- /dev/null +++ b/tests/adblock.html @@ -0,0 +1,11 @@ + + + AdBlock Tests &A + + +

Popup Block Tests

+ Open Popup window (will be blocked) +
+
+ + diff --git a/tests/link_tests.html b/tests/link_tests.html index 03daae34b..438632439 100644 --- a/tests/link_tests.html +++ b/tests/link_tests.html @@ -11,17 +11,6 @@ Original file used from kWebKitPart (https://projects.kde.org/projects/extragear
Email link #2
-

HTTP Link Tests

Web site link (new window)
@@ -50,8 +39,6 @@ Original file used from kWebKitPart (https://projects.kde.org/projects/extragear
Open form test (new window)
- Open Gmail (new window) -
ClickToFlash (new window)
Close window diff --git a/translations/cs_CZ.ts b/translations/cs_CZ.ts index 1b8374f3c..5be789f40 100644 --- a/translations/cs_CZ.ts +++ b/translations/cs_CZ.ts @@ -175,32 +175,53 @@ AdBlock blokuje nevyžádaný obsah na stánkách - + AdBlock lets you block unwanted content on web pages AdBlock blokuje nevyžádaný obsah na stránkách - + + Blocked popup window + Zablokováno vyskakovací okno + + + + AdBlock blocked unwanted popup window. + AdBlock zablokoval nevyžádané vyskakovací okno. + + + + AdBlock + AdBlock + + + Show AdBlock &Settings Zobrazit &nastavení AdBlocku - + + Blocked Popup Windows + Zablokovaná vyskakovací okna + + + No content blocked Žádný obsah nebyl zablokován - + Blocked URL (AdBlock Rule) - click to edit rule Blokovaná adresa (AdBlock pravidlo) - klikem upravíte pravidlo - + + %1 with (%2) %1 s (%2) - + Learn About Writing &Rules Zjistit více o psaní &pravidel @@ -1198,13 +1219,13 @@ DownloadFileHelper - - + + Save file as... Uložit soubor jako... - + NoNameDownload BezNazvu @@ -1380,29 +1401,29 @@ nebyl nalezen! % - Správce stahování - + Download Finished Stahování dokončeno - + All files have been successfully 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! - + Download Manager Správce stahování @@ -1450,7 +1471,7 @@ nebyl nalezen! Uložit soubor - + Opening %1 Otevírám %1 @@ -3208,7 +3229,7 @@ nebyl nalezen! - QupZilla - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Ještě je otevřeno %1 panelů a Vaše relace nebude uložena. Opravdu chcete skončit? @@ -3283,22 +3304,22 @@ nebyl nalezen! Defaultní - + %1 - QupZilla %1 - QupZilla - + 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 soukromé prohlížení @@ -3450,27 +3471,27 @@ nebyl nalezen! Předvo&lby - + 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. @@ -4620,7 +4641,7 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Bezejmenná stránka - + Currently you have %1 opened tabs Dohromady máte otevřeno %1 panelů @@ -4629,23 +4650,23 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Dohromady máte otevřeno %1 panelů - + New tab Nový panel - + Empty Prázdný - + Restore All Closed Tabs Obnovit všechny zavřené panely - + Clear list Vyčistit seznam @@ -4653,22 +4674,22 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ TabbedWebView - + Failed loading page Chyba při načítání stránky - + Loading... Načítám... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Zkontrolovat objekt @@ -4892,7 +4913,7 @@ 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, which has been already done.) Pro zobrazení této stránky musí QupZilla znovu odeslat požadavek na server @@ -4907,47 +4928,47 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Potvrzení opětovného zaslání požadavku - + Confirm form resubmission Potvrzení opětovného zaslání formuláře - + Select files to upload... Zvolte soubory k nahrání... - + Server refused the connection Server odmítl spojení - + Server closed the connection Server ukončil spojení - + Server not found Server nenalezen - + Connection timed out Spojení vypršelo - + Untrusted connection Nedůvěryhodné spojení - + Temporary network failure Dočasná chyba sítě - + Proxy connection refused Proxy server odmítl spojení @@ -4956,87 +4977,87 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Proxy nenalezena - + Proxy server not found Proxy server nenalezen - + Proxy connection timed out Proxy spojení vypršelo - + Proxy authentication required Vyžadována proxy autorizace - + Content not found Obsah nenalezen - + AdBlocked Content AdBlock obsah - + Blocked by rule <i>%1</i> Blokováno pravidlem <i>%1</i> - + Content Access Denied Odmítnut přístup k obsahu - + Error code %1 Chybový kód %1 - + Failed loading page Chyba při načítání stránky - + QupZilla can't load page from %1. QupZilla nemůže načíst stránku ze serveru %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Zkontrolujte, zda je adresa napsána správně a neobsahuje chyby jako <b>ww.</b>server.cz místo <b>www</b>.server.cz - + If you are unable to load any pages, check your computer's network connection. Pokud se vám nezobrazují ani ostatní stránky, zkontrolujte síťové připojení svého počítače. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Pokud je váš počítač chráněn firewallem a nebo proxy serverem, zkontrolujte, zda má QupZilla přístup na Internet. - + Try Again Zkusit znovu - + Prevent this page from creating additional dialogs Zabránit stránce ve vytváření dalších dialogů - + JavaScript alert - %1 Výstraha JavaScriptu - %1 - + Choose file... Vyberte soubor... @@ -5075,147 +5096,147 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ - QupZilla - + Open link in new &tab Otevřít odkaz v novém &panelu - + Open link in new &window Otevřít odkaz v novém &okně - + B&ookmark link Přidat odkaz do zá&ložek - + &Save link as... &Uložit odkaz jako... - + &Copy link address &Kopírovat adresu odkazu - + Show i&mage Zobrazit &obrázek - + Copy im&age &Kopírovat obrázek - + Copy image ad&dress Kopírovat adr&esu obrázku - + S&top &Zastavit - + This frame Tento rám - + Show &only this frame Zobrazit &pouze tento rám - + Show this frame in new &tab Zobrazit tento rám v &novém panelu - + Print frame Tisknout rám - + Zoom &in Zoo&m + - + &Zoom out Z&oom - - + Reset Původní - + Show so&urce of frame Zobrazit &zdrojový kód rámu - + &Copy page link Kopírovat &adresu stránky - + Send page link... Odeslat adresu stránky... - + &Print page Ti&sknout stránku - + Validate page Zkontrolovat stránku - + Show info ab&out site Zobrazit &informace o stránce - + &Play &Přehrát - + &Pause &Pozastavit - + Un&mute &Zrušit ztlumení - + &Mute &Ztlumit - + &Copy Media Address &Kopírovat adresu média - + &Send Media Address &Odeslat adresu média - + Save Media To &Disk &Uložit médium na disk @@ -5232,7 +5253,7 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Zobrazit Web &Inspektor - + &Save image as... &Uložit obrázek jako... @@ -5241,63 +5262,63 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Chyba při načítání stránky - + &Back &Zpět - + &Forward &Vpřed - - + + &Reload &Obnovit - + Book&mark page Přidat stránku do zá&ložek - + &Save page as... &Uložit stránku jako... - + Select &all Vyb&rat vše - + Show so&urce code Zobrazit zdrojový kó&d - + Send text... Odeslat text... - + Google Translate Google Translate - + Dictionary Slovník - + Go to &web address Přejít na web&ovou adresu - + Search "%1 .." with %2 Hledat "%1 .." s %2 @@ -5311,12 +5332,12 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Nový panel - + Send link... Odeslat odkaz... - + Send image... Odeslat obrázek... diff --git a/translations/de_DE.ts b/translations/de_DE.ts index c1db283a5..c62285e46 100644 --- a/translations/de_DE.ts +++ b/translations/de_DE.ts @@ -175,32 +175,53 @@ AdBlock blockiert unerwünschte Seiteninhalte - + AdBlock lets you block unwanted content on web pages AdBlock blockiert unerwünschte Seiteninhalte - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + AdBlock + + + Show AdBlock &Settings AdBlock &Einstellungen anzeigen - + + Blocked Popup Windows + + + + No content blocked Keine Seiteninhalte geblockt - + Blocked URL (AdBlock Rule) - click to edit rule Geblockte URL (AdBlock Regel) - zum Bearbeiten anklicken - + + %1 with (%2) %1 mit (%2) - + Learn About Writing &Rules Hilfe zur &Regelerstellung @@ -1196,13 +1217,13 @@ DownloadFileHelper - - + + Save file as... Datei speichern als... - + NoNameDownload NoNameDownload @@ -1378,29 +1399,29 @@ % - Download Manager - + Download Finished Download beendet - + All files have been successfully downloaded. Alle Dateien wurden erfolgreich heruntergeladen. - + Warning Warnung - + Are you sure to quit? All uncompleted downloads will be cancelled! Möchten Sie QupZilla wirklich beenden?Alle nicht beendeten Downloads werden abgebrochen! - + Download Manager Download Manager @@ -1448,7 +1469,7 @@ Datei speichern - + Opening %1 Öffnen von %1 @@ -3211,7 +3232,7 @@ - QupZilla - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Es sind noch %1 Tabs geöffnet und Ihre Sitzung wird nicht gespeichert. Möchten Sie QupZilla wirklich beenden? @@ -3286,22 +3307,22 @@ Standard - + %1 - QupZilla %1 - QupZilla - + 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 @@ -3453,27 +3474,27 @@ &Einstellungen - + 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. @@ -4620,7 +4641,7 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Leere Seite - + Currently you have %1 opened tabs Aktuell sind %1 Tabs geöffnet @@ -4629,23 +4650,23 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Aktuell sind %1 Tabs geöffnet - + New tab Neuer Tab - + Empty Leer - + Restore All Closed Tabs Alle geschlossenen Tabs wiederherstellen - + Clear list Liste leeren @@ -4653,22 +4674,22 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest TabbedWebView - + Failed loading page Seite konnte nicht geladen werden - + Loading... Laden... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Element untersuchen @@ -4896,7 +4917,7 @@ 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, which has been already done.) Um diese Seite anzeigen zu können, muss QupZilla eine erneute Abfrage an den Server versenden @@ -4907,47 +4928,47 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Neuer Tab - + Confirm form resubmission Erneute Formular-Übermittlung bestätigen - + Select files to upload... Dateien zum Upload auswählen... - + Server refused the connection Der Server hat den Verbindungsversuch abgelehnt - + Server closed the connection Der Server hat die Verbindung beendet - + Server not found Server nicht gefunden - + Connection timed out Zeitüberschreitung der Anfrage - + Untrusted connection Keine vertrauenswürdige Verbindung - + Temporary network failure Temporärer Netzwerkfehler - + Proxy connection refused Der Proxyserver hat den Verbindungsversuch abgelehnt @@ -4956,87 +4977,87 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Der Hostname des Proxyservers wurde nicht gefunden - + Proxy server not found - + Proxy connection timed out Der Proxy-Server hat nicht in angemessener Zeit geantwortet - + Proxy authentication required Authentifizierung am Proxy-Server erforderlich - + Content not found Inhalt konnte nicht gefunden werden - + AdBlocked Content Inhalt von AdBlock blockiert - + Blocked by rule <i>%1</i> Blockiert von Regel <i>%1</i> - + Content Access Denied Zugriff auf Inhalt verweigert - + Error code %1 Fehler Code %1 - + Failed loading page Seite konnte nicht geladen werden - + QupZilla can't load page from %1. QupZilla kann Seite von %1 nicht laden. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Bitte überprüfen Sie die Adresse auf Tippfehler wie <b>ww.</b>example.com anstatt <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Falls Sie keine Webseiten laden können, überprüfen Sie bitte Ihre Netzwerkverbindung. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Falls Ihr Computer über eine Firewall oder Proxy mit dem Internet verbunden ist, vergewissern Sie sich, dass QupZilla der Zugriff zum Internet gestattet ist. - + Try Again Erneut versuchen - + Prevent this page from creating additional dialogs Das Ausführen von Skripten auf dieser Seite unterbinden - + JavaScript alert - %1 JavaScript Warnmeldung - %1 - + Choose file... Datei wählen... @@ -5075,147 +5096,147 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest - QupZilla - + Open link in new &tab Link in neuem &Tab öffnen - + Open link in new &window Link in neuem &Fenster öffnen - + B&ookmark link &Lesezeichen für diesen Link hinzufügen - + &Save link as... &Ziel speichern unter... - + &Copy link address Lin&k-Adresse kopieren - + Show i&mage G&rafik anzeigen - + Copy im&age Grafik k&opieren - + Copy image ad&dress Grafika&dresse kopieren - + S&top S&topp - + This frame Dieser Rahmen - + Show &only this frame Nur diesen Rahmen anzei&gen - + Show this frame in new &tab Diesen Rahmen in einem neuen &Tab anzeigen - + Print frame Rahmen drucken - + Zoom &in Ver&größern - + &Zoom out Ver&kleinern - + Reset Zurücksetzen - + Show so&urce of frame Q&uelltext dieses Rahmens anzeigen - + &Copy page link Link zur Seite &kopieren - + Send page link... Link der Seite versenden... - + &Print page Seite &drucken - + Validate page Seite überprüfen - + Show info ab&out site S&eiteninformationen anzeigen - + &Play &Wiedergabe - + &Pause &Pause - + Un&mute &Ton einschalten - + &Mute &Stumm schalten - + &Copy Media Address Medienadresse &kopieren - + &Send Media Address Medienadresse &versenden - + Save Media To &Disk Multimedia-Datei &speichern @@ -5228,7 +5249,7 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Web &Inspector anzeigen - + &Save image as... Grafik speichern &unter... @@ -5237,63 +5258,63 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Seite konnte nicht geladen werden - + &Back &Zurück - + &Forward &Vor - - + + &Reload &Neu laden - + Book&mark page &Lesezeichen für diese Seite hinzufügen - + &Save page as... Seite speichern &unter... - + Select &all Alles au&swählen - + Show so&urce code Seitenquelltext &anzeigen - + Send text... Text senden... - + Google Translate Google Übersetzer - + Dictionary Wörterbuch - + Go to &web address Gehe zu &Web-Adresse - + Search "%1 .." with %2 Suche "%1 .." mit %2 @@ -5307,12 +5328,12 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Neuer Tab - + Send link... Link senden... - + Send image... Grafik senden... diff --git a/translations/el_GR.ts b/translations/el_GR.ts index 6ccfa7762..9bbfb8941 100644 --- a/translations/el_GR.ts +++ b/translations/el_GR.ts @@ -175,32 +175,53 @@ Το AdBlock σας επιτρέπει να φράζετε ανεπιθύμητο περιεχόμενο σε ιστοσελίδες - + AdBlock lets you block unwanted content on web pages Το AdBlock σας επιτρέπει να φράζετε ανεπιθύμητο περιεχόμενο σε ιστοσελίδες - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + AdBlock + + + Show AdBlock &Settings Εμφάνιση &ρυθμίσεων Adblock - + + Blocked Popup Windows + + + + No content blocked Δεν έγινε φραγή περιεχομένου - + Blocked URL (AdBlock Rule) - click to edit rule Φραγμένο URL (Κανόνας AdBlock) - κάντε κλικ για να επεξεργαστείτε τον κανόνα - + + %1 with (%2) %1 με (%2) - + Learn About Writing &Rules Μάθετε για την συγγραφή &κανόνων @@ -1193,13 +1214,13 @@ DownloadFileHelper - - + + Save file as... Αποθήκευση αρχείου ως... - + NoNameDownload ? NoNameDownload @@ -1348,7 +1369,7 @@ - + Download Manager Διαχειριστής λήψεων @@ -1388,22 +1409,22 @@ % - Διαχειριστής λήψεων - + Download Finished Ολοκληρώθηκε η λήψη - + All files have been successfully downloaded. Όλα τα αρχεία λήφθηκαν επιτυχώς. - + Warning Προειδοποίηση - + Are you sure to quit? All uncompleted downloads will be cancelled! Είστε σίγουρος για το κλείσιμο; Όλες οι λήψεις που δεν έχουν τελειώσει θα ακυρωθούν! @@ -1446,7 +1467,7 @@ Αποθήκευση αρχείου - + Opening %1 Άνοιγμα %1 @@ -3328,7 +3349,7 @@ Πληροφορίες για την εφαρμογή - + %1 - QupZilla %1 QupZilla @@ -3397,47 +3418,47 @@ Προεπιλεγμένο - + 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 QupZilla? Υπάρχουν ακόμα %1 ανοιχτές καρτέλες και η συνεδρία σας δεν θα αποθηκευτεί. Είστε σίγουρος ότι θέλετε να κλείσετε το QupZilla; @@ -4582,7 +4603,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Ανώνυμη σελίδα - + Currently you have %1 opened tabs @@ -4591,23 +4612,23 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Πραγματικά έχετε %1 ανοιχτές καρτέλες - + New tab Νέα καρτέλα - + Empty Άδειο - + Restore All Closed Tabs Επαναφορά όλων των κλεισμένων καρτελών - + Clear list Εκκαθάριση λίστας @@ -4615,22 +4636,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Αποτυχία φόρτωσης σελίδας - + Loading... Φόρτωση... - + %1 - QupZilla %1 QupZilla - + Inspect Element Επιθεώρηση στοιχείου @@ -4826,7 +4847,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Για να εμφανιστεί αυτή η σελίδα, το QupZilla πρέπει να ξαναστείλει ένα αίτημα που το ξανακάνει @@ -4837,47 +4858,47 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Νέα καρτέλα - + Confirm form resubmission Επιβεβαίωση νέας υποβολής φόρμας - + Select files to upload... Επιλογή αρχείων για μεταφόρτωση... - + Server refused the connection Ο διακομιστής αρνήθηκε την σύνδεση - + Server closed the connection Ο διακομιστής έκλεισε την σύνδεση - + Server not found Δεν βρέθηκε ο διακομιστής - + Connection timed out Έληξε η σύνδεση - + Untrusted connection Μη έμπιστη σύνδεση - + Temporary network failure Προσωρινή αποτυχία δικτύου - + Proxy connection refused Αρνήθηκε η σύνδεση με τον μεσολαβητή @@ -4886,87 +4907,87 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Δεν βρέθηκε το όνομα του κεντρικού μεσολαβητή - + Proxy server not found - + Proxy connection timed out Έληξε η σύνδεση με τον μεσολαβητή - + Proxy authentication required Απαιτειται εξουσιοδότηση μεσολαβητή - + Content not found Το περιεχόμενο δεν βρέθηκε - + AdBlocked Content Φραγμένο περιεχόμενο Adblock - + Blocked by rule <i>%1</i> Φράχτηκε από τον κανόνα <i>%1</i> - + Content Access Denied Απορρίφτηκε η πρόσβαση περιεχομένου - + Error code %1 Σφάλμα κώδικα %1 - + Failed loading page Αποτυχία φόρτωσης σελίδας - + QupZilla can't load page from %1. Το QupZilla δεν μπορεί να φορτώσει την σελίδα από %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Ελέγξτε την διεύθυνση για τυπογραφικά λάθη όπως <b>ww.</b>example.com αντί για <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Αν δεν μπορείτε να φορτώσετε καμία σελίδα, ελέγξτε την σύνδεση του υπολογιστή σας με το δίκτυο. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Αν ο υπολογιστής σας ή το δίκτυο σας προστατεύεται από ένα τείχος προστασίας (firewall) ή proxy, βεβαιωθείτε ότι το QupZilla επιτρέπεται να έχει πρόσβαση στο διαδίκτυο. - + Try Again Δοκιμάστε ξανά - + Prevent this page from creating additional dialogs Να εμποδιστεί αυτή η σελίδα να δημιουργεί επιπλέον διαλόγους - + JavaScript alert - %1 Ειδοποίηση JavaScript - %1 - + Choose file... Επιλογή αρχείου... @@ -5009,198 +5030,198 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Νέα καρτέλα - + Open link in new &tab Άνοιγμα συνδέσμου σε νέα καρ&τέλα - + Open link in new &window Άνοιγμα συνδέσμου σε νέο &παράθυρο - + B&ookmark link Ο σύνδεσμος ως σελιδο&δείκτης - + &Save link as... Απο&θήκευση συνδέσμου ως... - + Send link... Αποστολή συνδέσμου... - + &Copy link address Α&ντιγραφή διεύθυνσης συνδέσμου - + Show i&mage Εμφάνιση &εικόνας - + Copy im&age Αντιγραφή ει&κόνας - + Copy image ad&dress Αντιγραφή διεύ&θυνσης εικόνας - + &Save image as... Απο&θήκευση εικόνας ως... - + Send image... Αποστολή εικόνας... - + &Back &Πίσω - + &Forward &Μπροστά - - + + &Reload &Ανανέωση - + S&top &Διακοπή - + This frame Αυτό το πλαίσιο - + Show &only this frame Εμφάνιση &μόνο αυτού του πλαισίου - + Show this frame in new &tab Εμφάνιση αυτού του πλαισίου σε νέα &καρτέλα - + Print frame Εκτύπωση πλαισίου - + Zoom &in Ε&στίαση - + &Zoom out Σμίκρ&υνση - + Reset Επαναφορά - + Show so&urce of frame Εμφάνιση πη&γαίου του πλαισίου - + Book&mark page Η σελίδα ως &σελιδοδείκτης - + &Save page as... Αποθήκευση σε&λίδας ως... - + &Copy page link Α&ντιγραφή συνδέσμου σελίδας - + Send page link... Αποστολή συνδέσμου σελίδας... - + &Print page Ε&κτύπωση σελίδας - + Send text... Αποστολή κειμένου... - + Google Translate Μετάφραση Google - + Dictionary Λεξικό - + Go to &web address Μετάβαση στην διεύθυνση &διαδικτύου - + &Play &Αναπαραγωγή - + &Pause &Πάυση - + Un&mute Ά&ρση σίγασης - + &Mute &Σίγαση - + &Copy Media Address Α&ντιγραφή διεύθυνσης πολυμέσου - + &Send Media Address Α&ποστολή διεύθυνσης πολυμέσων - + Save Media To &Disk Αποθήκευση πολυμέσου στον &δίσκο @@ -5209,22 +5230,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Αποστολή σελίδας... - + Select &all Επι&λογή όλων - + Validate page Επικύρωση σελίδας - + Show so&urce code Εμφάνιση πη&γαίου κώδικα - + Show info ab&out site Εμφάνιση πληρο&φοριών για την σελίδα @@ -5233,7 +5254,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Εμφάνιση επιθε&ωρητή διαδικτύου - + Search "%1 .." with %2 Αναζήτηση "%1" με %2 diff --git a/translations/empty.ts b/translations/empty.ts index e3a0e184b..ca7336888 100644 --- a/translations/empty.ts +++ b/translations/empty.ts @@ -167,32 +167,53 @@ AdBlockIcon - + AdBlock lets you block unwanted content on web pages - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + + + + Show AdBlock &Settings - + + Blocked Popup Windows + + + + No content blocked - + Blocked URL (AdBlock Rule) - click to edit rule - + + %1 with (%2) - + Learn About Writing &Rules @@ -1123,13 +1144,13 @@ DownloadFileHelper - - + + Save file as... - + NoNameDownload @@ -1271,7 +1292,7 @@ - + Download Manager @@ -1311,22 +1332,22 @@ - + Download Finished - + All files have been successfully downloaded. - + Warning - + Are you sure to quit? All uncompleted downloads will be cancelled! @@ -1369,7 +1390,7 @@ - + Opening %1 @@ -3046,7 +3067,7 @@ - + %1 - QupZilla @@ -3111,47 +3132,47 @@ - + 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 QupZilla? @@ -4244,28 +4265,28 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla - + Currently you have %1 opened tabs - + New tab - + Empty - + Restore All Closed Tabs - + Clear list @@ -4273,22 +4294,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page - + Loading... - + %1 - QupZilla - + Inspect Element @@ -4364,138 +4385,138 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) - + Confirm form resubmission - + Select files to upload... - + Server refused the connection - + Server closed the connection - + Server not found - + Connection timed out - + Untrusted connection - + Temporary network failure - + Proxy connection refused - + Proxy server not found - + Proxy connection timed out - + Proxy authentication required - + Content not found - + AdBlocked Content - + Blocked by rule <i>%1</i> - + Content Access Denied - + Error code %1 - + Failed loading page - + QupZilla can't load page from %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. - + Try Again - + Prevent this page from creating additional dialogs - + JavaScript alert - %1 - + Choose file... @@ -4531,223 +4552,223 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla - + &Back - + &Forward - - + + &Reload - + S&top - + This frame - + Show &only this frame - + Show this frame in new &tab - + Print frame - + Zoom &in - + &Zoom out - + Reset - + Show so&urce of frame - + Book&mark page - + &Save page as... - + &Copy page link - + Send page link... - + &Print page - + Select &all - + Validate page - + Show so&urce code - + Show info ab&out site - + Open link in new &tab - + Open link in new &window - + B&ookmark link - + &Save link as... - + Send link... - + &Copy link address - + Show i&mage - + Copy im&age - + Copy image ad&dress - + &Save image as... - + Send image... - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + Search "%1 .." with %2 - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk diff --git a/translations/es_ES.ts b/translations/es_ES.ts index 4bb910098..5ff475076 100644 --- a/translations/es_ES.ts +++ b/translations/es_ES.ts @@ -175,32 +175,53 @@ AdBlock le permite bloquear contenido no deseado en las páginas - + AdBlock lets you block unwanted content on web pages El bloqueador de publicidad le permite bloquear contenido no deseado en las páginas - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + Bloqueador de publicidad + + + Show AdBlock &Settings Ver &preferencias del bloqueador de publicidad - + + Blocked Popup Windows + + + + No content blocked Ningún contenido bloqueado - + Blocked URL (AdBlock Rule) - click to edit rule URL bloqueada (regla del bloqueador de publicidad) - click para editar regla - + + %1 with (%2) %1 con (%2) - + Learn About Writing &Rules Aprenda acerca de escribir &reglas @@ -1193,13 +1214,13 @@ DownloadFileHelper - - + + Save file as... Guardar archivo como... - + NoNameDownload DescargaSinNombre @@ -1347,7 +1368,7 @@ - + Download Manager Gestor de descargas @@ -1387,22 +1408,22 @@ % - Gestor de descargas - + Download Finished Descarga finalizada - + All files have been successfully downloaded. Todos los archivos se han descargado satisfactoriamente. - + Warning Aviso - + Are you sure to quit? All uncompleted downloads will be cancelled! ¿Está seguro de salir? ¡Todas las descargas incompletas serán canceladas! @@ -1445,7 +1466,7 @@ Guardar archivo - + Opening %1 Abriendo %1 @@ -3329,7 +3350,7 @@ Acerca de &Qt - + %1 - QupZilla %1 - QupZilla @@ -3388,7 +3409,7 @@ &Navegación privada - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Está a punto de cerrar %1 pestañas. ¿Está seguro de continuar? @@ -3417,42 +3438,42 @@ Nueva pestaña - + Open file... Abrir archivo... - + Are you sure you want to turn on private browsing? ¿Está seguro que desea habilitar la navegación privada? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Cuando la navegación privada está habilitada, algunas opciones relacionadas con su privacidad estarán deshabilitadas: - + Webpages are not added to the history. Las páginas web no se añaden al historial. - + Current cookies cannot be accessed. Las cookies actuales no pueden ser accedidas. - + Your session is not stored. La sesión no será guardada. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Hasta que cierre la ventana, puede hacer click en los botones Anterior y Siguiente para regresar a las páginas web que haya abierto. - + Start Private Browsing Comenzar la navegación privada @@ -4597,7 +4618,7 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Página sin nombre - + Currently you have %1 opened tabs Actualmente tiene %1 pestañas abiertas @@ -4606,23 +4627,23 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Actualmente tiene %1 pestañas abiertas - + New tab Nueva pestaña - + Empty Vacío - + Restore All Closed Tabs Restaurar todas las pestañas cerradas - + Clear list Limpiar lista @@ -4630,22 +4651,22 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup TabbedWebView - + Failed loading page Falló la carga de la página - + Loading... Cargando... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspeccionar elemento @@ -4869,7 +4890,7 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Para mostrar esta página, QupZilla necesita enviar información que repetirá cualquier acción @@ -4880,47 +4901,47 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Nueva pestaña - + Confirm form resubmission Confirmar el reenvío del formulario - + Select files to upload... Seleccionar archivos para subir... - + Server refused the connection El servidor rechazó la conexión - + Server closed the connection El servidor cerró la conexión - + Server not found Servidor no encontrado - + Connection timed out La conexión expiró - + Untrusted connection Conexión no fiable - + Temporary network failure Fallo de la red temporal - + Proxy connection refused Conexión proxy rechazada @@ -4929,87 +4950,87 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Nombre del host proxy no encontrado - + Proxy server not found - + Proxy connection timed out Expiró el tiempo de conexión al proxy - + Proxy authentication required Autentificación proxy requerida - + Content not found Contenido no encontrado - + AdBlocked Content Contenido publicitario bloqueado - + Blocked by rule <i>%1</i> Bloqueado por regla <i>%1</i> - + Content Access Denied Denegado el acceso al contenido - + Error code %1 Código de error %1 - + Failed loading page Falló la carga de la página - + QupZilla can't load page from %1. QupZilla no puede cargar la página de %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Compruebe errores de escritura en la dirección como <b>ww.</b>ejemplo.com en lugar de <b>www.</b>ejemplo.com - + If you are unable to load any pages, check your computer's network connection. Si no puede cargar ninguna página, compruebe la conexión a la red de su ordenador. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Si su ordenador o red están protegidos por un cortafuegos o proxy, asegúrese de que QupZilla tiene permitido el acceso a la red. - + Try Again Volver a intentar - + Prevent this page from creating additional dialogs Prevenir que esta página cree diálogos adicionales - + JavaScript alert - %1 Alerta JavaScript - %1 - + Choose file... Elegir archivo... @@ -5048,42 +5069,42 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Cargando... - + &Copy page link Cop&iar el enlace de la página - + Send page link... Enviar enlace de la página... - + &Print page &Imprimir página - + Validate page Validar página - + Send text... Enviar texto... - + Google Translate Traductor de Google - + Dictionary Diccionario - + Go to &web address Ir a &dirección web @@ -5092,163 +5113,163 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Nueva pestaña - + Open link in new &tab Abrir enlace en una nueva &pestaña - + Open link in new &window Abrir enlace en una nueva &ventana - + B&ookmark link Añadir enlace a &marcadores - + &Save link as... &Guardar enlace como... - + Send link... Enviar enlace... - + &Copy link address Copi&ar la ruta del enlace - + Show i&mage Mostrar &imágen - + Copy im&age Co&piar imágen - + Copy image ad&dress C&opiar la ruta de la imágen - + &Save image as... &Guardar imágen como... - + Send image... Enviar imágen... - + &Back &Anterior - + &Forward &Siguiente - - + + &Reload &Recargar - + S&top &Detener - + This frame Este marco - + Show &only this frame M&ostrar solamente este marco - + Show this frame in new &tab Mostrar este marco en una nueva &pestaña - + Print frame Imprimir marco - + Zoom &in &Aumentar tamaño - + &Zoom out &Reducir tamaño - + Reset Reiniciar tamaño - + Show so&urce of frame Mostrar código f&uente del marco - + Book&mark page Añadir esta página a &marcadores - + &Save page as... &Guardar como... - + &Play &Reproducir - + &Pause &Pausa - + Un&mute &Activar sonido - + &Mute &Desactivar sonido - + &Copy Media Address Copi&ar la ruta del contenido media - + &Send Media Address &Enviar la ruta del contenido media - + Save Media To &Disk Guardar el contenido media al &disco @@ -5257,17 +5278,17 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Enviar página... - + Select &all Seleccionar &todo - + Show so&urce code Ver código &fuente de la página - + Show info ab&out site Ver &información de la página @@ -5276,7 +5297,7 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Ver Inspector &Web - + Search "%1 .." with %2 Buscar "%1 .." con %2 diff --git a/translations/fr_FR.ts b/translations/fr_FR.ts index 67aa52092..544067811 100644 --- a/translations/fr_FR.ts +++ b/translations/fr_FR.ts @@ -176,34 +176,55 @@ AdBlock vous permet de bloquer tout le contenu indésirable des pages Internet - + AdBlock lets you block unwanted content on web pages AdBlock vous permet de bloquer tout le contenu indésirable des pages Internet - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + AdBlock + + + Show AdBlock &Settings N: supression de "de", remplacement par "d'" Montrer les &paramètres d'AdBlock - + + Blocked Popup Windows + + + + No content blocked Aucun contenu bloqué - + Blocked URL (AdBlock Rule) - click to edit rule N: Ajout majuscule sur "C" URL bloquée (règle AdBlock) - Cliquer pour éditer la règle - + + %1 with (%2) %1 avec (%2) - + Learn About Writing &Rules En savoir plus sur l'écriture des &règles @@ -1196,13 +1217,13 @@ DownloadFileHelper - - + + Save file as... Enregistrer le fichier sous... - + NoNameDownload Téléchargement sans nom @@ -1316,6 +1337,13 @@ Error Erreur + + + Sorry, the file + %1 + was not found! + + New tab Nouvel onglet @@ -1326,11 +1354,10 @@ Non trouvé - Sorry, the file  %1  was not found! - Désolé, le fichier + Désolé, le fichier %1 n'a pas été trouvé! @@ -1350,7 +1377,7 @@ n'a pas été trouvé! - + Download Manager Gestionnaire de téléchargement @@ -1390,22 +1417,22 @@ n'a pas été trouvé! % - Gestionnaire de téléchargement - + Download Finished Téléchargement terminé - + All files have been successfully downloaded. Tous les fichiers ont été téléchargés avec succès. - + Warning Attention - + Are you sure to quit? All uncompleted downloads will be cancelled! Etes-vous sûr de vouloir quitter? Tous les téléchargements incomplets seront annulés! @@ -1448,7 +1475,7 @@ n'a pas été trouvé! Enregistrer le fichier - + Opening %1 Ouverture de %1 @@ -1865,13 +1892,13 @@ n'a pas été trouvé! - + Username: Nom d'utilisateur: - + Password: Mot de passe: @@ -1886,12 +1913,12 @@ n'a pas été trouvé! Un nom d'utilisateur et un mot de passe sont requis par %1. Le site dit: "%2" - + Proxy authorization required Autorisation du proxy requise - + A username and password are being requested by proxy %1. Un nom d'utilisateur et un mot de passe sont requis par le proxy %1. @@ -2091,7 +2118,7 @@ n'a pas été trouvé! PopupWindow - + %1 - QupZilla %1 - QupZilla @@ -2936,7 +2963,7 @@ n'a pas été trouvé! Le fichier n'est pas un fichier OpenSearch 1.1. - + <not set in certificate> <non défini dans le certificat> @@ -2986,147 +3013,145 @@ n'a pas été trouvé! Nouvel onglet - + Private Browsing Enabled Navigation privée - + IP Address of current page Adresse IP de la page actuelle - + &Tools &Outils - + &Help &Aide - + &Bookmarks &Marque-pages - + Hi&story &Historique - + &File &Fichier - + &New Window &Nouvelle page - + New Tab Nouvel onglet - + Open Location Ouvrir un emplacement - + Open &File Ouvrir un &fichier - + Close Tab Fermer l'onglet - + Close Window Fermer la fenêtre - + &Save Page As... &Enregistrer la page sous... - + Save Page Screen Enregistrer l'impression d'écran - + Send Link... Envoyer un lien... - &Print - &Imprimer + &Imprimer - + Import bookmarks... Importer des marque-pages... - + Quit Quitter - + &Edit &Editer - + &Undo &Annuler - + &Redo &Rétablir - + &Cut Co&uper - + C&opy C&opier - + &Paste Co&ller - &Delete - &Supprimer + &Supprimer - + Select &All &Tout sélectionner - + &Find &Chercher - + Pr&eferences Préfér&ences @@ -3136,186 +3161,196 @@ n'a pas été trouvé! QupZilla - + + &Print... + + + + &View &Affichage - + &Navigation Toolbar Barre de &navigation - + &Bookmarks Toolbar &Barre d'outils marque-pages - + Sta&tus Bar &Barre d'état - + &Menu Bar Barre de &menu - + &Fullscreen Plein &écran - + &Stop &Stop - + &Reload &Actualiser - + Character &Encoding Enc&odage - + Bookmarks Marque-pages - + History Historique - + Toolbars Barre d'outils - + Sidebars Barres latérales - + Zoom &In Zoom &plus - + Zoom &Out Zoom &moins - + Reset Réinitialiser - + &Page Source Code &source de la page - + Closed Tabs Onglets récemment fermés - + Recently Visited Sites récemment visités - + Most Visited Sites les plus visités - + + Web In&spector + + + + Restore &Closed Tab Restaurer l'onglet &fermé - + (Private Browsing) (Navigation Privée) - + Bookmark &This Page Marquer cette &page - + Bookmark &All Tabs M&arquer tous les onglets - + Organize &Bookmarks &Organiser les marque-pages - + Information about application Informations à propos de l'application - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Il y a toujours %1 onglets d'ouverts et votre session ne sera pas sauvegardée. Etes-vous sûr de vouloir quitter QupZilla? - - - - - + + + + + Empty Vide - + &Back &Retour - + &Forward &Précédent - + &Home &Accueil - + Show &All History Montrer tout l'&historique - + Restore All Closed Tabs Restaurer tous les onglets fermés - + Clear list Vider la liste - + About &Qt A propos de &Qt - + &About QupZilla A propos de Qup&Zilla @@ -3324,102 +3359,102 @@ n'a pas été trouvé! Informations à propos de QupZilla - + Report &Issue Reporter un &dysfonctionnement - + &Web Search Recherche &web - + Page &Info &Information sur la page - + &Download Manager Gestionnaire de &téléchargement - + &Cookies Manager Gestionnaire de &cookies - + &AdBlock &AdBlock - + RSS &Reader Lecteur de &flux RSS - + Clear Recent &History Supprimer l'&historique récent - + &Private Browsing Navigation &privée - + Other Autre - + Default Défaut - + %1 - QupZilla %1 - QupZilla - + Open file... Ouvrir un fichier... - + Are you sure you want to turn on private browsing? Voulez-vous démarrer une session en navigation privée? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Quand vous lancez la navigation privée, certains paramètres concernant votre vie privée seront désactivés: - + Webpages are not added to the history. Les pages visitées ne sont pas ajoutées à l'historique. - + Current cookies cannot be accessed. Impossible d'accéder aux cookies en cours d'utilisation. - + Your session is not stored. Votre session n'est pas enregistrée. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Jusqu'à ce que vous fermiez la fenêtre, vous pourrez toujours cliquer sur les boutons Précédent et Suivant pour retourner sur la page que vous avez ouvert. - + Start Private Browsing Commencer la navigation privée @@ -4566,7 +4601,7 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Page non nommée - + Currently you have %1 opened tabs Il y a actuellement %1 onglet(s) ouvert(s) @@ -4575,23 +4610,23 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Il y a actuellement %1 onglet(s) ouvert(s) - + New tab Nouvel onglet - + Empty Vide - + Restore All Closed Tabs Restaurer tous les onglets fermés - + Clear list Vider la liste @@ -4599,22 +4634,22 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer TabbedWebView - + Failed loading page Echec de l'actualisation de la page - + Loading... Chargement... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspecter cet élément @@ -4806,7 +4841,7 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Pour afficher cette page, QupZilla doit à nouveau envoyer une requette @@ -4817,132 +4852,136 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Nouvel onglet - + Confirm form resubmission Confirmer le renvoi du formulaire - + Select files to upload... Sélectionner les fichiers à charger... - + Server refused the connection Le serveur refuse la connexion - + Server closed the connection Le serveur a coupé la connexion - + Server not found Le serveur n'a pas été trouvé - + Connection timed out Temps de réponse de la connexion dépassé - + Untrusted connection Connexion non fiable - + Temporary network failure Problème temporaire de réseau - + Proxy connection refused Connexion au le proxy refusé - Proxy host name not found - Nom d'hôte du proxy introuvable + Nom d'hôte du proxy introuvable - + + Proxy server not found + + + + Proxy connection timed out Délai de connection au le proxy expiré - + Proxy authentication required Authentification du proxy requis - + Content not found Contenu non trouvé - + AdBlocked Content Contenu bloqué - + Blocked by rule <i>%1</i> Bloqué par la règle <i>%1</i> - + Content Access Denied Accès au contenu refusé - + Error code %1 Code erreur %1 - + Failed loading page Echec lors du chargement de la page - + QupZilla can't load page from %1. QupZilla ne peut pas charger la page depuis %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Vérifiez que l'adresse ne contient pas d'erreur comme <b>ww.</b>example.com à la place de <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Si vous ne pouvez charger aucune page, vérifiez la connexion réseau de votre ordinateur. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Si votre ordinateur ou votre réseau est protégé par un pare-feu ou un proxy, assurez-vous que QupZilla est autorisé à accéder à Internet. - + Try Again Essayer à nouveau - + Prevent this page from creating additional dialogs Empêcher cette page de créer des dialogues supplémentaires - + JavaScript alert - %1 Alerte JavaScript - %1 - + Choose file... Choisir un fichier... @@ -4985,198 +5024,198 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Nouvel onglet - + Open link in new &tab Ouvrir le lien dans un nouvel &onglet - + Open link in new &window Ouvrir le lien dans une nouvelle &fenêtre - + B&ookmark link Lien du marque-&page - + &Save link as... &Enregistrer le lien sous... - + Send link... Envoyer le lien... - + &Copy link address Copier l'&adresse du lien - + Show i&mage Montrer l'i&mage - + Copy im&age Copier l'ima&ge - + Copy image ad&dress Copier l'a&dresse de l'image - + &Save image as... &Enregistrer l'image sous... - + Send image... Envoyer l'image... - + &Back &Retour - + &Forward &Suivant - - + + &Reload &Actualiser - + S&top &Stop - + This frame Ce cadre - + Show &only this frame Montrer uniquement ce &cadre - + Show this frame in new &tab Montrer ce cadre dans un nouvel &onglet - + Print frame Imprimer le cadre - + Zoom &in Zoom &plus - + &Zoom out Zoom &moins - + Reset Réinitialiser - + Show so&urce of frame Montrer le code so&urce du cadre - + Book&mark page &Marquer cette page - + &Save page as... &Enregistrer la page sous... - + &Copy page link Copier le lien de la &page - + Send page link... Envoyer le lien de la page... - + &Print page &Imprimer la page - + Send text... Envoyer le texte... - + Google Translate Google traduction - + Dictionary Dictionnaire - + Go to &web address Suivre le &lien - + &Play &Lecture - + &Pause &Pause - + Un&mute Non &muet - + &Mute &Muet - + &Copy Media Address Copier l'adresse du &média - + &Send Media Address &Envoyer l'adresse du média - + Save Media To &Disk Enregistrer le &média @@ -5185,22 +5224,22 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Envoyer la page... - + Select &all T&out Sélectionner - + Validate page Valider le code de la page - + Show so&urce code Montrer le &code source - + Show info ab&out site Informations à prop&os du site @@ -5209,7 +5248,7 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Web &Inspector - + Search "%1 .." with %2 Recherche de %1.."avec %2 diff --git a/translations/it_IT.ts b/translations/it_IT.ts index 6e86534a7..ded78c2b3 100644 --- a/translations/it_IT.ts +++ b/translations/it_IT.ts @@ -175,32 +175,53 @@ AdBlock permette di bloccare ogni contenuto indesiderato nelle pagine - + AdBlock lets you block unwanted content on web pages - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + AdBlock + + + Show AdBlock &Settings Mostra &Impostazioni di AdBlock - + + Blocked Popup Windows + + + + No content blocked Nessuno contenuto bloccato - + Blocked URL (AdBlock Rule) - click to edit rule URL bloccato (Regola di AdBlock) - clicca per modificare la regola - + + %1 with (%2) %1 con (%2) - + Learn About Writing &Rules Scopri Come Scrivere &Regole @@ -1193,13 +1214,13 @@ DownloadFileHelper - - + + Save file as... Salva come... - + NoNameDownload DownloadSenzaNome @@ -1347,7 +1368,7 @@ - + Download Manager Gestore download @@ -1387,22 +1408,22 @@ % - Gestore Download - + Download Finished Download completato - + All files have been successfully downloaded. Tutti i file sono stati scaricati con successo. - + Warning Attenzione - + Are you sure to quit? All uncompleted downloads will be cancelled! Sei sicuro di voler uscire? Tutti i download incompleti saranno cancellati! @@ -1445,7 +1466,7 @@ Salva File - + Opening %1 Apertura %1 @@ -3269,7 +3290,7 @@ - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Ci sono ancora %1 delle schede aperte e la sessione non sarà salvata. Sei sicuro di voler uscire da QupZilla? @@ -3387,47 +3408,47 @@ Predefinito - + %1 - QupZilla - + Open file... Apri file... - + Are you sure you want to turn on private browsing? Sei sicuro di voler avviare la navigazione anonima? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Quando la navigazione anonima è attiva, alcune azioni riguardanti la tua privacy potrebbero essere disabilitate: - + Webpages are not added to the history. Le pagine web non vengono aggiunte alla cronologia. - + Current cookies cannot be accessed. Non si può accedere ai cookie correnti. - + Your session is not stored. La Sessione non è memorizzata. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Fino alla chiusura della finestra è sempre possibile fare clic sui pulsanti Avanti e Indietro per tornare alla pagine web che hai aperto. - + Start Private Browsing Avvia navigazione anonima @@ -4576,7 +4597,7 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Pagina senza nome - + Currently you have %1 opened tabs @@ -4585,23 +4606,23 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Attualmente hai %1 schede aperte - + New tab Nuova scheda - + Empty Vuoto - + Restore All Closed Tabs Ripristina tutte le schede chiuse - + Clear list Pulisci lista @@ -4609,22 +4630,22 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari TabbedWebView - + Failed loading page - + Loading... Caricamento... - + %1 - QupZilla - + Inspect Element @@ -4820,7 +4841,7 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) I don't know what you mean for "shoping" @@ -4832,132 +4853,132 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Nuova scheda - + Confirm form resubmission - + Select files to upload... - + Server refused the connection Il Server ha rifiutato la connessione - + Server closed the connection Il Server ha chiuso la connessione - + Server not found Server non trovato - + Connection timed out Connessione scaduta - + Untrusted connection Connessione non attendibile - + Temporary network failure - + Proxy connection refused - + Proxy server not found - + Proxy connection timed out - + Proxy authentication required - + Content not found - + AdBlocked Content Contenuto bloccato (AdBlock) - + Blocked by rule <i>%1</i> Bloccato dalla regola <i>%1</i> - + Content Access Denied Accesso al contenuto negato - + Error code %1 Errore codice %1 - + Failed loading page Caricamento pagina fallito - + QupZilla can't load page from %1. QupZilla non può caricare la pagina da %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Controllare l'indirizzo per errori di battitura come <b>ww.</b>esempio.com invece di <b>www.</b>esempio.com - + If you are unable to load any pages, check your computer's network connection. Se non si riesce a caricare nessuna pagina, controllare la connessione di rete del compiuter. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Se il tuo computer o la rete sono protetti da un firewall o un proxy, assicurati che QupZilla sia autorizzato ad accedere al Web. - + Try Again Prova di nuovo - + Prevent this page from creating additional dialogs Evita che questa pagina crei finestre di dialogo aggiuntive - + JavaScript alert - %1 - + Choose file... Scegli il file... @@ -5000,198 +5021,198 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Nuova scheda - + Open link in new &tab Apri il link in una nuova &scheda - + Open link in new &window Apri il link in una nuova &finestra - + B&ookmark link &Aggiungi il link ai segnalibri - + &Save link as... &Salva il link come... - + Send link... Invia link... - + &Copy link address &Copia indirizzo link - + Show i&mage Mostra imma&gine - + Copy im&age Copia im&magine - + Copy image ad&dress Copia indiri&zzo immagine - + &Save image as... Sa&lva immagine come... - + Send image... Invia immagine... - + &Back &Indietro - + &Forward &Avanti - - + + &Reload &Ricarica - + S&top S&top - + This frame Questa cornice - + Show &only this frame Mostra s&olo questa cornice - + Show this frame in new &tab Mostra questa cornice in una nuova &scheda - + Print frame Stampa cornice - + Zoom &in &Ingrandisci - + &Zoom out &Riduci - + Reset Ripristina - + Show so&urce of frame Mostra sor&gente della cornice - + Book&mark page Aggi&ungi la pagina ai Segnalibri - + &Save page as... Sa&lva pagina come... - + &Copy page link - + Send page link... - + &Print page - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5200,22 +5221,22 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Invia pagina... - + Select &all Seleziona &tutto - + Validate page - + Show so&urce code Mostra codice so&rgente - + Show info ab&out site Mostra info su&l sito @@ -5224,7 +5245,7 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Mostra Is&pettore Web - + Search "%1 .." with %2 Cerca "%1 .." con %2 diff --git a/translations/nl_NL.ts b/translations/nl_NL.ts index 227853a26..397b8535b 100644 --- a/translations/nl_NL.ts +++ b/translations/nl_NL.ts @@ -175,32 +175,53 @@ AdBlock stelt u in staat ongewenste inhoud op pagina's te blokkeren - + AdBlock lets you block unwanted content on web pages AdBlock stelt u in staat ongewenste inhoud op pagina's te blokkeren - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + AdBlock + + + Show AdBlock &Settings Toon AdBlock-&instellingen - + + Blocked Popup Windows + + + + No content blocked Geen inhoud geblokkeerd - + Blocked URL (AdBlock Rule) - click to edit rule Geblokkeerde URL (AdBlock-regel) - klik om regel aan te passen - + + %1 with (%2) %1 met (%2) - + Learn About Writing &Rules Leer over het schrijven van &regels @@ -1194,13 +1215,13 @@ DownloadFileHelper - - + + Save file as... Bestand opslaan als... - + NoNameDownload GeenNaamVoorDownload @@ -1376,29 +1397,29 @@ werd niet gevonden! % - Download-manager - + Download Finished Download voltooid - + All files have been successfully downloaded. Alle bestanden zijn met succes gedownload. - + Warning Waarschuwing - + Are you sure to quit? All uncompleted downloads will be cancelled! Weet u zeker dat u wilt afsluiten? Alle onvoltooide downloads zullen geannuleerd worden! - + Download Manager Download-manager @@ -1446,7 +1467,7 @@ werd niet gevonden! Bestand opslaan - + Opening %1 Openen van %1 @@ -3200,7 +3221,7 @@ werd niet gevonden! - QupZilla - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? U heeft nog steeds %1 geopende tabs en uw sessie zal niet worden opgeslagen. Weet u zeker dat u wilt afsluiten? @@ -3275,22 +3296,22 @@ werd niet gevonden! Standaard - + %1 - QupZilla %1 - QupZilla - + 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 @@ -3442,27 +3463,27 @@ werd niet gevonden! &Instellingen - + 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. @@ -4608,7 +4629,7 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Niet-benoemde pagina - + Currently you have %1 opened tabs Eigenlijk heeft U %1 geopende tabbladen @@ -4617,23 +4638,23 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Eigenlijk heeft U %1 geopende tabbladen - + New tab Nieuw tabblad - + Empty Leeg - + Restore All Closed Tabs Herstel alle gesloten tabbladen - + Clear list Wis lijst @@ -4641,22 +4662,22 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te TabbedWebView - + Failed loading page Mislukt om pagina te laden - + Loading... Aan het laden... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspecteer element @@ -4876,7 +4897,7 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Om deze pagina te tonen, moet QupZulla het verzoek opnieuw versturen @@ -4887,47 +4908,47 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Nieuw tabblad - + Confirm form resubmission Bevestig herindiening forumlier - + Select files to upload... Selecteer bestanden om te uploaden... - + Server refused the connection Server weigerde de verbinding - + Server closed the connection Server sloot de verbinding - + Server not found Server niet gevonden - + Connection timed out Verbinding onderbroken - + Untrusted connection Onbeveiligde verbinding - + Temporary network failure Tijdelijke netwerkfout - + Proxy connection refused Proxy-verbinding geweigerd @@ -4936,87 +4957,87 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Proxy-hostnaam niet gevonden - + Proxy server not found - + Proxy connection timed out Proxy-verbinding tijdsonderbreking - + Proxy authentication required Proxy-authenticatie benodigd - + Content not found Inhoud niet gevonden - + AdBlocked Content Door AdBlock geblokkeerde inhoud - + Blocked by rule <i>%1</i> Geblokkeerd door regel <i>%1</i> - + Content Access Denied Inhoudstoegang geweigerd - + Error code %1 Foutcode %1 - + Failed loading page Mislukt om pagina te laden - + QupZilla can't load page from %1. QupZilla kan de pagina niet laden van %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Controleer het adres op typfouten zoals <b>ww.</b>voorbeeld.nl in plaats van <b>www.</b>voorbeeld.nl - + If you are unable to load any pages, check your computer's network connection. Indien u niet in staat bent om eender welke pagina te laden, controleer dan uw netwerkverbinding. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Indien uw computer of netwerk beveiligd is door een firewall of proxy, zorg dan dat QupZilla toestemming heeft om het web te benaderen. - + Try Again Probeer nogmaals - + Prevent this page from creating additional dialogs Voorkom dat deze pagina extra dialoogvensters aanmaakt - + JavaScript alert - %1 JavaScript-waarschuwing - %1 - + Choose file... Kies bestand... @@ -5055,147 +5076,147 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te - QupZilla - + Open link in new &tab Open link in nieuw &tabblad - + Open link in new &window Open link in nieuw &venster - + B&ookmark link B&ladwijzer link - + &Save link as... &Sla link op als... - + &Copy link address &Kopieer linkadres - + Show i&mage Toon af&beelding - + Copy im&age &Kopieer afbeelding - + Copy image ad&dress Kopieer af&beeldingsadres - + S&top &Stop - + This frame Dit frame - + Show &only this frame Toon &alleen dit frame - + Show this frame in new &tab Toon dit frame in nieuw &tabblad - + Print frame Druk frame af - + Zoom &in Zoom &in - + &Zoom out &Zoom uit - + Reset Zet terug - + Show so&urce of frame Toon &bron van frame - + &Copy page link &Kopieer paginalink - + Send page link... Verstuur paginalink... - + &Print page &Print pagina - + Validate page Valideer pagina - + Show info ab&out site Toon info &over site - + &Play &Speel af - + &Pause &Pauzeer - + Un&mute Ont&demp - + &Mute &Demp - + &Copy Media Address &Kopieer media-adres - + &Send Media Address &Verstuur media-adres - + Save Media To &Disk Sla media op naar &schijf @@ -5204,7 +5225,7 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Toon Web-&inspecteur - + &Save image as... &Sla afbeelding op als... @@ -5213,63 +5234,63 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Mislukt om pagina te laden - + &Back &Terug - + &Forward &Vooruit - - + + &Reload &Herlaad - + Book&mark page &Bladwijzer pagina - + &Save page as... &Sla pagina op als... - + Select &all &Selecteer alles - + Show so&urce code &Toon broncode - + Send text... Verstuur tekst... - + Google Translate Google Vertalen - + Dictionary Woordenboek - + Go to &web address Ga naar &webadres - + Search "%1 .." with %2 Zoek "%1 .." met %2 @@ -5283,12 +5304,12 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Nieuw tabblad - + Send link... Verstuur link... - + Send image... Verstuur afbeelding... diff --git a/translations/pl_PL.ts b/translations/pl_PL.ts index b805a1a35..b02d30e12 100644 --- a/translations/pl_PL.ts +++ b/translations/pl_PL.ts @@ -176,32 +176,53 @@ Adblock zacznie blokować niepożądane treści na stronach - + AdBlock lets you block unwanted content on web pages AdBlock pozwala na blokowanie niechcianej zawartości stron www - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + AdBlock + + + Show AdBlock &Settings Otwórz &ustawienia AdBlocka - + + Blocked Popup Windows + + + + No content blocked Brak zablokowanej zawartości - + Blocked URL (AdBlock Rule) - click to edit rule Blokowany adres (AdBlock filtr) - kliknij aby edytować - + + %1 with (%2) %1 z (%2) - + Learn About Writing &Rules Dowiedz się jak pisać &filtry @@ -1194,13 +1215,13 @@ DownloadFileHelper - - + + Save file as... Zapisz plik jako... - + NoNameDownload Bez nazwy @@ -1376,22 +1397,22 @@ % - Menedżer pobierania - + Download Finished Pobieranie ukończone - + All files have been successfully downloaded. Wszystkie pliki pobrano prawidłowo. - + Warning Uwaga - + Are you sure to quit? All uncompleted downloads will be cancelled! fixme ;) Czy na pewno chcesz zamknąć? Wszystkie pobierane pliki będą anulowane! @@ -1399,7 +1420,7 @@ - + Download Manager Menedżer pobierania @@ -1447,7 +1468,7 @@ Zapisz plik - + Opening %1 Otwieranie %1 @@ -3202,7 +3223,7 @@ - QupZilla - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Nadal jest otwarte %1 kart a twoja sesja nie zostanie zapisana. Czy napewno chcesz wyłączyć QupZillę? @@ -3282,22 +3303,22 @@ Domyślne - + %1 - QupZilla - + Current cookies cannot be accessed. Aktualne ciasteczka nie są dostępne. - + Your session is not stored. Twoja sesja nie jest przechowywana. - + Start Private Browsing Uruchom tryb prywatny @@ -3444,27 +3465,27 @@ Us&tawienia - + Open file... Otwórz plik... - + Are you sure you want to turn on private browsing? Czy na pewno chcesz włączyć tryb prywatny? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Kiedy tryb prywatny jest włączony, niektóre działania naruszające twoją prywatność będą wyłączone: - + Webpages are not added to the history. Strony internetowe nie są dodawane do historii. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Do zamknięcia okna, możesz używać Wstecz i Dalej aby powrócić do stron jakie miałeś otwarte. @@ -4609,7 +4630,7 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Strona bez nazwy - + Currently you have %1 opened tabs @@ -4618,23 +4639,23 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Aktualnie masz otwartych %1 kart - + New tab Nowa karta - + Empty - + Restore All Closed Tabs Przywróć wszystkie zamknięte karty - + Clear list Wyczyść listę @@ -4642,22 +4663,22 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi TabbedWebView - + Failed loading page - + Loading... Wczytywanie... - + %1 - QupZilla - + Inspect Element @@ -4885,7 +4906,7 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Aby wyświetlić tę stronę, QupZilla musi wysłać ponownie żądanie do serwera @@ -4896,47 +4917,47 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Nowa karta - + Confirm form resubmission - + Select files to upload... - + Server refused the connection Serwer odrzucił połączenie - + Server closed the connection Serwer przerwał połączenie - + Server not found Serwer nie znaleziony - + Connection timed out Przekroczono limit czasu połączenia - + Untrusted connection Niezaufane połączenie - + Temporary network failure Chwilowy błąd sieci - + Proxy connection refused Połączenie proxy przerwane @@ -4945,87 +4966,87 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Nazwa hosta proxy nie znaleziona - + Proxy server not found - + Proxy connection timed out Przekroczono limit czasu połączenia proxy - + Proxy authentication required Wymagana aututentykacja proxy - + Content not found Zawartość nie znaleziona - + AdBlocked Content AdBlock zablokował - + Blocked by rule <i>%1</i> Zablokowano regułą <i>%1</i> - + Content Access Denied Dostęp zablokowany - + Error code %1 Kod błędu %1 - + Failed loading page Błąd ładowania strony - + QupZilla can't load page from %1. QupZilla nie może załadować strony z serwera %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Sprawdź czy adres został wpisnay poprawnie, gdzie zamiast np. <b>ww.</b>serwer.pl powinno być <b>www.</b>serwer.pl - + If you are unable to load any pages, check your computer's network connection. Jeśli nie możesz otworzyć żadnej strony, sprawdź swoje połączenie z internetem. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Jeśli twój komputer lub sieć jest zabezpieczona za pomocą firewalla lub proxy, upewnij się że QupZilla ma zezwolenie na dostęp do sieci. - + Try Again Spróbuj ponownie - + Prevent this page from creating additional dialogs Zapobiegaj otwieraniu dodatkowych okien dialogowych na tej stronie - + JavaScript alert - %1 - + Choose file... Wybierz plik... @@ -5064,147 +5085,147 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi - QupZilla - + Open link in new &tab Otwórz odnośnik w &nowej karcie - + Open link in new &window Otwórz odnośnik w &nowej karcie - + B&ookmark link Dodaj odnośnik do &zakładek - + &Save link as... &Zapisz odnośnik jako... - + &Copy link address &Kopiuj adres odnośnika - + Show i&mage Pokaż &obrazek - + Copy im&age &Kopiuj obraz - + Copy image ad&dress Kopiuj adres &obrazka - + S&top &Zatrzymaj - + This frame Ta ramka - + Show &only this frame Pokaż &tylko tą ramkę - + Show this frame in new &tab Pokaż tą ramkę w nowej &karcie - + Print frame Drukuj ramkę - + Zoom &in Powięk&sz - + &Zoom out Po&mniejsz - + Reset Resetuj - + Show so&urce of frame Pokaż &źródło ramki - + &Copy page link &Kopiuj odnośnik strony - + Send page link... Wyślij odnośnik strony... - + &Print page &Drukuj stronę - + Validate page Sprawdź poprawność strony - + Show info ab&out site Pokaż &informacje o stronie - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5213,7 +5234,7 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Pokaż Web Inspe&ktora - + &Save image as... &Zapisz obrazek jako... @@ -5222,63 +5243,63 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Błąd wczytywania strony - + &Back &Cofnij - + &Forward &Dalej - - + + &Reload &Odśwież - + Book&mark page Dodaj&stronę do zakładek - + &Save page as... &Zapisz stronę jako... - + Select &all Zaznacz &wszystko - + Show so&urce code Pokaż kod &źródłowy - + Send text... Wyślij tekst... - + Google Translate Translator Google - + Dictionary Słownik - + Go to &web address Przejdź do adresu &www - + Search "%1 .." with %2 Szukaj "%1 .." z %2 @@ -5292,12 +5313,12 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Nowa karta - + Send link... Wyslij odnośnik... - + Send image... Wyślij obrazek... diff --git a/translations/pt_PT.ts b/translations/pt_PT.ts index 64cf69628..cf1fcd684 100644 --- a/translations/pt_PT.ts +++ b/translations/pt_PT.ts @@ -175,32 +175,53 @@ O AdBlock permite-lhe bloquear o conteúdo das páginas web - + AdBlock lets you block unwanted content on web pages O AdBlock permite-lhe bloquear o conteúdo das páginas web - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + Adblock + + + Show AdBlock &Settings Mo&strar definições AdBlock - + + Blocked Popup Windows + + + + No content blocked Nenhum conteúdo bloqueado - + Blocked URL (AdBlock Rule) - click to edit rule URL bloqueado (regra AdBlock) - clique para editar - + + %1 with (%2) %1 com (%2) - + Learn About Writing &Rules Saber mais sobre as &regras @@ -1193,13 +1214,13 @@ DownloadFileHelper - - + + Save file as... Gravar ficheiro como... - + NoNameDownload Transferência sem nome @@ -1347,7 +1368,7 @@ não foi encontrado! - + Download Manager Gestor de transferências @@ -1387,22 +1408,22 @@ não foi encontrado! %s - Gestor de transferências - + Download Finished Transferência concluída - + All files have been successfully downloaded. Todos os ficheiros foram transferidos com sucesso. - + Warning Aviso - + Are you sure to quit? All uncompleted downloads will be cancelled! Tem a certeza que pretende sair? As transferência não concluídas serão canceladas! @@ -1445,7 +1466,7 @@ não foi encontrado! Gravar ficheiro - + Opening %1 Abrir %1 @@ -3355,7 +3376,7 @@ não foi encontrado! Informações da aplicação - + %1 - QupZilla %1 - QupZilla @@ -3428,47 +3449,47 @@ não foi encontrado! - QupZilla - + Open file... Abrir ficheiro... - + Are you sure you want to turn on private browsing? Tem a certeza que pretende ativar a navegação privada? - + When private browsing is turned on, some actions concerning your privacy will be disabled: Se a navegação privada estiver ativa, alguns elementos de privacidade estarão inativos: - + Webpages are not added to the history. As páginas web não são adicionadas ao histórico. - + Current cookies cannot be accessed. Os cookies atuais não estarão acessíveis. - + Your session is not stored. A sua sessão não pode ser gravada. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. No entanto, enquanto não fechar a janela pode utilizar os botões Recuar e Avançar para voltar às páginas abertas anteriormente. - + Start Private Browsing Iniciar navegação privada - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Ainda existem %1 separadores abertos e a sessão não será gravada. Tem a certeza que pretende sair? @@ -4613,7 +4634,7 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Página sem nome - + Currently you have %1 opened tabs Atualmente, tem %1 separadores abertos @@ -4622,23 +4643,23 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Atualmente, tem %1 separador(es) aberto(s) - + New tab Novo separador - + Empty Vazio - + Restore All Closed Tabs Restaurar todos os separadores fechados - + Clear list Apagar lista @@ -4646,22 +4667,22 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup TabbedWebView - + Failed loading page Falha ao carregar a página - + Loading... A carregar... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspecionar elemento @@ -4889,7 +4910,7 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Para mostrar esta página, o QupZilla tem que reenviar o pedido solicitado. @@ -4900,47 +4921,47 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Novo separador - + Confirm form resubmission Confirmar novo envio de formulário - + Select files to upload... Selecione os ficheiros a enviar... - + Server refused the connection O servidor recusou a ligação - + Server closed the connection O servidor fechou a ligação - + Server not found Servidor não encontrado - + Connection timed out A ligação expirou - + Untrusted connection Ligação não confiável - + Temporary network failure Falha temporária de rede - + Proxy connection refused Ligação de proxy recusada @@ -4949,87 +4970,87 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Nome de proxy não encontrado - + Proxy server not found Servidor proxy não encontrado - + Proxy connection timed out A ligação proxy expirou - + Proxy authentication required Requer autorização de proxy - + Content not found Conteúdo não encontrado - + AdBlocked Content Conteúdo bloqueado - + Blocked by rule <i>%1</i> Bloqueado pela regra <i>%1</i> - + Content Access Denied Negado o acesso ao conteúdo - + Error code %1 Código de erro %1 - + Failed loading page Falha ao carregar a página - + QupZilla can't load page from %1. O Qupzilla não conseguiu carregar a página %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Verifique se existem erros de inserção como <b>ww.</b>exemplo.com em vez de <b>www.</b>exemplo.com - + If you are unable to load any pages, check your computer's network connection. Se não consegue carregar quaisquer páginas, verifique a ligação de rede. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Se o computador estiver protegido por uma firewall ou proxy, certifique-se que o QupZilla pode aceder à Internet. - + Try Again Tente novamente - + Prevent this page from creating additional dialogs Impedir que esta página crie mais caixas de diálogo - + JavaScript alert - %1 Alerta JavaScript - %1 - + Choose file... Escolha o ficheiro... @@ -5068,42 +5089,42 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup A carregar... - + &Copy page link &Copiar ligação da página - + Send page link... Enviar ligação da página... - + &Print page Im&primir página - + Validate page Validar página - + Send text... Enviar texto... - + Google Translate Google Translate - + Dictionary Dicionário - + Go to &web address Ir para endereço &web @@ -5112,7 +5133,7 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Novo separador - + Open link in new &tab Abrir ligação em novo &separador @@ -5121,158 +5142,158 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup - QupZilla - + Open link in new &window Abrir ligação em nova &janela - + B&ookmark link Marcar ligaçã&o - + &Save link as... &Gravar ligação como... - + Send link... Enviar ligação... - + &Copy link address &Copiar endereço da ligação - + Show i&mage &Mostrar imagem - + Copy im&age Copi&ar imagem - + Copy image ad&dress Copiar en&dereço da imagem - + &Save image as... &Gravar imagem como... - + Send image... Enviar imagem... - + &Back &Recuar - + &Forward &Avançar - - + + &Reload &Recarregar - + S&top Pa&rar - + This frame Esta moldura - + Show &only this frame M&ostrar apenas esta moldura - + Show this frame in new &tab Mostrar es&ta moldura em novo separador - + Print frame Imprimir moldura - + Zoom &in Ampl&iar - + &Zoom out Redu&zir - + Reset Restaurar - + Show so&urce of frame Mostrar código fonte da mold&ura - + Book&mark page &Marcar esta página - + &Save page as... &Gravar página como... - + &Play Re&produzir - + &Pause &Pausa - + Un&mute Co&m som - + &Mute Se&m som - + &Copy Media Address &Copiar endereço multimédia - + &Send Media Address &Enviar endereço multimédia - + Save Media To &Disk Gravar multimédia no &disco @@ -5281,17 +5302,17 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Enviar página... - + Select &all Selecion&ar tudo - + Show so&urce code Mos&trar código fonte - + Show info ab&out site Mostrar inf&ormações da página @@ -5300,7 +5321,7 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Mostrar &inspetor web - + Search "%1 .." with %2 Procurar "%1 ..." no %2 diff --git a/translations/ru_RU.ts b/translations/ru_RU.ts index 3161c667a..13c0ca8db 100644 --- a/translations/ru_RU.ts +++ b/translations/ru_RU.ts @@ -176,32 +176,53 @@ AdBlock позволяет заблокировать нежелательное содержимое веб-страниц - + AdBlock lets you block unwanted content on web pages - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + AdBlock + + + Show AdBlock &Settings Показать &настройки AdBlock - + + Blocked Popup Windows + + + + No content blocked Нет заблокированных элементов - + Blocked URL (AdBlock Rule) - click to edit rule Заблокированный URL (Правило AdBlock) - кликните, чтобы редактировать правило - + + %1 with (%2) %1 с (%2) - + Learn About Writing &Rules Информация о написании &правил @@ -1196,13 +1217,13 @@ DownloadFileHelper - - + + Save file as... Сохранить как... - + NoNameDownload ?? Безымянная загрузка @@ -1352,7 +1373,7 @@ - + Download Manager Менеджер загрузок @@ -1392,22 +1413,22 @@ % - Менеджер загрузок - + Download Finished Загузка закончена - + All files have been successfully downloaded. Все файлы были успешно загружены. - + Warning Внимание - + Are you sure to quit? All uncompleted downloads will be cancelled! Вы точно хотите выйти? Все незавершенные загрузки будут отменены! @@ -1450,7 +1471,7 @@ Сохранить файл - + Opening %1 Открываю %1 @@ -3305,7 +3326,7 @@ - + %1 - QupZilla @@ -3374,47 +3395,47 @@ По умолчанию - + 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 QupZilla? У вас открыто %1 вкладок и ваша сессия не сохранится. Вы точно хотите выйти из QupZilla? @@ -4563,7 +4584,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Безымянная страница - + Currently you have %1 opened tabs @@ -4572,23 +4593,23 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla У вас открыто %1 вкладок - + New tab Новая вкладка - + Empty Пусто - + Restore All Closed Tabs Открыть все закрытые вкладки - + Clear list Очистить список @@ -4596,22 +4617,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Невозможно загрузить страницу - + Loading... Загрузка... - + %1 - QupZilla - + Inspect Element @@ -4779,7 +4800,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Чтобы показать эту страницу, QupZilla должен переслать запрос, который повторит действие, которое уже совершено. @@ -4790,132 +4811,132 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Новая вкладка - + Confirm form resubmission - + Select files to upload... - + Server refused the connection Соединение отвергнуто сервером - + Server closed the connection Сервер закрыл соединение - + Server not found Сервер не найден - + Connection timed out Время ожидания соединения истекло - + Untrusted connection Ненадежное соединение - + Temporary network failure - + Proxy connection refused - + Proxy server not found - + Proxy connection timed out - + Proxy authentication required - + Content not found - + AdBlocked Content Содержимое заболкировано AdBlock'ом - + Blocked by rule <i>%1</i> Заблокировано по правилу <i>%1</i> - + Content Access Denied Доступ к содержанию запрещен - + Error code %1 Код ошибки %1 - + Failed loading page Невозможно загрузить страницу - + QupZilla can't load page from %1. QupZilla не может загрузить страницу %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Проверьте адрес страницы на ошибки ( Например <b>ww</b>.example.com вместо <b>www</b>.example.com) - + If you are unable to load any pages, check your computer's network connection. Если невозможно загрузить любую страницу, проверьте ваше соединение с Internet. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Если ваш компютер или сеть защишена с помощью фаервола или прокси, удостовертесь, что QupZilla может выходить в Internet. - + Try Again Попробовать снова - + Prevent this page from creating additional dialogs Запретить странице создавать дополнительные диалоги - + JavaScript alert - %1 - + Choose file... Выберите файл... @@ -4958,198 +4979,198 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Новая вкладка - + Open link in new &tab Открыть ссылку в новой &вкладке - + Open link in new &window Открыть ссылку в новом &окне - + B&ookmark link Добавить ссылку в &закладки - + &Save link as... С&охранить ссылку как... - + Send link... Послать адрес... - + &Copy link address &Копировать адрес - + Show i&mage Показать и&зображение - + Copy im&age Копи&ровать изображение - + Copy image ad&dress Копировать &адрес изображения - + &Save image as... Со&хранить изображение как... - + Send image... Послать изображение... - + &Back &Назад - + &Forward &Вперед - - + + &Reload &Обновить - + S&top &Прервать - + This frame - + Show &only this frame - + Show this frame in new &tab - + Print frame - + Zoom &in - + &Zoom out - + Reset Восстановить - + Show so&urce of frame - + Book&mark page Добавить в &закладки - + &Save page as... &Сохранить страницу как... - + &Copy page link - + Send page link... - + &Print page - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5158,22 +5179,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Послать страницу... - + Select &all В&ыделить всё - + Validate page - + Show so&urce code Показать &исходый код - + Show info ab&out site Показывать &информацию о сайте @@ -5182,7 +5203,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Показать &Web инспектор - + Search "%1 .." with %2 Искать "%1 .." с %2 diff --git a/translations/sk_SK.ts b/translations/sk_SK.ts index a2ac5a825..2dd3f922b 100644 --- a/translations/sk_SK.ts +++ b/translations/sk_SK.ts @@ -168,6 +168,22 @@ AdBlock lets you block unwanted content on web pages AdBlock blokuje nevyžiadaný obsah na stránkach + + Blocked popup window + + + + AdBlock blocked unwanted popup window. + + + + AdBlock + AdBlock + + + Blocked Popup Windows + + AddAcceptLanguage diff --git a/translations/sr_BA.ts b/translations/sr_BA.ts index 24226ad42..b17589f9f 100644 --- a/translations/sr_BA.ts +++ b/translations/sr_BA.ts @@ -167,32 +167,53 @@ AdBlockIcon - + AdBlock lets you block unwanted content on web pages Адблок вам омогућује да блокирате непожељни садржај на веб страницама - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + Адблок + + + Show AdBlock &Settings Прикажи Адблокова &подешавања - + + Blocked Popup Windows + + + + No content blocked Нема блокираног садржаја - + Blocked URL (AdBlock Rule) - click to edit rule Блокирани УРЛ (Адблоков филтер) - кликни да уредиш филтер - + + %1 with (%2) %1 са (%2) - + Learn About Writing &Rules Научите како да направите &филтере @@ -1135,13 +1156,13 @@ DownloadFileHelper - - + + Save file as... Сачувај фајл као... - + NoNameDownload Неименовано_преузимање @@ -1285,7 +1306,7 @@ - + Download Manager Менаџер преузимања @@ -1325,22 +1346,22 @@ % - Менаџер преузимања - + Download Finished Преузимање је завршено - + All files have been successfully downloaded. Сви фајлови су успјешно преузети. - + Warning Упозорење - + Are you sure to quit? All uncompleted downloads will be cancelled! Желите ли заиста да напустите? Сва незавршена преузимања ће бити отказана! @@ -1383,7 +1404,7 @@ Сачувај фајл - + Opening %1 Отварам %1 @@ -3097,7 +3118,7 @@ Подаци о програму - + %1 - QupZilla %1 - Капзила @@ -3162,47 +3183,47 @@ Подразумијевано - + 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 QupZilla? Још увијек имате %1 отворених језичака а ваша сесија неће бити сачувана. Желите ли заиста да напустите Капзилу? @@ -4301,7 +4322,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Неименована страница - + Currently you have %1 opened tabs @@ -4310,23 +4331,23 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Имате %1 отворених језичака - + New tab Нови језичак - + Empty Празно - + Restore All Closed Tabs Врати све затворене језичке - + Clear list Очисти списак @@ -4334,22 +4355,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Неуспјех учитавања странице - + Loading... Учитавам... - + %1 - QupZilla %1 - Капзила - + Inspect Element Провјери елемент @@ -4425,54 +4446,54 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Да би приказала ову страницу Капзила мора поново да пошаље захтијев за учитавањем (као претрага куповине која је већ обављена) - + Confirm form resubmission Потврда поновног слања - + Select files to upload... Изабери фајлове за слање... - + Server refused the connection Сервер је одбио везу - + Server closed the connection Сервер је затворио везу - + Server not found Сервер није нађен - + Connection timed out Истекло вријеме повезивања - + Untrusted connection Неповјерљива веза - + Temporary network failure Привремени неуспјех мреже - + Proxy connection refused Веза са проксијем одбијена @@ -4481,87 +4502,87 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Име домаћина проксија није нађено - + Proxy server not found - + Proxy connection timed out Истекло вријеме повезивања са проксијем - + Proxy authentication required Прокси захтијева аутентификацију - + Content not found Садржај није нађен - + AdBlocked Content Блокиран садржај - + Blocked by rule <i>%1</i> Блокирано филтером <i>%1</i> - + Content Access Denied Приступ садржају одбијен - + Error code %1 Кôд грешке %1 - + Failed loading page Неуспјех учитавања странице - + QupZilla can't load page from %1. Капзила не може да учита страницу са %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Провјерите да ли сте погрешно укуцали адресу, на примјер <b>ww.</b>example.com умјесто <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Ако не можете да учитате ниједну страницу, провјерите везу вашег рачунара са интернетом. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Ако су ваш рачунар или мрежа заштићени заштитним зидом или проксијем, провјерите да ли је Капзили дозвољен приступ интернету. - + Try Again Покушај поново - + Prevent this page from creating additional dialogs Не дозволи овој страници да прави још дијалога - + JavaScript alert - %1 Јаваскрипт упозорење - %1 - + Choose file... Изабери фајл... @@ -4597,223 +4618,223 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Нема именоване странице - + &Back На&зад - + &Forward На&пријед - - + + &Reload &Учитај поново - + S&top Заус&тави - + This frame Оквир - + Show &only this frame П&рикажи само овај оквир - + Show this frame in new &tab Прикажи овај оквир у новом &језичку - + Print frame Штампај оквир - + Zoom &in У&вличај - + &Zoom out У&мањи - + Reset Стварна величина - + Show so&urce of frame Прикажи извор о&квира - + Book&mark page &Обиљежи страницу - + &Save page as... &Сачувај страницу као... - + &Copy page link &Копирај везу странице - + Send page link... Пошаљи везу странице... - + &Print page &Штампај страницу - + Select &all Из&абери све - + Validate page Провјера кôда - + Show so&urce code Прикажи &изворни кôд - + Show info ab&out site По&даци о сајту - + Open link in new &tab Отвори везу у новом &језичку - + Open link in new &window Отвори везу у новом &прозору - + B&ookmark link &Обиљежи везу - + &Save link as... &Сачувај везу као... - + Send link... Пошаљи везу... - + &Copy link address &Копирај адресу везе - + Show i&mage П&рикажи слику - + Copy im&age К&опирај слику - + Copy image ad&dress Копирај &адресу слике - + &Save image as... Сачувај с&лику као... - + Send image... Пошаљи слику... - + Send text... Пошаљи текст... - + Google Translate Гуглов преводилац - + Dictionary Рјечник - + Go to &web address Иди на &веб адресу - + Search "%1 .." with %2 Тражи „%1“ на %2 - + &Play &Пусти - + &Pause &Паузирај - + Un&mute Вра&ти звук - + &Mute У&тишај - + &Copy Media Address &Копирај адресу медија - + &Send Media Address П&ошаљи адресу медија - + Save Media To &Disk &Сачувај медиј на диск diff --git a/translations/sr_RS.ts b/translations/sr_RS.ts index 6e21e8f13..e2ffd99c7 100644 --- a/translations/sr_RS.ts +++ b/translations/sr_RS.ts @@ -167,32 +167,53 @@ AdBlockIcon - + AdBlock lets you block unwanted content on web pages Адблок вам омогућује да блокирате непожељни садржај на веб страницама - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + Адблок + + + Show AdBlock &Settings Прикажи Адблокова &подешавања - + + Blocked Popup Windows + + + + No content blocked Нема блокираног садржаја - + Blocked URL (AdBlock Rule) - click to edit rule Блокирани УРЛ (Адблоков филтер) - кликни да уредиш филтер - + + %1 with (%2) %1 са (%2) - + Learn About Writing &Rules Научите како да направите &филтере @@ -1135,13 +1156,13 @@ DownloadFileHelper - - + + Save file as... Сачувај фајл као... - + NoNameDownload Неименовано_преузимање @@ -1285,7 +1306,7 @@ - + Download Manager Менаџер преузимања @@ -1325,22 +1346,22 @@ % - Менаџер преузимања - + Download Finished Преузимање је завршено - + All files have been successfully downloaded. Сви фајлови су успешно преузети. - + Warning Упозорење - + Are you sure to quit? All uncompleted downloads will be cancelled! Желите ли заиста да напустите? Сва незавршена преузимања ће бити отказана! @@ -1383,7 +1404,7 @@ Сачувај фајл - + Opening %1 Отварам %1 @@ -3097,7 +3118,7 @@ Подаци о програму - + %1 - QupZilla %1 - QupZilla @@ -3162,47 +3183,47 @@ Подразумевано - + 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 QupZilla? Још увек имате %1 отворених језичака а ваша сесија неће бити сачувана. Желите ли заиста да напустите Капзилу? @@ -4301,7 +4322,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Неименована страница - + Currently you have %1 opened tabs @@ -4310,23 +4331,23 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Имате %1 отворених језичака - + New tab Нови језичак - + Empty Празно - + Restore All Closed Tabs Врати све затворене језичке - + Clear list Очисти списак @@ -4334,22 +4355,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Неуспех учитавања странице - + Loading... Учитавам... - + %1 - QupZilla %1 - Капзила - + Inspect Element Провери елемент @@ -4425,54 +4446,54 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) Да би приказала ову страницу Капзила мора поново да пошаље захтев за учитавањем (као претрага куповине која је већ обављена) - + Confirm form resubmission Потврда поновног слања - + Select files to upload... Изабери фајлове за слање... - + Server refused the connection Сервер је одбио везу - + Server closed the connection Сервер је затворио везу - + Server not found Сервер није нађен - + Connection timed out Истекло време повезивања - + Untrusted connection Неповерљива веза - + Temporary network failure Привремени неуспех мреже - + Proxy connection refused Веза са проксијем одбијена @@ -4481,87 +4502,87 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Име домаћина проксија није нађено - + Proxy server not found - + Proxy connection timed out Истекло време повезивања са проксијем - + Proxy authentication required Прокси захтева аутентификацију - + Content not found Садржај није нађен - + AdBlocked Content Блокиран садржај - + Blocked by rule <i>%1</i> Блокирано филтером <i>%1</i> - + Content Access Denied Приступ садржају одбијен - + Error code %1 Кôд грешке %1 - + Failed loading page Неуспех учитавања странице - + QupZilla can't load page from %1. Капзила не може да учита страницу са %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Проверите да ли сте погрешно укуцали адресу, на пример <b>ww.</b>example.com уместо <b>www.</b>example.com - + If you are unable to load any pages, check your computer's network connection. Ако не можете да учитате ниједну страницу, проверите везу вашег рачунара са интернетом. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Ако су ваш рачунар или мрежа заштићени заштитним зидом или проксијем, проверите да ли је Капзили дозвољен приступ интернету. - + Try Again Покушај поново - + Prevent this page from creating additional dialogs Не дозволи овој страници да прави још дијалога - + JavaScript alert - %1 Јаваскрипт упозорење - %1 - + Choose file... Изабери фајл... @@ -4597,223 +4618,223 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Нема именоване странице - + &Back На&зад - + &Forward На&пред - - + + &Reload &Учитај поново - + S&top Заус&тави - + This frame Оквир - + Show &only this frame П&рикажи само овај оквир - + Show this frame in new &tab Прикажи овај оквир у новом &језичку - + Print frame Штампај оквир - + Zoom &in У&величај - + &Zoom out У&мањи - + Reset Стварна величина - + Show so&urce of frame Прикажи извор о&квира - + Book&mark page &Обележи страницу - + &Save page as... &Сачувај страницу као... - + &Copy page link &Копирај везу странице - + Send page link... Пошаљи везу странице... - + &Print page &Штампај страницу - + Select &all Из&абери све - + Validate page Провера кôда - + Show so&urce code Прикажи &изворни кôд - + Show info ab&out site По&даци о сајту - + Open link in new &tab Отвори везу у новом &језичку - + Open link in new &window Отвори везу у новом &прозору - + B&ookmark link &Обележи везу - + &Save link as... &Сачувај везу као... - + Send link... Пошаљи везу... - + &Copy link address &Копирај адресу везе - + Show i&mage П&рикажи слику - + Copy im&age К&опирај слику - + Copy image ad&dress Копирај &адресу слике - + &Save image as... Сачувај с&лику као... - + Send image... Пошаљи слику... - + Send text... Пошаљи текст... - + Google Translate Гуглов преводилац - + Dictionary Речник - + Go to &web address Иди на &веб адресу - + Search "%1 .." with %2 Тражи „%1“ на %2 - + &Play &Пусти - + &Pause &Паузирај - + Un&mute Вра&ти звук - + &Mute У&тишај - + &Copy Media Address &Копирај адресу медија - + &Send Media Address П&ошаљи адресу медија - + Save Media To &Disk &Сачувај медиј на диск diff --git a/translations/sv_SE.ts b/translations/sv_SE.ts index a48996460..296824c1d 100644 --- a/translations/sv_SE.ts +++ b/translations/sv_SE.ts @@ -167,32 +167,53 @@ AdBlockIcon - + AdBlock lets you block unwanted content on web pages AdBlock låter dig blockera oönskat innehåll på webbsidor - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + AdBlock + + + Show AdBlock &Settings Visa AdBlock &inställningar - + + Blocked Popup Windows + + + + No content blocked Inget innehåll blockerat - + Blocked URL (AdBlock Rule) - click to edit rule Blockerad Url (AdBlock-regel) - klicka för att redigera regel - + + %1 with (%2) %1 med(%2) - + Learn About Writing &Rules Lär dig hur man skriver &regler @@ -1182,13 +1203,13 @@ DownloadFileHelper - - + + Save file as... Spara fil som... - + NoNameDownload Namnlös nedladdning @@ -1336,7 +1357,7 @@ - + Download Manager Nedladdningshanterare @@ -1376,22 +1397,22 @@ % - Nedladdningshanterare - + Download Finished Nedladdning klar - + All files have been successfully downloaded. Alla filer har laddats ner. - + Warning Varning - + Are you sure to quit? All uncompleted downloads will be cancelled! Är du säker på att du vill avsluta? Alla inkompletta nedladdningar kommer att avbrytas! @@ -1434,7 +1455,7 @@ Spara fil - + Opening %1 Öppnar %1 @@ -3393,52 +3414,52 @@ Standard - + %1 - QupZilla %1 - QupZilla - + Open file... Öppna fil... - + Are you sure you want to turn on private browsing? Är du säker på att du vill aktivera privat surfning? - + When private browsing is turned on, some actions concerning your privacy will be disabled: När privat surfning aktiveras stängs vissa integritetsrelaterade funktioner av: - + Webpages are not added to the history. Hemsidor sparas inte i historiken. - + Current cookies cannot be accessed. Nuvarande kakor kan inte kommas åt. - + Your session is not stored. Din session sparas inte. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. Fram till att du stänger fönstret kan du använda Bakåt/Framåt-knapparna för att återvända till sidor du besökt. - + Start Private Browsing Aktivera privat surfning - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? Det finns fortfarande %1 öppna flikar och din session kommer inte att sparas. Är du säker på att du vill avsluta QupZilla? @@ -4575,7 +4596,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Namnlös sida - + Currently you have %1 opened tabs @@ -4584,23 +4605,23 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s För tillfället har du %1 öppna flikar - + New tab Ny flik - + Empty Tom - + Restore All Closed Tabs Återställ alla stängda flikar - + Clear list Rensa lista @@ -4608,22 +4629,22 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s TabbedWebView - + Failed loading page Misslyckades med att hämta sidan - + Loading... Hämtar... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Granska element @@ -4851,7 +4872,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) @@ -4861,47 +4882,47 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Ny flik - + Confirm form resubmission - + Select files to upload... Välj filer att ladda upp... - + Server refused the connection Servern vägrade ansluta - + Server closed the connection Servern avbröt anslutningen - + Server not found Servern hittades inte - + Connection timed out Anslutningen upphörde - + Untrusted connection Osäker anslutning - + Temporary network failure Temporärt nätverksfel - + Proxy connection refused Proxyanslutning vägrad @@ -4910,87 +4931,87 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Proxyvärdnamn hittades inte - + Proxy server not found - + Proxy connection timed out Proxyanslutning upphörde - + Proxy authentication required Proxyautentisering krävs - + Content not found Innehåll hittades inte - + AdBlocked Content Reklamblockerat innehåll - + Blocked by rule <i>%1</i> Blockart av regeln <i>%1</i> - + Content Access Denied Innehållsåtkomst nekad - + Error code %1 Felkod %1 - + Failed loading page Misslyckades med att hämta sidan - + QupZilla can't load page from %1. QupZilla kan inte hämta sidan från %1. - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com Kontrollera adressen efter stavfel såsom <b>ww.</b>exempel.se istället för <b>www.</b>exempel.se - + If you are unable to load any pages, check your computer's network connection. Om du inte kan hämta några sidor alls, kontrollera din dators nätverksanslutning. - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. Om din dator eller ditt nätverk är skyddat av en brandvägg eller proxy, kontrollera att QupZilla är tillåten att komma åt webben. - + Try Again Försök igen - + Prevent this page from creating additional dialogs Förhindra att denna sidan skapar fler dialogrutor - + JavaScript alert - %1 Javaskriptvarning - %1 - + Choose file... Välj fil... @@ -5029,42 +5050,42 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Hämtar... - + &Copy page link &Kopiera sidlänk - + Send page link... Skicka sidans länk... - + &Print page &Skriv ut sida - + Validate page Validera sida - + Send text... Skicka text... - + Google Translate Google Översätt - + Dictionary Ordlista - + Go to &web address Gå till &webadress @@ -5073,178 +5094,178 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Ny flik - + Open link in new &tab Öppna länk i ny &flik - + Open link in new &window Öppna länk i nytt &fönster - + B&ookmark link Bokmärk &länk - + &Save link as... &Spara länk som... - + Send link... Skicka länk... - + &Copy link address &Kopiera länkadress - + Show i&mage Visa &bild - + Copy im&age Kopiera &bild - + Copy image ad&dress Kopiera bild&adress - + &Save image as... &Spara bild som... - + Send image... Skicka bild... - + &Back &Bakåt - + &Forward &Framåt - - + + &Reload &Hämta om - + S&top &Stopp - + This frame Denna ram - + Show &only this frame Visa &endast denna ramen - + Show this frame in new &tab Visa denna ramen i ny &flik - + Print frame Skriv ut ram - + Zoom &in Zooma &in - + &Zoom out Zooma &ut - + Reset Återställ - + Show so&urce of frame Visa ramens &källa - + Book&mark page Bok&märk sida - + &Save page as... &Spara sida som... - + Select &all Markera &allt - + Show so&urce code Visa &källkod - + Show info ab&out site Visa &information om denna sida - + &Play &Spela upp - + &Pause &Paus - + Un&mute - + &Mute &Tysta - + &Copy Media Address &Kopiera medieadress - + &Send Media Address &Skicka medieadress - + Save Media To &Disk Spara media till &hårddisk @@ -5253,7 +5274,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Visa webbinspektören - + Search "%1 .." with %2 Sök efter"%1 .."på %2 diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts index 0b42da0bc..209741d96 100644 --- a/translations/zh_CN.ts +++ b/translations/zh_CN.ts @@ -171,32 +171,53 @@ AdBlock为你阻止网页上任何不需要的内容 - + AdBlock lets you block unwanted content on web pages - + + Blocked popup window + + + + + AdBlock blocked unwanted popup window. + + + + + AdBlock + + + + Show AdBlock &Settings 显示AdBlock和设置 &S - + + Blocked Popup Windows + + + + No content blocked 没有内容受阻 - + Blocked URL (AdBlock Rule) - click to edit rule 封锁的网址(AdBlock的规则) - 单击“编辑规则” - + + %1 with (%2) - + Learn About Writing &Rules 了解写作与规则 &R @@ -1189,13 +1210,13 @@ DownloadFileHelper - - + + Save file as... 另存为... - + NoNameDownload 无命名下载 @@ -1341,7 +1362,7 @@ - + Download Manager 下载管理 @@ -1381,22 +1402,22 @@ % - 下载管理 - + Download Finished 下载完成 - + All files have been successfully downloaded. 所有文件已成功下载. - + Warning 注意 - + Are you sure to quit? All uncompleted downloads will be cancelled! 下载未完成确认退出吗? @@ -1439,7 +1460,7 @@ 保存 - + Opening %1 打开%1 @@ -3353,7 +3374,7 @@ 隐私浏览&P - + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? 还有%1打开的标签和您的会话将不会被储存。你一定要退出吗? @@ -3378,47 +3399,47 @@ 默认 - + %1 - QupZilla - + 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 开始隐私浏览 @@ -4565,7 +4586,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla 无命名页面 - + Currently you have %1 opened tabs @@ -4574,23 +4595,23 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla 你已有%1打开的标签 - + New tab 新标签 - + Empty 空页面 - + Restore All Closed Tabs 还原关闭的标签 - + Clear list 清除列表 @@ -4598,22 +4619,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page 载入页面失败 - + Loading... 载入中... - + %1 - QupZilla - + Inspect Element @@ -4809,7 +4830,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebPage - + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) 为显示此页QupZilla须重新发送请求 @@ -4819,132 +4840,132 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla 新标签 - + Confirm form resubmission - + Select files to upload... - + Server refused the connection 服务器拒绝了连接 - + Server closed the connection 服务器关闭了连接 - + Server not found 找不到服务器 - + Connection timed out 连接超时 - + Untrusted connection 不受信任的连接 - + Temporary network failure - + Proxy connection refused - + Proxy server not found - + Proxy connection timed out - + Proxy authentication required - + Content not found - + AdBlocked Content AdBlocked内容 - + Blocked by rule <i>%1</i> 阻止规则 <i>%1</i> - + Content Access Denied 内容访问被拒绝 - + Error code %1 错误代码为%1 - + Failed loading page 载入页面失败 - + QupZilla can't load page from %1. QupZilla无法加载%1页。 - + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com 检查输入错误的地址,如<b> WW</b> example.com,而不是<B> WWW。</b> example.com - + If you are unable to load any pages, check your computer's network connection. 如果您无法载入任何页面,请检查您的计算机的网络连接。 - + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. 如果您的计算机或网络受到防火墙或代理的保护,确保QupZilla允许访问Web。 - + Try Again 再试一次 - + Prevent this page from creating additional dialogs 创建附加的对话,防止此页 - + JavaScript alert - %1 - + Choose file... 选择文件... @@ -4987,198 +5008,198 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla 新标签 - + Open link in new &tab 在新标签中打开链接&t - + Open link in new &window 在新窗口中打开链接&w - + B&ookmark link 书签链接&o - + &Save link as... 链接另存为&S... - + Send link... 发送链接... - + &Copy link address 复制链接地址&C - + Show i&mage 显示图像&m - + Copy im&age 复制图像&a - + Copy image ad&dress 复制图像地址&d - + &Save image as... 图像另存为&S... - + Send image... 发送图像... - + &Back 后退&B - + &Forward 前进&F - - + + &Reload 刷新&R - + S&top 停止&t - + This frame 此帧 - + Show &only this frame 仅显示此帧&o - + Show this frame in new &tab 在新选项卡的显示帧&t - + Print frame 打印帧 - + Zoom &in 放大&i - + &Zoom out 缩小&Z - + Reset 重置 - + Show so&urce of frame 显示帧源码&u - + Book&mark page 加入书签&m - + &Save page as... 保存网页为&S... - + &Copy page link - + Send page link... - + &Print page - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5187,22 +5208,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla 发送网页... - + Select &all 选取所有&a - + Validate page - + Show so&urce code 显示源代码&u - + Show info ab&out site 显示有关网站的信息&o @@ -5211,7 +5232,7 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla 显示Web及督察&I - + Search "%1 .." with %2 使用 %2搜索"%1 .."