diff --git a/bin/locale/cs_CZ.qm b/bin/locale/cs_CZ.qm index b588965c9..f06ef2317 100644 Binary files a/bin/locale/cs_CZ.qm and b/bin/locale/cs_CZ.qm differ diff --git a/src/data/icons.qrc b/src/data/icons.qrc index 3bd43dd3d..792f5c4c6 100644 --- a/src/data/icons.qrc +++ b/src/data/icons.qrc @@ -2,15 +2,11 @@ icons/qupzilla.png icons/qupzillaupdate.png - icons/preferences/applications-accessories.png icons/preferences/applications-internet.png icons/preferences/applications-system.png icons/preferences/applications-webbrowsers.png icons/preferences/contact-new.png icons/preferences/preferences-desktop.png - icons/preferences/gnome-window-manager.png - icons/preferences/history_entry.png - icons/preferences/stock_inbox.png icons/faenza/back.png icons/faenza/close.png icons/faenza/forward.png @@ -42,13 +38,10 @@ icons/preferences/applications-fonts.png icons/preferences/applications-graphics.png icons/preferences/document-properties.png - icons/preferences/stock_keyring.png icons/other/adblock.png - icons/preferences/stock_dialog-question.png icons/notifications/download.png icons/other/bighistory.png icons/menu/dot.png - icons/preferences/appereance.png icons/preferences/style-default.png icons/exeicons/qupzilla16.png icons/exeicons/qupzilla32.png @@ -69,5 +62,10 @@ icons/faenza/go-next.png icons/faenza/go-previous.png icons/faenza/list-remove.png + icons/preferences/application-x-theme.png + icons/preferences/dialog-password.png + icons/preferences/dialog-question.png + icons/preferences/mail-inbox.png + icons/preferences/preferences-system-firewall.png diff --git a/src/data/icons/preferences/extension.png b/src/data/icons/preferences/extension.png index 369a16712..a92325aa6 100644 Binary files a/src/data/icons/preferences/extension.png and b/src/data/icons/preferences/extension.png differ diff --git a/src/desktopnotifications/desktopnotificationsfactory.cpp b/src/desktopnotifications/desktopnotificationsfactory.cpp index be7024fad..2460829f7 100644 --- a/src/desktopnotifications/desktopnotificationsfactory.cpp +++ b/src/desktopnotifications/desktopnotificationsfactory.cpp @@ -84,3 +84,28 @@ void DesktopNotificationsFactory::notify(const QPixmap &icon, const QString &hea break; } } + +void DesktopNotificationsFactory::nativeNotificationPreview() +{ +#ifdef Q_WS_X11 + QFile tmp(QDir::tempPath() + "/qupzilla_notif.png"); + tmp.open(QFile::WriteOnly); + QPixmap(":icons/preferences/stock_dialog-question.png").save(tmp.fileName()); + + QDBusInterface dbus("org.freedesktop.Notifications", "/org/freedesktop/Notifications", "org.freedesktop.Notifications", QDBusConnection::sessionBus()); + QVariantList args; + args.append("qupzilla"); + args.append(m_uint); + args.append(tmp.fileName()); + args.append(tr("Native System Notification")); + args.append(""); + args.append(QStringList()); + args.append(QVariantMap()); + args.append(m_timeout); + QDBusMessage message = dbus.callWithArgumentList(QDBus::Block, "Notify", args); + QVariantList list = message.arguments(); + if (list.count() > 0) { + m_uint = list.at(0).toInt(); + } +#endif +} diff --git a/src/desktopnotifications/desktopnotificationsfactory.h b/src/desktopnotifications/desktopnotificationsfactory.h index c297db75f..e1428584e 100644 --- a/src/desktopnotifications/desktopnotificationsfactory.h +++ b/src/desktopnotifications/desktopnotificationsfactory.h @@ -38,6 +38,8 @@ public: explicit DesktopNotificationsFactory(QObject* parent = 0); void notify(const QPixmap &icon, const QString &heading, const QString &text); + void nativeNotificationPreview(); + signals: public slots: diff --git a/src/downloads/downloadmanager.cpp b/src/downloads/downloadmanager.cpp index f10dd199b..3e2bbc693 100644 --- a/src/downloads/downloadmanager.cpp +++ b/src/downloads/downloadmanager.cpp @@ -219,7 +219,7 @@ void DownloadManager::downloadFinished(bool success) if (downloadingAllFilesFinished) { if (success && qApp->activeWindow() != this) { - mApp->desktopNotifications()->notify(QPixmap(":icons/notifications/download.png"), tr("Download Finished"), tr("All files have been successfully downloaded.")); + mApp->desktopNotifications()->notify(QIcon::fromTheme("mail-inbox", QIcon(":icons/notifications/download.png")).pixmap(48), tr("Download Finished"), tr("All files have been successfully downloaded.")); if (!m_closeOnFinish) { raise(); activateWindow(); diff --git a/src/preferences/preferences.cpp b/src/preferences/preferences.cpp index 8dc2b3f3c..9ec5d61b8 100644 --- a/src/preferences/preferences.cpp +++ b/src/preferences/preferences.cpp @@ -80,6 +80,18 @@ Preferences::Preferences(QupZilla* mainClass, QWidget* parent) setAttribute(Qt::WA_DeleteOnClose); ui->setupUi(this); + ui->listWidget->item(0)->setIcon(QIcon::fromTheme("preferences-desktop", QIcon(":/icons/preferences/preferences-desktop.png"))); + ui->listWidget->item(1)->setIcon(QIcon::fromTheme("application-x-theme", QIcon(":/icons/preferences/application-x-theme.png"))); + ui->listWidget->item(2)->setIcon(QIcon::fromTheme("applications-internet", QIcon(":/icons/preferences/applications-internet.png"))); + ui->listWidget->item(3)->setIcon(QIcon::fromTheme("applications-webbrowsers", QIcon(":/icons/preferences/applications-webbrowsers.png"))); + ui->listWidget->item(4)->setIcon(QIcon::fromTheme("applications-fonts", QIcon(":/icons/preferences/applications-fonts.png"))); + ui->listWidget->item(5)->setIcon(QIcon::fromTheme("mail-inbox", QIcon(":/icons/preferences/mail-inbox.png"))); + ui->listWidget->item(6)->setIcon(QIcon::fromTheme("dialog-password", QIcon(":/icons/preferences/dialog-password.png"))); + ui->listWidget->item(7)->setIcon(QIcon::fromTheme("preferences-system-firewall", QIcon(":/icons/preferences/preferences-system-firewall.png"))); + ui->listWidget->item(8)->setIcon(QIcon::fromTheme("dialog-question", QIcon(":/icons/preferences/dialog-question.png"))); + ui->listWidget->item(9)->setIcon(QIcon::fromTheme("extension", QIcon(":/icons/preferences/extension.png"))); + ui->listWidget->item(10)->setIcon(QIcon::fromTheme("applications-system", QIcon(":/icons/preferences/applications-system.png"))); + QSettings settings(mApp->getActiveProfilPath() + "settings.ini", QSettings::IniFormat); //GENERAL URLs settings.beginGroup("Web-URL-Settings"); @@ -363,7 +375,7 @@ void Preferences::showStackedPage(QListWidgetItem* item) m_notification->move(m_notifPosition); m_notification->show(); - mApp->desktopNotifications()->notify(QPixmap(":icons/preferences/stock_dialog-question.png"), tr("Native System Notification"), ""); + mApp->desktopNotifications()->nativeNotificationPreview(); } else if (m_notification) { m_notifPosition = m_notification->pos(); diff --git a/src/preferences/preferences.ui b/src/preferences/preferences.ui index 8ec4ac121..0781a0b42 100644 --- a/src/preferences/preferences.ui +++ b/src/preferences/preferences.ui @@ -16,9 +16,15 @@ + + + 220 + 0 + + - 200 + 220 16777215 @@ -56,10 +62,6 @@ 0 - - - :/icons/preferences/preferences-desktop.png:/icons/preferences/preferences-desktop.png - @@ -68,10 +70,6 @@ 1 - - - :/icons/preferences/appereance.png:/icons/preferences/appereance.png - @@ -80,10 +78,6 @@ 2 - - - :/icons/preferences/applications-internet.png:/icons/preferences/applications-internet.png - @@ -92,10 +86,6 @@ 3 - - - :/icons/preferences/applications-webbrowsers.png:/icons/preferences/applications-webbrowsers.png - @@ -104,10 +94,6 @@ 4 - - - :/icons/preferences/applications-fonts.png:/icons/preferences/applications-fonts.png - @@ -116,10 +102,6 @@ 5 - - - :/icons/preferences/stock_inbox.png:/icons/preferences/stock_inbox.png - @@ -128,10 +110,6 @@ 6 - - - :/icons/preferences/contact-new.png:/icons/preferences/contact-new.png - @@ -140,10 +118,6 @@ 7 - - - :/icons/preferences/history_entry.png:/icons/preferences/history_entry.png - @@ -152,10 +126,6 @@ 8 - - - :/icons/preferences/stock_dialog-question.png:/icons/preferences/stock_dialog-question.png - @@ -164,10 +134,6 @@ 9 - - - :/icons/preferences/extension.png:/icons/preferences/extension.png - @@ -176,10 +142,6 @@ 10 - - - :/icons/preferences/applications-system.png:/icons/preferences/applications-system.png - @@ -2008,8 +1970,6 @@ - - - + diff --git a/src/webview/siteinfo.cpp b/src/webview/siteinfo.cpp index d6017c0d6..dbdbdf0d0 100644 --- a/src/webview/siteinfo.cpp +++ b/src/webview/siteinfo.cpp @@ -42,6 +42,11 @@ SiteInfo::SiteInfo(QupZilla* mainClass, QWidget* parent) , m_certWidget(0) { ui->setupUi(this); + + ui->listWidget->item(0)->setIcon(QIcon::fromTheme("document-properties", QIcon(":/icons/preferences/document-properties.png"))); + ui->listWidget->item(1)->setIcon(QIcon::fromTheme("applications-graphics", QIcon(":/icons/preferences/applications-graphics.png"))); + ui->listWidget->item(2)->setIcon(QIcon::fromTheme("dialog-password", QIcon(":/icons/preferences/dialog-password.png"))); + WebView* view = p_QupZilla->weView(); QWebFrame* frame = view->page()->mainFrame(); QString title = view->title(); diff --git a/src/webview/siteinfo.ui b/src/webview/siteinfo.ui index 736a54f64..3abad7417 100644 --- a/src/webview/siteinfo.ui +++ b/src/webview/siteinfo.ui @@ -76,7 +76,7 @@ false - 0 + -1 @@ -85,10 +85,6 @@ 0 - - - :/icons/preferences/document-properties.png:/icons/preferences/document-properties.png - @@ -97,10 +93,6 @@ 1 - - - :/icons/preferences/applications-graphics.png:/icons/preferences/applications-graphics.png - @@ -109,10 +101,6 @@ 2 - - - :/icons/preferences/stock_keyring.png:/icons/preferences/stock_keyring.png - @@ -386,9 +374,7 @@
squeezelabelv2.h
- - - + buttonBox diff --git a/translations/cs_CZ.ts b/translations/cs_CZ.ts index cc4b1ff7a..dccad00c4 100644 --- a/translations/cs_CZ.ts +++ b/translations/cs_CZ.ts @@ -1107,6 +1107,14 @@ konce relace + + DesktopNotificationsFactory + + + Native System Notification + Nativní systémové oznámení + + DownloadFileHelper @@ -1863,705 +1871,700 @@ nebyl nalezen! Předvolby - + General Obecné - + 1 1 - + Downloads Stahování - + Plugins Doplňky - + Open blank page Otevřít prázdnou stránku - - + + Open homepage Otevřít domovskou stránku - + Restore session Obnovit relaci - + Homepage: Domovská stránka: - + On new tab: Při otevření nového panelu: - + Open blank tab Otevřít prázdný panel - + Open other page... Otevřít jinou stránku... - - + + Use actual Použít aktuální - + <b>Navigation ToolBar</b> <b>Navigační panel</b> - + <b>Background<b/> <b>Pozadí</b> - + Use transparent background Použít průhledné pozadí - + Maximum Maximálně - + 50 MB 50 MB - + QupZilla QupZilla - + Allow storing network cache on disk Povolit ukládání cache na disk - + <b>Cookies</b> <b>Cookies</b> - + <b>Address Bar behaviour</b> <b>Chování adresního řádku</b> - + <b>Language</b> <b>Jazyk</b> - + <b>General</b> <b>Hlavní</b> - + Startup profile: Startovní profil: - + Create New Nový profil - + Delete Odstranit - + Show StatusBar on start Zobrazit StatusBar při startu - + <b>Profiles</b> <b>Profily</b> - + Show Bookmarks ToolBar on start Zobrazit panel záložek při startu - + Show Navigation ToolBar on start Zobrazit navigační panel při startu - + Show Home button Zobrazit tlačítko Domů - + Show Back / Forward buttons Zobrazit tlačítka Zpět / Vpřed - + <b>Browser Window</b> <b>Okno prohlížeče</b> - + Tabs Panely - + Fonts Písma - + <b>Launching</b> <b>Spouštění</b> - - + + Note: You cannot delete active profile. Poznámka: Nemůžete smazat aktivní profil. - + Notifications Oznámení - + Show Add Tab button Zobrazit 'Přidat panel' tlačítko - + <b>Tabs behavior</b> <b>Chování panelů</b> - + Make tabs movable Přesouvat panely přetažením - + Hide close button if there is only one tab Skrýt zavírací tlačítko při jediném panelu - + Hide tabs when if there is only one tab Skrýt seznam panelů při jediném panelu - + Activate last tab when closing active tab Aktivovat poslední panel při zavírání aktuálního - + Block PopUp windows Blokovat vyskakovací okna - + Allow DNS Prefetch Povolit DNS Prefetch - + JavaScript can access clipboard Povolit JavaScriptu přístup do schránky - + Include links in focus chain Označovat odkazy tabulátorem - + Zoom text only Přibližovat pouze text - + Print element background Tisknout pozadí objektů - + Send Do Not Track header to servers Zasílat serverům Do Not Track hlavičku - + Appereance Vzhled - + After launch: Po spuštění: - + Check for updates on start Kontrolovat aktualizace při startu - + Themes Témata - + Advanced options Rozšířené možnosti - + Ask when closing multiple tabs Ptát se při zavírání více panelů - + Select all text by clicking in address bar Označit vše při kliknutí do adresního řádku - + Allow JavaScript Povolit JavaScript - + Enable XSS Auditing Povolit kontrolu XSS - + Mouse wheel scrolls Kolečko myši posune - + lines on page řádků na stránce - + Default zoom on pages: Základní přiblížení stránek: - + Local Storage Lokální úložiště - + Proxy Configuration Konfigurace Proxy - + <b>Font Families</b> <b>Typy písem</b> - + Standard Standardní - + Fixed Proporcionální - + Serif Serif - + Sans Serif Sans Serif - + Cursive Kurzíva - + Default Font Základní písmo - + Fixed Font Proporcionální písmo - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Velikosti písem</b> - + <b>Download Location</b> <b>Cíl stahování</b> - + Ask everytime for download location U každého souboru se dotázat kam ho uložit - + Use defined location: Uložit všechny soubory do: - - + + ... ... - + <b>Download Options</b> <b>Možnosti stahování</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Použít nativní systémový dialog pro výběr souboru (může ale také nemusí dělat problémy při stahování SSL zabezpečeného obsahu) - + Close download manager when downloading finishes Zavřít správce stahování po skončení stahování - + <b>Notifications</b> <b>Oznámení</b> - + Use OSD Notifications Používat OSD oznámení - + Use Native System Notifications (Linux only) Používat nativní systémové oznámení (pouze Linux) - + Do not use Notifications Nepoužívat oznámení - + Expiration timeout: Doba: - + seconds sekund - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Poznámka: </b> Můžete změnit pozici OSD oznámení na obrazovce jejím přetažením. - + <b>User CSS StyleSheet</b> <b>Uživatelský CSS styl</b> - + StyleSheet automatically loaded with all websites: Styl, automaticky načítán ke všem stránkám: - + Languages Jazyky - + <b>Preferred language for web sites</b> <b>Preferované jazyky pro webové stránky</b> - + System proxy configuration Systémové nastavení proxy - + Do not use proxy Nepoužívat proxy - + Manual configuration Manuální nastavení - + Web Configuration Nastavení webu - + HTTP HTTP - + SOCKS5 SOCKS5 - + Port: Port: - + Username: Jméno: - + Password: Heslo: - + Don't use on: Nepužívat na: - + Browsing Prohlížení - + Load images Nahrát obrázky - + Allow JAVA Povolit JAVA - + Allow Plugins (Flash plugin) Povolit pluginy (Flash plugin) - + Maximum pages in cache: Maximum stránek v cache: - + Password Manager Správce hesel - + <b>AutoFill options</b> <b>Možnosti doplňování</b> - + Allow saving passwords from sites Povolit ukládání hesel ze stránek - + Privacy Soukromí - + Filter Tracking Cookies Filtrovat sledovací cookies - + Allow storing of cookies Povolit přijímání cookies - + Delete cookies on close Vymazat cookies při zavření prohlížeče - + Match domain exactly Vyžadovat přesnou shodu domény - + <b>Warning:</b> Match domain exactly and Filter Tracking Cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Upozornění:</b> Možnosti vyžadovat přesnou shodu domény a filtrovat sledovací cookies mohou vést k odmítnutí některých cookies. Pokud máte problémy s cookies, zkuste nejdříve tyto možnosti zakázat! - + Cookies Manager Správce cookies - + Allow storing web icons Povolit ukládání ikon - + Allow saving history Povolit ukládání historie - + Delete history on close Vymazat historii při zavření prohlížeče - + Other Ostatní - + Select all text by double clicking in address bar Select all text by clicking at address bar Označit vše při dvojitém kliknutí do adresního řádku - + Add .co.uk domain by pressing ALT key Přidat .cz doménu stísknutím ALT klávesy - + SSL Manager Správce certifikátů - + Available translations: Dostupné překlady: - + In order to change language, you must restart browser. Ke změně jazyka je nutný restart prohlížeče. - + OSD Notification OSD Oznámení - + Drag it on the screen to place it where you want. Přetáhněte jej na obrazovce na místo, na kterém jej chcete mít. - - Native System Notification - - - - + Choose download location... Vyberte složku pro stahování... - + Choose stylesheet location... Vyberte umístění stylu... - + New Profile Nový profil - + Enter the new profile's name: Zvolte jméno nového profilu: - - + + Error! Chyba! - + This profile already exists! Tento profil již existuje! - + Cannot create profile directory! Nemohu vytvořit složku profilu! - + Confirmation Potvrzení - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Jste si jisti že chcete permanentně smazat profil "%1"? Tato akce nelze vrátit zpět! @@ -3583,68 +3586,68 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Obecné - + Media Média - + Security Zabezpečení - + Size: Velikost: - + Encoding: Kódování: - + Tag Tag - + Value Hodnota - + <b>Security information</b> <b>Informace o zabezpečení</b> - + Details Detaily - + Image Obrázek - + Image address Adresa obrázku - + <b>Preview</b> <b>Náhled</b> - + Site address: Site address Adresa stránky: - + Meta tags of site: Meta tagy na stránce: @@ -3654,63 +3657,63 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ <není součástí certifikátu> - + <b>Connection is Encrypted.</b> <b>Připojení je zabezpečené.</b> - + <b>Your connection to this page is secured with this certificate: </b> <b>Vaše připojení k serveru je zabezpečeno tímto certifikátem: </b> - + <b>Connection Not Encrypted.</b> <b>Připojení není zabezpečené.</b> - + <b>Your connection to this page is not secured!</b> <b>Vaše připojení k serveru není zabezpečené!</b> - + Copy Image Location Kopírovat adresu obrázku - + Copy Image Name Kopírovat jméno obrázku - + Save Image to Disk Uložit obrázek na disk - - + + Error! Chyba! - + This preview is not available! Tento náhled není k dispozici! - + Save image... Uložit obrázek... - + Cannot write to file! Nemohu zapisovat do souboru! - + Preview not available Náhled není k dispozici diff --git a/translations/de_DE.ts b/translations/de_DE.ts index 0a292e323..7146302ae 100644 --- a/translations/de_DE.ts +++ b/translations/de_DE.ts @@ -1106,6 +1106,14 @@ Sitzungscookie + + DesktopNotificationsFactory + + + Native System Notification + + + DownloadFileHelper @@ -1862,706 +1870,701 @@ Einstellungen - + General Allgemein - + 1 1 - + Downloads Downloads - + Plugins Plugins - + Open blank page Leere Seite öffnen - - + + Open homepage Startseite öffnen - + Restore session Sitzung wiederherstellen - + Homepage: Startseite: - + On new tab: Bei neuem Tab: - + Open blank tab Leeren Tab öffnen - + Open other page... Andere Seite öffnen... - + <b>Profiles</b> <b>Profile</b> - + Startup profile: Beim Start: - + Create New Neues Profil erstellen - + Delete Löschen - + <b>Launching</b> <b>Start</b> - + QupZilla QupZilla - + <b>General</b> <b>Allgemein</b> - + Show StatusBar on start Status-Leiste nach Programmstart anzeigen - + Show Bookmarks ToolBar on start Lesezeichen Werkzeug-Leiste nach Programmstart anzeigen - + Show Navigation ToolBar on start Navigations-Leiste nach Programmstart anzeigen - + <b>Navigation ToolBar</b> <b>Navigations-Leiste</b> - + Allow storing network cache on disk Cache-Speicherung auf lokaler Festplatte erlauben - + <b>Cookies</b> <b>Cookies</b> - + <b>Address Bar behaviour</b> <b>Adress-Leisten Verhalten</b> - + <b>Language</b> <b>Sprache</b> - + Show Home button Startseiten-Schaltfläche anzeigen - + Show Back / Forward buttons Zurück- / Vorwärts-Schaltflächen anzeigen - + <b>Browser Window</b> <b>Browser-Fenster</b> - + Tabs Tabs - - + + Use actual Aktuelle verwenden - + <b>Background<b/> <b>Hintergrund<b/> - + Use transparent background Transparenten Hintergrund benutzen - + <b>Tabs behavior</b> <b>Tab-Verhalten</b> - + Make tabs movable Verschieben von Tabs erlauben - + Hide close button if there is only one tab Beenden-Schaltfläche verstecken, wenn nur ein Tab aktiv - + Hide tabs when if there is only one tab Tabs verstecken, wenn nur einer aktiv - + Web Configuration Web Konfiguration - + Maximum Maximum - + 50 MB 50 MB - + Ask everytime for download location Jedes Mal nach Speicherort fragen - + Use defined location: Definierten Speicherort benutzen: - - + + ... ... - + Browsing Im Internet surfen - + Load images Grafiken laden - + Allow JAVA Java zulassen - + Allow Plugins (Flash plugin) Plugins erlauben (Flash plugin) - + Maximum pages in cache: Maximale Seitenanzahl im Cache: - + Password Manager Passwort Manager - + <b>AutoFill options</b> <b>Autovervollständigen</b> - + Allow saving passwords from sites Speichern von Passwörtern von Seiten erlauben - + Privacy Privatsphäre - + Fonts Schriftarten - - + + Note: You cannot delete active profile. Hinweis: Ein aktives Profil kann nicht gelöscht werden. - + Notifications Benachrichtigungen - + Show Add Tab button Tab hinzufügen Schaltfläche anzeigen - + Activate last tab when closing active tab Zuletzt besuchten Tab aktivieren, wenn aktiver Tab geschlossen wird - + Block PopUp windows PopUp Fenster blockieren - + Allow DNS Prefetch DNS Prefetch erlauben - + JavaScript can access clipboard JavaScript darf auf die Zwischenablage zugreifen - + Include links in focus chain Links in Focus Chain berücksichtigen - + Zoom text only Nur Text vergrößern - + Print element background Hintergrund drucken - + Send Do Not Track header to servers Do Not Track Kopfzeile zum Server senden - + Appereance Erscheinungsbild - + After launch: Nach dem Start: - + Check for updates on start Beim Start auf Aktualisierungen überprüfen - + Themes Themen - + Advanced options Erweiterte Optionen - + Ask when closing multiple tabs Fragen, wenn mehrere Tabs geschlossen werden - + Select all text by clicking in address bar - + Allow JavaScript JavaScript erlauben - + Enable XSS Auditing Prevents cross-site scripting Aktiviere XSS Prüfung - + Mouse wheel scrolls Mit dem Mausrad blättern - + lines on page Zeilen auf einer Seite - + Default zoom on pages: Standardvergrößerung: - + Local Storage Lokaler Speicherplatz - + Proxy Configuration Proxy Konfiguration - + <b>Font Families</b> <b>Schriftarten</b> - + Standard Standard - + Fixed Feste Breite - + Serif Serif - + Sans Serif Sans Serif - + Cursive Kursiv - + Default Font Standard-Schriftart - + Fixed Font Schriftart mit fester Breite - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Schriftgrößen</b> - + <b>Download Location</b> <b>Download Verzeichnis</b> - + <b>Download Options</b> <b>Download Optionen</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Nativen System-Dialog verwenden (kann Probleme beim Herunterladen von mittels SSL geschützten Inhalten verursachen) - + Close download manager when downloading finishes Download-Manager schließen, wenn das Herunterladen beendet ist - + Filter Tracking Cookies Seitenfremde Cookies verbieten - + Allow storing of cookies Das Speichern von Cookies erlauben - + Delete cookies on close Cookies beim Beenden löschen - + Match domain exactly Genaue Übereinstimmung der Domain - + <b>Warning:</b> Match domain exactly and Filter Tracking Cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Warnung:</b> Das Einschalten der Optionen "Genaue Übereinstimmung" und "Seitenfremde Inhalte" kann dazu führen, dass Cookies von Webseiten zurückgewiesen werden. Tritt dieses Problem auf, deaktivieren Sie bitte zunächst diese Optionen! - + Cookies Manager Cookie Manager - + <b>Notifications</b> <b>Benachrichtigungen</b> - + Use OSD Notifications OSD verwenden - + Use Native System Notifications (Linux only) System-Benachrichtigungen verwenden (nur Linux) - + Do not use Notifications Keine Benachrichtigungen verwenden - + Expiration timeout: Zeit: - + seconds Sekunden - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Hinweis: </b>Sie können die Position des OSD ändern, in dem Sie es auf dem Bildschirm mit der Maus verschieben. - + <b>User CSS StyleSheet</b> <b>Benutzerdefiniertes CSS StyleSheet</b> - + StyleSheet automatically loaded with all websites: StyleSheet automatisch mit allen Webseiten laden: - + Languages Sprachen - + <b>Preferred language for web sites</b> <b>Bevorzugte Sprache für Webseiten</b> - + System proxy configuration Proxy-Einstellungen des Systems verwenden - + Do not use proxy Keinen Proxy benutzen - + Manual configuration Manuelle Konfiguration - + HTTP HTTP - + SOCKS5 SOCKS5 - + Port: Port: - + Username: Nutzername: - + Password: Passwort: - + Don't use on: Ausnahme: - + Allow storing web icons Speichern von Web-Symbolen erlauben - + Allow saving history Speichern des Verlaufs erlauben - + Delete history on close Verlauf beim Beenden löschen - + Other Andere - + Select all text by double clicking in address bar Select all text by clicking at address bar Ganzen Text mit einem Doppelklick in der Adress-Leiste auswählen - + Add .co.uk domain by pressing ALT key Zum Hinzufügen der .co.uk Domäne drücken Sie bitte die ALT-Taste - + SSL Manager SSL Manager - + Available translations: Verfügbare Übersetzungen: - + In order to change language, you must restart browser. Um die Sprache zu ändern, starten Sie bitte QupZilla neu. - + OSD Notification OSD Benachrichtigung - + Drag it on the screen to place it where you want. Veschieben Sie es auf dem Bildschirm nach Belieben. - - Native System Notification - - - - + Choose download location... Download-Verzeichnis auswählen... - + Choose stylesheet location... Stylesheet-Verzeichnis wählen... - + New Profile Neues Profil - + Enter the new profile's name: Bitte geben Sie den Namen des neuen Profils ein: - - + + Error! Fehler! - + This profile already exists! Dieses Profil existiert bereits! - + Cannot create profile directory! Verzeichnis kann nicht erstellt werden! - + Confirmation Bestätigung - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Möchten Sie wirklich das Profil "%1" dauerhaft entfernen? Diese Aktion kann nicht rückgängig gemacht werden! @@ -3582,67 +3585,67 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Allgemein - + Media Medien - + Security Sicherheit - + Size: Größe: - + Encoding: Kodierung: - + Tag Tag - + Value Wert - + <b>Security information</b> <b>Sicherheitsinformation</b> - + Details Details - + Image Grafik - + Image address Grafikadresse - + <b>Preview</b> <b>Vorschau</b> - + Site address: Seitenadresse: - + Meta tags of site: Meta Tags dieser Seite: @@ -3652,63 +3655,63 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest <Im Zertifkat nicht vorhanden> - + <b>Connection is Encrypted.</b> <b>Verschlüsselte Verbindung.</b> - + <b>Your connection to this page is secured with this certificate: </b> <b>Diese Verbindung ist mit diesem Zertifikat verschlüsselt: </b> - + <b>Connection Not Encrypted.</b> <b>Unverschlüsselte Verbindung.</b> - + <b>Your connection to this page is not secured!</b> <b>Diese Verbindung ist nicht verschlüsselt!</b> - + Copy Image Location Grafikadresse kopieren - + Copy Image Name Grafik kopieren - + Save Image to Disk Grafik speichern - - + + Error! Fehler! - + This preview is not available! Diese Vorschau ist nicht verfügbar! - + Save image... Grafik speichern... - + Cannot write to file! Datei kann nicht gespeichert werden! - + Preview not available Vorschau nicht verfügbar diff --git a/translations/es.ts b/translations/es.ts index eeec80048..0792df9f0 100644 --- a/translations/es.ts +++ b/translations/es.ts @@ -1106,6 +1106,14 @@ Cookie de sesión + + DesktopNotificationsFactory + + + Native System Notification + + + DownloadFileHelper @@ -1862,704 +1870,699 @@ Preferencias - + General General - + Appereance Apariencia - + Tabs Pestañas - + Browsing Navegación - + Fonts Fuentes - + Downloads Descargas - + Password Manager Gestor de contraseñas - + Privacy Privacidad - + Notifications Notificaciones - + Plugins Plugins - + Other Otros - + <b>General</b> <b>General</b> - + QupZilla QupZilla - + <b>Launching</b> <b>Inicio</b> - + After launch: Cuando se inicie: - + Open blank page Abrir una página en blanco - - + + Open homepage Abrir página de inicio - + Restore session Restaurar sesión - + Homepage: Página de inicio: - - + + Use actual Usar actual - + On new tab: Para nueva pestaña: - + Open blank tab Abrir una página en blanco - + Open other page... Abrir otra página... - + <b>Profiles</b> <b>Perfiles</b> - + Startup profile: Perfil al inicio: - + Create New Crear nuevo - + Delete Eliminar - - + + Note: You cannot delete active profile. Nota: no puede eliminar el perfil activo. - + Check for updates on start Comprobar actualizaciones al inicio - + Themes Temas - + Advanced options Opciones avanzadas - + <b>Browser Window</b> <b>Ventana del navegador</b> - + Show StatusBar on start Mostrar barra de estado al inicio - + Show Bookmarks ToolBar on start Mostrar barra de herramientas de marcadores al inicio - + Show Navigation ToolBar on start Mostrar barra de herramientas de navegación al inicio - + <b>Navigation ToolBar</b> <b>Barra de herramientas de navigación</b> - + Show Home button Mostrar botón de página de inicio - + Show Back / Forward buttons Mostrar botones Anterior / Siguiente - + Show Add Tab button Mostrar botón de añadir pestaña - + <b>Background<b/> <b>Fondo<b/> - + Use transparent background Usar fondo transparente - + <b>Tabs behavior</b> <b>Comportamiento de pestañas</b> - + Make tabs movable Permitir mover pestañas - + Hide close button if there is only one tab Ocultar el botón de cerrar cuando sólo haya una pestaña - + Hide tabs when if there is only one tab Ocultar pestañas cuando sólo haya una pestaña - + <b>Address Bar behaviour</b> <b>Comportamiento de la barra de direcciones</b> - + Select all text by double clicking in address bar Seleccionar todo el texto haciendo doble click en la barra de direcciones - + Add .co.uk domain by pressing ALT key Añadir dominio .co.uk pulsando la tecla ALT - + Activate last tab when closing active tab Activar la última pestaña al cerrar la pestaña activa - + Ask when closing multiple tabs Preguntar al cerrar múltiples pestañas - + Web Configuration Configuración web - + Load images Cargar imágenes - + Allow JAVA Permitir JAVA - + Allow JavaScript Permitir JavaScript - + Allow Plugins (Flash plugin) Permitir plugins (Flash plugin) - + Block PopUp windows Bloquear ventanas emergentes - + Allow DNS Prefetch Permitir DNS Prefetch - + JavaScript can access clipboard JavaScript puede acceder al portapapeles - + Send Do Not Track header to servers Decir a los sitios web que no quiero ser rastreado - + Zoom text only Ampliar sólo el texto - + Include links in focus chain Incluir enlaces en la cadena de foco - + Print element background Imprimir fondo del elemento - + Select all text by clicking in address bar - + Enable XSS Auditing - + Mouse wheel scrolls La rueda del ratón desplaza - + lines on page líneas en la página - + Default zoom on pages: Ampliación predeterminada en las páginas: - + Local Storage Almacenamiento local - + Maximum pages in cache: Número máximo de páginas en caché: - + 1 1 - + Allow storing network cache on disk Almacenar caché de la red en el disco - + Maximum Máximo - + 50 MB 50 MB - + Allow storing web icons Almacenar iconos de sitios web - + Allow saving history Guardar el historial - + Delete history on close Eliminar el historial al cerrar - + Proxy Configuration Configuración proxy - + HTTP HTTP - + SOCKS5 SOCKS5 - + Port: Puerto: - + Username: Nombre de usuario: - + Password: Contraseña: - + Don't use on: No utilizar en: - + Manual configuration Configuración manual - + System proxy configuration Configuración proxy del sistema - + Do not use proxy No utilizar proxy - + <b>Font Families</b> <b>Familias de fuentes</b> - + Standard Standard - + Fixed Fijo - + Serif Serif - + Sans Serif Sans Serif - + Cursive Cursiva - + Default Font Fuente predeterminada - + Fixed Font Fuente fija - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Tamaño de las fuentes</b> - + <b>Download Location</b> <b>Ubicación de la descarga</b> - + Ask everytime for download location Preguntar siempre dónde descargar los archivos - + Use defined location: Utilizar una ubicación predefinida: - - + + ... ... - + <b>Download Options</b> <b>Opciones de descarga</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Utilizar diálogo nativo del sistema de archivos (podría causar problemas al descargar contenido seguro SSL) - + Close download manager when downloading finishes Cerrar el gestor de descargas cuando las descargas finalicen - + <b>AutoFill options</b> <b>Opciones de autocompletado</b> - + Allow saving passwords from sites Permitir guardar contraseñas de los sitios - + <b>Cookies</b> <b>Cookies</b> - + Filter Tracking Cookies Filtrar cookies de rastreo - + Allow storing of cookies Permitir almacenar cookies - + Delete cookies on close Eliminar cookies al cerrar - + Match domain exactly Coincidir con el dominio exacto - + <b>Warning:</b> Match domain exactly and Filter Tracking Cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Aviso:</b> Las opciones Coincidir con el dominio exacto y Filtrar cookies de rastreo pueden ocasionar que se denieguen algunas cookies de los sitios. Si tiene problemas con las cookies, intente deshabilitar estas opciones primero! - + Cookies Manager Gestor de cookies - + SSL Manager Gestor de SSL - + <b>Notifications</b> <b>Notificaciones</b> - + Use OSD Notifications Utilizar notificaciones OSD - + Use Native System Notifications (Linux only) Utilizar sistema de notificaciones nativo (sólo Linux) - + Do not use Notifications No utilizar notificaciones - + Expiration timeout: Duración: - + seconds segundos - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Nota: </b>Puede cambiar la posición de la notificación OSD arrastrándola por la pantalla. - + <b>Language</b> <b>Idioma</b> - + Available translations: Traducciones disponibles: - + In order to change language, you must restart browser. Para aplicar el cambio de idioma, debe reiniciar el navegador. - + <b>User CSS StyleSheet</b> <b>Hoja de estilos CSS del usuario</b> - + StyleSheet automatically loaded with all websites: Hoja de estilos cargada automáticamente en todos los sitios web: - + Languages Idiomas - + <b>Preferred language for web sites</b> <b>Idioma preferido para mostrar las páginas web</b> - + OSD Notification Notificación OSD - + Drag it on the screen to place it where you want. Arrástrela por la pantalla para situarla donde quiera. - - Native System Notification - - - - + Choose download location... Seleccione la ubicación de la descarga... - + Choose stylesheet location... Seleccione la ubicación de la hoja de estilos... - + New Profile Nuevo perfil - + Enter the new profile's name: Introduzca el nombre del nuevo perfil: - - + + Error! ¡Error! - + This profile already exists! ¡Este perfil ya existe! - + Cannot create profile directory! ¡No se puede crear el directorio del perfil! - + Confirmation Confirmación - + Are you sure to permanently delete "%1" profile? This action cannot be undone! ¿Está seguro de eliminar permanentemente el perfil "%1"? ¡Esta acción no puede deshacerse! @@ -3580,67 +3583,67 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar el General - + Media Media - + Security Seguridad - + Size: Tamaño: - + Site address: Dirección del sitio: - + Encoding: Codificación: - + Meta tags of site: Meta etiquetas del sitio: - + Tag Etiqueta - + Value Valor - + <b>Security information</b> <b>Información de seguridad</b> - + Details Detalles - + Image Imágen - + Image address Dirección de la imágen - + <b>Preview</b> <b>Vista previa</b> @@ -3650,63 +3653,63 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar el <no definida en el certificado> - + <b>Connection is Encrypted.</b> <b>La conexión está encriptada.</b> - + <b>Your connection to this page is secured with this certificate: </b> <b>La conexión a esta página está segura con este cerficado: </b> - + <b>Connection Not Encrypted.</b> <b>Conexión no encriptada.</b> - + <b>Your connection to this page is not secured!</b> <b>¡La conexión a esta página no es segura!</b> - + Copy Image Location Copiar la ubicación de la imágen - + Copy Image Name Copiar el nombre de la imágen - + Save Image to Disk Guardar imágen en el disco - - + + Error! ¡Error! - + This preview is not available! ¡La vista previa no está disponible! - + Save image... Guardar imágen... - + Cannot write to file! ¡No se puede escribir el archivo! - + Preview not available Vista previa no disponible diff --git a/translations/it_IT.ts b/translations/it_IT.ts index 3019e8d15..364395f93 100644 --- a/translations/it_IT.ts +++ b/translations/it_IT.ts @@ -1106,6 +1106,14 @@ Cookie della sessione + + DesktopNotificationsFactory + + + Native System Notification + + + DownloadFileHelper @@ -1864,704 +1872,699 @@ Preferenze - + General Generale - + Appereance Aspetto - + Tabs Schede - + Browsing Navigazione - + Fonts Caratteri - + Downloads Scaricamenti - + Password Manager Gestore password - + Privacy Privacy - + Notifications Notifiche - + Plugins Plugins - + Other Altro - + <b>General</b> <b>Generale</b> - + QupZilla QupZilla - + <b>Launching</b> <b>Avvio</b> - + After launch: Dopo l'avvio: - + Open blank page Apri pagina vuota - - + + Open homepage Apri pagina iniziale - + Restore session Ripristina sessione - + Homepage: Pagina Iniziale: - - + + Use actual Usa attuale - + On new tab: In una nuova scheda: - + Open blank tab Apri scheda vuota - + Open other page... Apri altra pagina... - + <b>Profiles</b> <b>Profili</b> - + Startup profile: Profilo d'avvio: - + Create New Crea Nuovo - + Delete Cancella - - + + Note: You cannot delete active profile. Nota: Non puoi cancellare un profilo attivo. - + Check for updates on start Controlla aggiornamenti all'avvio - + Themes Temi - + Advanced options Opzioni avanzate - + <b>Browser Window</b> <b>Finestra del Browser</b> - + Show StatusBar on start Visualizza la Barra di Stato all'avvio - + Show Bookmarks ToolBar on start Visualizza Barra dei Segnalibri all'avvio - + Show Navigation ToolBar on start Visualizza Barra di Navigazione all'avvio - + <b>Navigation ToolBar</b> <b>Barra di Navigazione</b> - + Show Home button Mostra pulsante Home - + Show Back / Forward buttons Mostra pulsanti Indietro / Avanti - + Show Add Tab button Mostra pulsante Aggiungi Scheda - + <b>Background<b/> <b>Sfondo</b> - + Use transparent background Usa sfondo trasparente - + <b>Tabs behavior</b> <b>Comportamento Scheda</b> - + Make tabs movable Rendi le schede mobili - + Hide close button if there is only one tab Nascondi il pulsante di chiusura se c'è una sola scheda - + Hide tabs when if there is only one tab Nascondi schede se c'è una sola scheda - + <b>Address Bar behaviour</b> <b>Comportamento Barra Indirizzi</b> - + Select all text by double clicking in address bar Seleziona l'intero testo nella barra degli indirizzi con doppio click - + Add .co.uk domain by pressing ALT key Aggiungi .it al dominio premendo il tasto ALT - + Activate last tab when closing active tab Attiva l'ultima scheda quando chiudi la scheda attiva - + Ask when closing multiple tabs Chiedi quando chiudi più schede - + Web Configuration Configurazione Web - + Load images Carica immagini - + Allow JAVA Abilita JAVA - + Allow JavaScript Abilita JavaScript - + Allow Plugins (Flash plugin) Abilita Plugins (Flash plugin) - + Block PopUp windows Blocca finestre PopUp - + Allow DNS Prefetch Consenti Prefetch DNS - + JavaScript can access clipboard JavaScript può accedere agli appunti - + Send Do Not Track header to servers Non inviare traccia di intestazione ai server - + Zoom text only Ingrandisci solo il testo - + Include links in focus chain Includi link in una selezione concatenata - + Print element background Mostra elementi di sfondo - + Select all text by clicking in address bar - + Enable XSS Auditing - + Mouse wheel scrolls La rotella del mouse scorre - + lines on page linee della pagina - + Default zoom on pages: Ingrandimento predefinito delle pagine: - + Local Storage Archiviazione Locale - + Maximum pages in cache: Limite pagine nella cache: - + 1 1 - + Allow storing network cache on disk Abilita memorizzazione cache di rete sul disco - + Maximum Massimo - + 50 MB 50 MB - + Allow storing web icons Abilita il salvataggio delle icone web - + Allow saving history Abilita salvataggio della cronologia - + Delete history on close Cancella cronologia alla chiusura - + Proxy Configuration Configurazione Proxy - + HTTP HTTP - + SOCKS5 SOCKS5 - + Port: Porta: - + Username: Nome Utente: - + Password: Password: - + Don't use on: Non utilizzare su: - + Manual configuration Configurazione manuale - + System proxy configuration Configurazione proxy di sistema - + Do not use proxy Non usare proxy - + <b>Font Families</b> <b>Famiglie di Font</b> - + Standard Standard - + Fixed Fixed - + Serif Serif - + Sans Serif Sans Serif - + Cursive Cursive - + Default Font Default Font - + Fixed Font Fixed Font - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Dimensioni Carattere</b> - + <b>Download Location</b> <b>Percorso file Scaricati</b> - + Ask everytime for download location Chiedi sempre dove salvare - + Use defined location: Usa posizione definita: - - + + ... ... - + <b>Download Options</b> <b>Opzioni Scaricamento</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Usa file di dialogo nativo di sistema (può o non può causare problemi con il download di contenuti protetti SSL) - + Close download manager when downloading finishes Chiudi il gestore dei download quando termina lo scaricamento - + <b>AutoFill options</b> <b>Opzioni AutoCompletamento</b> - + Allow saving passwords from sites Consenti salvataggio password dai siti - + <b>Cookies</b> <b>Cookie</b> - + Filter Tracking Cookies Filtra Rilevamento Cookie - + Allow storing of cookies Abilita la memorizzazione dei cookie - + Delete cookies on close Cancella cookie alla chiusura - + Match domain exactly Associa il dominio esatto - + <b>Warning:</b> Match domain exactly and Filter Tracking Cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Pericolo</b> Associare il dominio esatto e opzioni filtro Monitoraggio Cookie può portare a rifiutare alcuni cookie dai siti. Se avete problemi con i cookie, provare prima a disabilitare questa opzione! - + Cookies Manager Gestore Cookie - + SSL Manager Gestore SSL - + <b>Notifications</b> <b>Notifiche</b> - + Use OSD Notifications Usa Notifiche OSD - + Use Native System Notifications (Linux only) Utilizza le notifiche native di sistema (solo Linux) - + Do not use Notifications Non usare Notifiche - + Expiration timeout: Scadenza timeout: - + seconds secondi - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Nota:</b>È possibile modificare la posizione di notifica OSD trascinandola sullo schermo. - + <b>Language</b> <b>Lingua</b> - + Available translations: Lingue disponibili: - + In order to change language, you must restart browser. Per cambiare lingua, è necessario riavviare il browser. - + <b>User CSS StyleSheet</b> <b>Foglio di Stile CSS Personalizzati</b> - + StyleSheet automatically loaded with all websites: Foglio di Stile caricato automaticamente con tutti i siti web: - + Languages Lingue - + <b>Preferred language for web sites</b> <b>Lingua preferita per i siti web</b> - + OSD Notification Notifica OSD - + Drag it on the screen to place it where you want. Trascina sullo schermo per posizionarlo dove vuoi. - - Native System Notification - - - - + Choose download location... Scegli percorso dello scaricamento... - + Choose stylesheet location... Scegli la posizione del foglio di stile... - + New Profile Nuovo Profilo - + Enter the new profile's name: Inserisci il nuovo nome profilo: - - + + Error! Errore! - + This profile already exists! Questo profilo esiste già! - + Cannot create profile directory! Impossibile creare la directory del profilo! - + Confirmation Conferma - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Sei sicuro di voler cancellare definitivamente "%1" il profilo? Questa azione non può essere annullata! @@ -3583,67 +3586,67 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Generale - + Media Media - + Security Sicurezza - + Size: Dimensione: - + Site address: Indirizzo sito: - + Encoding: Codifica: - + Meta tags of site: Meta tag del sito: - + Tag Tag - + Value Valore - + <b>Security information</b> <b>Informazioni di sicurezza</b> - + Details Dettagli - + Image Immagine - + Image address Indirizzo immagine - + <b>Preview</b> <b>Anteprima</b> @@ -3653,63 +3656,63 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari <non impostato nel certificato> - + <b>Connection is Encrypted.</b> <b>Connessione Protetta</b> - + <b>Your connection to this page is secured with this certificate: </b> <b>La connessione a questa pagina è protetta con questo certificato: </b> - + <b>Connection Not Encrypted.</b> <b>Connessione Non Protetta.</b> - + <b>Your connection to this page is not secured!</b> <b>La connessione a questa pagina non è sicura!</b> - + Copy Image Location Copia Immagine Locale - + Copy Image Name Copia Nome Immagine - + Save Image to Disk Salva Immagine sul Disco - - + + Error! Errore! - + This preview is not available! Questa anteprima non è disponibile! - + Save image... Salva immagine... - + Cannot write to file! Impossibile scrivere sul file! - + Preview not available Anteprima non disponibile diff --git a/translations/nl_NL.ts b/translations/nl_NL.ts index 7bf639963..ebba89eeb 100644 --- a/translations/nl_NL.ts +++ b/translations/nl_NL.ts @@ -1107,6 +1107,14 @@ Sessie-cookie + + DesktopNotificationsFactory + + + Native System Notification + + + DownloadFileHelper @@ -1863,705 +1871,700 @@ werd niet gevonden! Instellingen - + General Algemeen - + 1 1 - + Downloads Downloads - + Plugins Plugins - + Open blank page Open lege pagina - - + + Open homepage Open startpagina - + Restore session Herstel sessie - + Homepage: Startpagina: - + On new tab: Op nieuw tabblad: - + Open blank tab Open leeg tabblad - + Open other page... Open andere pagina... - - + + Use actual Gebruik huidige pagina - + <b>Navigation ToolBar</b> <b>Navigatie-werkbalk</b> - + <b>Background<b/> <b>Achtergrond</b> - + Use transparent background Gebruik transparante achtergrond - + Maximum Maximum - + 50 MB 50 MB - + QupZilla QupZilla - + Allow storing network cache on disk Sta toe dat netwerkcache op schijf wordt opgeslagen - + <b>Cookies</b> <b>Cookies</b> - + <b>Address Bar behaviour</b> <b>Gedrag van Adresbalk</b> - + <b>Language</b> <b>Taal</b> - + <b>General</b> <b>Algemeen</b> - + Startup profile: Opstartprofiel: - + Create New Maak nieuw profiel aan - + Delete Verwijder - + Show StatusBar on start Toon Statusbalk bij opstarten - + <b>Profiles</b> <b>Profielen</b> - + Show Bookmarks ToolBar on start Toon Bladwijzerwerkbalk bij opstarten - + Show Navigation ToolBar on start Toon Navigatie-werkbalk bij opstarten - + Show Home button Toon startpagina-knop - + Show Back / Forward buttons Toon Terug / Vooruit-knoppen - + <b>Browser Window</b> <b>Browser-venster</b> - + Tabs Tabbladen - + Fonts Lettertypen - + <b>Launching</b> <b>Opstarten</b> - - + + Note: You cannot delete active profile. Noot: U kunt het actieve profiel niet verwijderen. - + Notifications Meldingen - + Show Add Tab button Toon Voeg tabblad toe-knop - + <b>Tabs behavior</b> <b>CTabblad-gedrag</b> - + Make tabs movable Maak tabbladen verplaatsbaar - + Hide close button if there is only one tab Verberg sluitknop als er maar 1 tabblad is - + Hide tabs when if there is only one tab Verberg tabbladen als er maar 1 tabblad is - + Activate last tab when closing active tab Activeer laatste tabblad na sluiten van actieve tab - + Block PopUp windows Blokkeer Popup-vensters - + Allow DNS Prefetch Sta DNS-prefetch toe - + JavaScript can access clipboard JavaScript kan klembord raadplegen - + Include links in focus chain Sluit links in in focus-ketting - + Zoom text only Zoom alleen tekst - + Print element background Print element-achtergrond - + Send Do Not Track header to servers Stuur Track Me Niet-header naar servers - + Appereance Uiterlijk - + After launch: Na opstarten: - + Check for updates on start Controleer op updates bij opstarten - + Themes Thema's - + Advanced options Geavanceerde instellingen - + Ask when closing multiple tabs Vraag bij sluiten van meerdere tabbladen - + Select all text by clicking in address bar - + Allow JavaScript Sta JavaScript toe - + Enable XSS Auditing - + Mouse wheel scrolls Muiswiel scrollt - + lines on page regels op pagina - + Default zoom on pages: Standaardzoom op pagina's: - + Local Storage Lokale opslag - + Proxy Configuration Proxy-instellingen - + <b>Font Families</b> <b>Lettertype-families</b> - + Standard Standaard - + Fixed Vast - + Serif Serif - + Sans Serif Sans Serif - + Cursive Cursief - + Default Font Standaardlettertype - + Fixed Font Vaste breedte-lettertype - + Fantasy Fantasie - + <b>Font Sizes</b> <b>Lettertype-groottes</b> - + <b>Download Location</b> <b>Downloadlocatie</b> - + Ask everytime for download location Vraag elke keer om downloadlocatie - + Use defined location: Gebruik de volgende locatie: - - + + ... ... - + <b>Download Options</b> <b>Download-instellingen</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Gebruik systeem bestands-dialoogvenster (kan wellicht problemen veroorzaken met het downloaden van SSL-beveiligde inhoud) - + Close download manager when downloading finishes Sluit downloadbeheerder wanneer downloaden voltooid is - + <b>Notifications</b> <b>Meldingen</b> - + Use OSD Notifications Gebruik OSD-meldingen - + Use Native System Notifications (Linux only) Gebruik systeemmeldingen (geldt alleen voor Linux) - + Do not use Notifications Gebruik geen meldingen - + Expiration timeout: Vervaltijd-timeout: - + seconds seconden - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Noot: </b> U kunt de positie van OSD-meldingen veranderen door te verslepen op het scherm. - + <b>User CSS StyleSheet</b> <b>Gebruikers CSS-stylesheet</b> - + StyleSheet automatically loaded with all websites: Stylesheet welke automatisch geladen wordt met alle websites: - + Languages Talen - + <b>Preferred language for web sites</b> <b>Voorkeurstalen voor websites</b> - + System proxy configuration Systeemproxy-instellingen - + Do not use proxy Gebruik geen proxy - + Manual configuration Handmatige instellingen - + Web Configuration Web-instellingen - + HTTP HTTP - + SOCKS5 SOCKS5 - + Port: Poort: - + Username: Gebruikersnaam: - + Password: Wachtwoord: - + Don't use on: Gebruik niet op: - + Browsing Navigeren - + Load images Laad afbeeldingen - + Allow JAVA Sta JAVA toe - + Allow Plugins (Flash plugin) Sta plugins toe (Flash-plugin) - + Maximum pages in cache: Maximum pagina's in cache: - + Password Manager Wachtwoordbeheerder - + <b>AutoFill options</b> <b>AutoAanvullen-instellingen</b> - + Allow saving passwords from sites Sta opslaan van wachtwoorden van sites toe - + Privacy Privacy - + Filter Tracking Cookies Filter opsporingscookies - + Allow storing of cookies Sta opslag van cookies toe - + Delete cookies on close Verwijder cookies bij afsluiten - + Match domain exactly Exact overeenkomen domein - + <b>Warning:</b> Match domain exactly and Filter Tracking Cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Waarschuwing:</b> Exact overeenkomen domein en Filter opsporingscookies-instellingen kunnen leiden tot het weigeren van sommige cookies van sites. Indien u problemen hebt met cookies, probeer dan eerst deze instellingen uit te schakelen! - + Cookies Manager Cookies-beheerder - + Allow storing web icons Sta opslag van web-pictogrammen toe - + Allow saving history Sta opslag van geschiedenis toe - + Delete history on close Verwijder geschiedenis bij afsluiten - + Other Overig - + Select all text by double clicking in address bar Select all text by clicking at address bar Selecteer alle tekst door te dubbelklikken in de adresbalk - + Add .co.uk domain by pressing ALT key Voeg .nl-domein toe door de ALT-toets in te drukken - + SSL Manager SSL-beheerder - + Available translations: Beschikbare vertalingen: - + In order to change language, you must restart browser. Om de gekozen taal toe te passen, moet u de browser herstarten. - + OSD Notification OSD-melding - + Drag it on the screen to place it where you want. Versleep het op het scherm en plaats het waar U wilt. - - Native System Notification - - - - + Choose download location... Kies downloadlocatie... - + Choose stylesheet location... Kies stylesheet-locatie... - + New Profile Nieuw profiel - + Enter the new profile's name: Voer de nieuw profielnaam in: - - + + Error! Fout! - + This profile already exists! Dit profiel bestaat reeds! - + Cannot create profile directory! Kan profielmap niet aanmaken! - + Confirmation Bevestiging - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Weet u zeker dat u profiel "%1"wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt! @@ -3583,68 +3586,68 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Algemeen - + Media Media - + Security Beveiliging - + Size: Grootte: - + Encoding: Tekenset: - + Tag Tag - + Value Waarde - + <b>Security information</b> <b>Beveiligingsinformatie</b> - + Details Details - + Image Afbeelding - + Image address Afbeeldingsadres - + <b>Preview</b> <b>Voorbeeld</b> - + Site address: Site address Website-adres: - + Meta tags of site: Metatags van website: @@ -3654,63 +3657,63 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te <niet aangegeven in certificaat> - + <b>Connection is Encrypted.</b> <b>Verbinding is beveiligd.</b> - + <b>Your connection to this page is secured with this certificate: </b> <b>Uw verbinding met deze pagina is beveiligd met dit certifitcaat: </b> - + <b>Connection Not Encrypted.</b> <b>Verbinding niet beveiligd.</b> - + <b>Your connection to this page is not secured!</b> <b>Uw verbinding met deze pagina is niet beveiligd!</b> - + Copy Image Location Kopieer afbeeldingslocatie - + Copy Image Name Kopieer afbeeldingsnaam - + Save Image to Disk Sla afbeelding op op schijf - - + + Error! Fout! - + This preview is not available! Dit voorbeeld is niet beschikbaar! - + Save image... Sla afbeelding op... - + Cannot write to file! Kan niet schrijven naar bestand! - + Preview not available Voorbeeld niet beschikbaar diff --git a/translations/sk_SK.ts b/translations/sk_SK.ts index 7e98e3b6a..b14e94779 100644 --- a/translations/sk_SK.ts +++ b/translations/sk_SK.ts @@ -1106,6 +1106,14 @@ Cookie relácie + + DesktopNotificationsFactory + + + Native System Notification + + + DownloadFileHelper @@ -1862,705 +1870,700 @@ Nastavenia - + General Všeobecné - + 1 1 - + Downloads Sťahovanie - + Plugins Pluginy - + After launch: Po spustení: - + Open blank page Otvoriť prázdnu stránku - - + + Open homepage Otvoriť domovskú stránku - + Restore session Obnoviť reláciu - + Homepage: Domovská stránka: - + On new tab: Na novej karte: - + Open blank tab Otvoriť prázdnu stránku - + Open other page... Otvoriť inú stránku... - + <b>Profiles</b> <b>Profily</b> - + Startup profile: Štartový profil: - + Create New Vytvoriť nový - + Delete Odstrániť - + <b>Launching</b> <b>Spúšťanie</b> - + QupZilla QupZilla - + <b>General</b> <b>Všeobecné</b> - + Show StatusBar on start Zobraziť stavový riadok pri štarte - + Show Bookmarks ToolBar on start Zobraziť panel záložiek pri štarte - + Show Navigation ToolBar on start Zobraziť navigačný panel pri štarte - + <b>Navigation ToolBar</b> <b>Navigačný panel</b> - + Allow storing network cache on disk Povoliť ukladanie sieťovej cache na disk - + <b>Cookies</b> <b>Cookies</b> - + <b>Address Bar behaviour</b> <b>Správanie panelu adresy</b> - + <b>Language</b> <b>Jazyk</b> - + Show Home button Zobraziť tlačidlo Domov - + Show Back / Forward buttons Zobraziť tlačidlá Späť / Dopredu - + <b>Browser Window</b> <b>Okno prehliadača</b> - + Tabs Karty - - + + Use actual Použiť aktuálnu - + <b>Background<b/> <b>Pozadie<b/> - + Use transparent background Použiť priesvitné pozadie - + <b>Tabs behavior</b> <b>Správanie kariet</b> - + Make tabs movable Povoliť presúvanie kariet - + Hide close button if there is only one tab Skryť zatváracie tlačidlo, ak je len jedna karta - + Hide tabs when if there is only one tab Skryť karty, ak je len jedna karta - + Web Configuration Konfigurácia webu - + Maximum Maximálne - + 50 MB 50 MB - + Ask everytime for download location Vždy sa opýtať kam súbor uložiť - + Use defined location: Uložiť všetky súbory do: - - + + ... ... - + Browsing Prehliadanie - + Load images Načítať obrázky - + Allow JAVA Povoliť JAVU - + Allow JavaScript Povoliť JavaScript - + Allow Plugins (Flash plugin) Povoliť pluginy (Flash plugin) - + Maximum pages in cache: Maximum stránok v cache: - + Password Manager Správca hesiel - + <b>AutoFill options</b> <b>Možnosti autodoplňovania</b> - + Allow saving passwords from sites Povoliť ukladanie hesiel zo stránok - + Privacy Súkromie - + Fonts Písma - - + + Note: You cannot delete active profile. Poznámka: Nemôžete vymazať aktívny profil. - + Notifications Oznámenia - + Show Add Tab button Zobraziť tlačidlo Pridať kartu - + Activate last tab when closing active tab Aktivovať naposledy pozeranú kartu po zavretí aktuálnej - + Block PopUp windows Blokovať vyskakovacie okná - + Allow DNS Prefetch Povoliť DNS Prefetch - + JavaScript can access clipboard Povoliť JavaScriptu prístup do schránky - + Include links in focus chain Označovať odkazy tabulátorom - + Zoom text only Približovať len text - + Print element background Tlačiť pozadie prvkov - + Send Do Not Track header to servers Zasielať servrom Do Not Track hlavičku - + Appereance Vzhľad - + Check for updates on start Kontrolovať aktualizácie pri štarte - + Themes Témy - + Advanced options Pokročilé nastavenia - + Ask when closing multiple tabs Pýtať sa pri zatváraní viacerých kariet - + Select all text by clicking in address bar Označiť celý text kliknutím do adresného riadka - + Enable XSS Auditing Povoliť kontrolu XSS - + Mouse wheel scrolls Koliesko myši posunie - + lines on page riadky na stránke - + Default zoom on pages: Základné priblíženie stránok: - + Local Storage Lokálne úložisko - + Proxy Configuration Konfigurácia proxy - + <b>Font Families</b> <b>Typy písiem</b> - + Standard Štandardné - + Fixed Neproporcionálne - + Serif Serif - + Sans Serif Sans Serif - + Cursive Kurzíva - + Default Font Štandardné písmo - + Fixed Font Neproporcionálne písmo - + Fantasy Fantasy - + <b>Font Sizes</b> <b>Veľkosti písma</b> - + <b>Download Location</b> <b>Umiestnenie sťahovania</b> - + <b>Download Options</b> <b>Možnosti sťahovania</b> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) Použiť natívny systémový súborový dialóg (môže - nemusí robiť problémy pri sťahovaní SSL zabezpečeného obsahu) - + Close download manager when downloading finishes Zavrieť správcu sťahovania po ukončení sťahovania - + Filter Tracking Cookies Filtrovať sledovacie cookies - + Allow storing of cookies Povoliť ukladanie cookies - + Delete cookies on close Vymazať cookies pri zatvorení prehliadača - + Match domain exactly Požadovať presnú zhodu domény - + <b>Warning:</b> Match domain exactly and Filter Tracking Cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>Varovanie:</b> Možnosti požadovanie presnej zhody domény a filtrovať sledovacie cookies môžu viesť k odmietnutiu niektorých cookies zo stránok. Ak máte problémy s cookies, skúste najprv zakázať tieto možnosti! - + Cookies Manager Správca cookies - + <b>Notifications</b> <b>Oznámenia</b> - + Use OSD Notifications Použiť OSD oznámenia - + Use Native System Notifications (Linux only) Používať natívne systémové oznámenia (len pre Linux) - + Do not use Notifications Nepoužívať oznámenia - + Expiration timeout: Doba zobrazenia: - + seconds sekúnd - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>Poznámka: </b>Môžte zmeniť pozíciu OSD oznámenia pretiahnutím ho na obrazovke. - + <b>User CSS StyleSheet</b> <b>Používateľský CSS štýl</b> - + StyleSheet automatically loaded with all websites: Štýl automaticky načítať so všetkámi stránkami: - + Languages Jazyky - + <b>Preferred language for web sites</b> <b>Preferovaný jazyk pre webové stránky</b> - + System proxy configuration Systémové nastavenia proxy - + Do not use proxy Nepoužívať proxy - + Manual configuration Ručné nastavenie - + HTTP HTTP - + SOCKS5 SOCKS5 - + Port: Port: - + Username: Meno: - + Password: Heslo: - + Don't use on: Nepoužívať na: - + Allow storing web icons Povoliť ukladanie webových ikon - + Allow saving history Povoliť ukladanie histórie - + Delete history on close Vymazať históriu pri zatvorení - + Other Ostatné - + Select all text by double clicking in address bar Select all text by clicking at address bar Označiť všetok text dvojitým kliknutím do panelu adresy - + Add .co.uk domain by pressing ALT key Pridať .sk doménu stlačením ALT klávesy - + SSL Manager Správca SSL - + Available translations: Dostupné preklady: - + In order to change language, you must restart browser. Pre zmenu jazyka musíte reštartovať prehliadač. - + OSD Notification OSD oznámenia - + Drag it on the screen to place it where you want. Pretiahnete ho na obrazovke na miesto, kde ho chcete mať. - - Native System Notification - - - - + Choose download location... Vyberte umiestnenie pre sťahovanie... - + Choose stylesheet location... Vyberte umiestnenie štýlu... - + New Profile Nový profil - + Enter the new profile's name: Zadajte názov nového profilu: - - + + Error! Chyba! - + This profile already exists! Tento profil už existuje! - + Cannot create profile directory! Nedá sa vytvoriť priečinok profilu! - + Confirmation Potvrdenie - + Are you sure to permanently delete "%1" profile? This action cannot be undone! Ste si istý, že chcete trvalo vymazať profil "%1"? Táto akcia sa nebude dať vrátiť späť! @@ -3581,67 +3584,67 @@ Po pridaní či odobratí ciest k certifikátom je nutné reštartovať prehliad Všeobecné - + Media Médiá - + Security Zabezpečenie - + Size: Veľkosť: - + Encoding: Kódovanie: - + Tag Tag - + Value Hodnota - + <b>Security information</b> <b>Informácie o zabezpečení</b> - + Details Podrobnosti - + Image Obrázok - + Image address Adresy obrázkov - + <b>Preview</b> <b>Náhľad</b> - + Site address: Adresa stránky: - + Meta tags of site: Meta tagy stránky: @@ -3651,63 +3654,63 @@ Po pridaní či odobratí ciest k certifikátom je nutné reštartovať prehliad <nie je súčasťou certifikátu> - + <b>Connection is Encrypted.</b> <b>Pripojenie je zabezpečené.</b> - + <b>Your connection to this page is secured with this certificate: </b> <b>Vaše pripojenie na túto stránku je zabezpečené certifikátom: </b> - + <b>Connection Not Encrypted.</b> <b>Pripojenie nie je zabezpečené.</b> - + <b>Your connection to this page is not secured!</b> <b>Vaše pripojenie na túto stránku nie je zabezpečené!</b> - + Copy Image Location Kopírovať adresu obrázku - + Copy Image Name Kopírovať názov obrázku - + Save Image to Disk Uložiť obrázok na disk - - + + Error! Chyba! - + This preview is not available! Tento náhlad nie je k dispozícií! - + Save image... Uložiť obrázok... - + Cannot write to file! Nedá sa zapisovať do súboru! - + Preview not available Náhlad nie je k dispozícií diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts index 429545a6e..1b7007423 100644 --- a/translations/zh_CN.ts +++ b/translations/zh_CN.ts @@ -1106,6 +1106,14 @@ + + DesktopNotificationsFactory + + + Native System Notification + + + DownloadFileHelper @@ -1860,704 +1868,699 @@ 首选项 - + General 常规 - + Appereance 外观 - + Tabs 标签 - + Browsing 浏览 - + Fonts 字体 - + Downloads 下载 - + Password Manager 密码管理 - + Privacy 隐私 - + Notifications 通知 - + Plugins 插件 - + Other 其他 - + <b>General</b> <b>常规</b> - + QupZilla - + <b>Launching</b> <B>启动</ B> - + Open blank page 打开空白页 - - + + Open homepage 打开主页 - + Restore session 恢复会话 - + Homepage: 主页: - - + + Use actual 实际使用 - + On new tab: 在新的选项卡: - + Open blank tab 打开空白标签页 - + Open other page... 打开其他页面... - + <b>Profiles</b> b>资料</b> - + Startup profile: 启动配置文件: - + Create New 新建 - + Delete 删除 - - + + Note: You cannot delete active profile. 注意:您不能删除活动配置文件。 - + Check for updates on start 启动时检查更新 - + Themes 主题 - + Advanced options 高级选项 - + <b>Browser Window</b> <B>浏览器窗口</ B> - + Show StatusBar on start 显示状态栏 - + Show Bookmarks ToolBar on start 显示书签工具栏 - + Show Navigation ToolBar on start 显示导航工具栏 - + <b>Navigation ToolBar</b> <B>导航工具栏</ B> - + Show Home button 显示主页按钮 - + Show Back / Forward buttons 显示后退/前进按钮 - + Show Add Tab button 显示新建标签页按钮 - + <b>Background<b/> <B>背景<b/> - + Use transparent background 使用透明背景 - + <b>Tabs behavior</b> <B>标签的行为</ B> - + Make tabs movable - + Hide close button if there is only one tab 如果只有一个选项卡,隐藏关闭按钮 - + Hide tabs when if there is only one tab 如果只有一个选项卡,隐藏标签页 - + <b>Address Bar behaviour</b> <b>地址栏的行为</ B> - + Select all text by double clicking in address bar 双击地址栏选择的所有文字 - + Add .co.uk domain by pressing ALT key 按ALT键添加.co.uk - + Activate last tab when closing active tab 关闭活动标签时激活最后一个标签页 - + Ask when closing multiple tabs 关闭多个标签页时总是询问 - + Web Configuration Web配置 - + Load images 载入图像 - + Allow JAVA 允许Java - + After launch: 启动后: - + Allow JavaScript 允许JavaScript - + Allow Plugins (Flash plugin) 允许插件(Flash插件) - + Block PopUp windows 拦截弹出窗口 - + Allow DNS Prefetch 允许DNS预取 - + JavaScript can access clipboard JavaScript可访问剪贴板 - + Send Do Not Track header to servers 发送不跟踪头到服务器 - + Zoom text only 仅缩放文本 - + Include links in focus chain 包括焦点链中的链接 - + Print element background 打印元素的背景 - + Select all text by clicking in address bar - + Enable XSS Auditing - + Mouse wheel scrolls 滚动鼠标滚轮 - + lines on page - + Default zoom on pages: 默认网页缩放: - + Local Storage 本地存储 - + Maximum pages in cache: 高速缓存中的最大页面: - + 1 - + Allow storing network cache on disk 允许在磁盘上存储网络缓存 - + Maximum 最大 - + 50 MB - + Allow storing web icons 允许存储网页图标 - + Allow saving history 允许保存历史 - + Delete history on close 删除近来的历史记录 - + Proxy Configuration 代理配置 - + HTTP - + SOCKS5 - + Port: 端口: - + Username: 用户名: - + Password: 密码: - + Don't use on: 不要使用: - + Manual configuration 手动配置 - + System proxy configuration 系统代理配置 - + Do not use proxy 不使用代理 - + <b>Font Families</b> - + Standard - + Fixed - + Serif - + Sans Serif - + Cursive - + Default Font - + Fixed Font - + Fantasy - + <b>Font Sizes</b> - + <b>Download Location</b> <b>下载位置</ b> - + Ask everytime for download location 每次询问下载位置 - + Use defined location: 使用定义的位置: - - + + ... ... - + <b>Download Options</b> <b>下载选项</ B> - + Use native system file dialog (may or may not cause problems with downloading SSL secured content) 使用本地系统文件对话框 (可能会导致下载SSL保护内容的问题) - + Close download manager when downloading finishes 下载完成后关闭下载管理器 - + <b>AutoFill options</b> <B>自动填充选项</ B> - + Allow saving passwords from sites 允许保存网站密码 - + <b>Cookies</b> <b>Cookies</b> - + Filter Tracking Cookies 追踪cookies - + Allow storing of cookies 允许存储cookie - + Delete cookies on close 关闭后删除cookies - + Match domain exactly 域完全匹配 - + <b>Warning:</b> Match domain exactly and Filter Tracking Cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! <b>警告:</ B>匹配域完全和过滤器跟踪Cookie选项可能会导致拒绝网站的一些cookies,如果您的cookie有问题,尝试禁用这个选项! - + Cookies Manager 管理Cookies - + SSL Manager 管理SSL - + <b>Notifications</b> <b>通知</b> - + Use OSD Notifications 使用OSD的通知 - + Use Native System Notifications (Linux only) 使用本机的系统通知(仅限Linux) - + Do not use Notifications 不要使用通知 - + Expiration timeout: 到期超时: - + seconds - + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. <b>注意:</ b>您可以在屏幕上拖动以改变OSD​​通知的位置。 - + <b>Language</b> <b>语言</ B> - + Available translations: 可用的翻译: - + In order to change language, you must restart browser. 要改变语言,你必须重新启动浏览器。 - + <b>User CSS StyleSheet</b> <b>用户CSS样式表</ B> - + StyleSheet automatically loaded with all websites: 所有的网站自动加载样式表: - + Languages 语言 - + <b>Preferred language for web sites</b> <b>网站首选的语言</ B> - + OSD Notification OSD的通知 - + Drag it on the screen to place it where you want. 在屏幕上拖动它到你想要的地方。 - - Native System Notification - - - - + Choose download location... 选择下载位置... ... - + Choose stylesheet location... 选择样式表的位置... - + New Profile 新的配置文件 - + Enter the new profile's name: 输入新配置文件的名称: - - + + Error! 错误! - + This profile already exists! 此配置文件已经存在! - + Cannot create profile directory! 无法创建配置文件目录! - + Confirmation 确认 - + Are you sure to permanently delete "%1" profile? This action cannot be undone! 您确定要永久删除“%1”个人资料吗?这将无法复原! @@ -3577,67 +3580,67 @@ After adding or removing certificate paths, it is neccessary to restart browser 常规 - + Media 媒体 - + Security 安全 - + Size: 大小: - + Site address: 网站地址: - + Encoding: 编码: - + Meta tags of site: 网站的Meta标签: - + Tag 标签 - + Value 价值 - + <b>Security information</b> <b>安全信息</ B> - + Details 详情 - + Image 图片 - + Image address 图片地址 - + <b>Preview</b> <b>预览</ B> @@ -3647,63 +3650,63 @@ After adding or removing certificate paths, it is neccessary to restart browser <没有设置证书> - + <b>Connection is Encrypted.</b> <b>连接是加密的。</ B> - + <b>Your connection to this page is secured with this certificate: </b> <B>此页的连接与此证书获得:</ B> - + <b>Connection Not Encrypted.</b> <b>连接没有加密。</ B> - + <b>Your connection to this page is not secured!</b> <b>您连接到这个网页不安全!</ B> - + Copy Image Location 复制图像位置 - + Copy Image Name 复制图像名称 - + Save Image to Disk 将图像保存到磁盘 - - + + Error! 错误! - + This preview is not available! 这个预览不可用! - + Save image... 保存图像... - + Cannot write to file! 无法写入文件! - + Preview not available 预览不可用