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 @@
-
-
-
+
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
+
+
+
+ Nativní systémové oznámení
+
+
DownloadFileHelper
@@ -1863,705 +1871,700 @@ nebyl nalezen!
Předvolby
-
+
Obecné
-
+
1
-
+
Stahování
-
+
Doplňky
-
+
Otevřít prázdnou stránku
-
-
+
+
Otevřít domovskou stránku
-
+
Obnovit relaci
-
+
Domovská stránka:
-
+
Při otevření nového panelu:
-
+
Otevřít prázdný panel
-
+
Otevřít jinou stránku...
-
-
+
+
Použít aktuální
-
+
<b>Navigační panel</b>
-
+
<b>Pozadí</b>
-
+
Použít průhledné pozadí
-
+
Maximálně
-
+
50 MB
-
+
QupZilla
-
+
Povolit ukládání cache na disk
-
+
<b>Cookies</b>
-
+
<b>Chování adresního řádku</b>
-
+
<b>Jazyk</b>
-
+
<b>Hlavní</b>
-
+
Startovní profil:
-
+
Nový profil
-
+
Odstranit
-
+
Zobrazit StatusBar při startu
-
+
<b>Profily</b>
-
+
Zobrazit panel záložek při startu
-
+
Zobrazit navigační panel při startu
-
+
Zobrazit tlačítko Domů
-
+
Zobrazit tlačítka Zpět / Vpřed
-
+
<b>Okno prohlížeče</b>
-
+
Panely
-
+
Písma
-
+
<b>Spouštění</b>
-
-
+
+
Poznámka: Nemůžete smazat aktivní profil.
-
+
Oznámení
-
+
Zobrazit 'Přidat panel' tlačítko
-
+
<b>Chování panelů</b>
-
+
Přesouvat panely přetažením
-
+
Skrýt zavírací tlačítko při jediném panelu
-
+
Skrýt seznam panelů při jediném panelu
-
+
Aktivovat poslední panel při zavírání aktuálního
-
+
Blokovat vyskakovací okna
-
+
Povolit DNS Prefetch
-
+
Povolit JavaScriptu přístup do schránky
-
+
Označovat odkazy tabulátorem
-
+
Přibližovat pouze text
-
+
Tisknout pozadí objektů
-
+
Zasílat serverům Do Not Track hlavičku
-
+
Vzhled
-
+
Po spuštění:
-
+
Kontrolovat aktualizace při startu
-
+
Témata
-
+
Rozšířené možnosti
-
+
Ptát se při zavírání více panelů
-
+
Označit vše při kliknutí do adresního řádku
-
+
Povolit JavaScript
-
+
Povolit kontrolu XSS
-
+
Kolečko myši posune
-
+
řádků na stránce
-
+
Základní přiblížení stránek:
-
+
Lokální úložiště
-
+
Konfigurace Proxy
-
+
<b>Typy písem</b>
-
+
Standardní
-
+
Proporcionální
-
+
Serif
-
+
Sans Serif
-
+
Kurzíva
-
+
Základní písmo
-
+
Proporcionální písmo
-
+
Fantasy
-
+
<b>Velikosti písem</b>
-
+
<b>Cíl stahování</b>
-
+
U každého souboru se dotázat kam ho uložit
-
+
Uložit všechny soubory do:
-
-
+
+
...
-
+
<b>Možnosti stahování</b>
-
+
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)
-
+
Zavřít správce stahování po skončení stahování
-
+
<b>Oznámení</b>
-
+
Používat OSD oznámení
-
+
Používat nativní systémové oznámení (pouze Linux)
-
+
Nepoužívat oznámení
-
+
Doba:
-
+
sekund
-
+
<b>Poznámka: </b> Můžete změnit pozici OSD oznámení na obrazovce jejím přetažením.
-
+
<b>Uživatelský CSS styl</b>
-
+
Styl, automaticky načítán ke všem stránkám:
-
+
Jazyky
-
+
<b>Preferované jazyky pro webové stránky</b>
-
+
Systémové nastavení proxy
-
+
Nepoužívat proxy
-
+
Manuální nastavení
-
+
Nastavení webu
-
+
HTTP
-
+
SOCKS5
-
+
Port:
-
+
Jméno:
-
+
Heslo:
-
+
Nepužívat na:
-
+
Prohlížení
-
+
Nahrát obrázky
-
+
Povolit JAVA
-
+
Povolit pluginy (Flash plugin)
-
+
Maximum stránek v cache:
-
+
Správce hesel
-
+
<b>Možnosti doplňování</b>
-
+
Povolit ukládání hesel ze stránek
-
+
Soukromí
-
+
Filtrovat sledovací cookies
-
+
Povolit přijímání cookies
-
+
Vymazat cookies při zavření prohlížeče
-
+
Vyžadovat přesnou shodu domény
-
+
<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!
-
+
Správce cookies
-
+
Povolit ukládání ikon
-
+
Povolit ukládání historie
-
+
Vymazat historii při zavření prohlížeče
-
+
Ostatní
-
+
Select all text by clicking at address bar
Označit vše při dvojitém kliknutí do adresního řádku
-
+
Přidat .cz doménu stísknutím ALT klávesy
-
+
Správce certifikátů
-
+
Dostupné překlady:
-
+
Ke změně jazyka je nutný restart prohlížeče.
-
+
OSD Oznámení
-
+
Přetáhněte jej na obrazovce na místo, na kterém jej chcete mít.
-
-
-
-
-
-
+
Vyberte složku pro stahování...
-
+
Vyberte umístění stylu...
-
+
Nový profil
-
+
Zvolte jméno nového profilu:
-
-
+
+
Chyba!
-
+
Tento profil již existuje!
-
+
Nemohu vytvořit složku profilu!
-
+
Potvrzení
-
+
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é
-
+
Média
-
+
Zabezpečení
-
+
Velikost:
-
+
Kódování:
-
+
Tag
-
+
Hodnota
-
+
<b>Informace o zabezpečení</b>
-
+
Detaily
-
+
Obrázek
-
+
Adresa obrázku
-
+
<b>Náhled</b>
-
+
Site address
Adresa stránky:
-
+
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>Připojení je zabezpečené.</b>
-
+
<b>Vaše připojení k serveru je zabezpečeno tímto certifikátem: </b>
-
+
<b>Připojení není zabezpečené.</b>
-
+
<b>Vaše připojení k serveru není zabezpečené!</b>
-
+
Kopírovat adresu obrázku
-
+
Kopírovat jméno obrázku
-
+
Uložit obrázek na disk
-
-
+
+
Chyba!
-
+
Tento náhled není k dispozici!
-
+
Uložit obrázek...
-
+
Nemohu zapisovat do souboru!
-
+
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
+
+
+
+
+
+
DownloadFileHelper
@@ -1862,706 +1870,701 @@
Einstellungen
-
+
Allgemein
-
+
1
-
+
Downloads
-
+
Plugins
-
+
Leere Seite öffnen
-
-
+
+
Startseite öffnen
-
+
Sitzung wiederherstellen
-
+
Startseite:
-
+
Bei neuem Tab:
-
+
Leeren Tab öffnen
-
+
Andere Seite öffnen...
-
+
<b>Profile</b>
-
+
Beim Start:
-
+
Neues Profil erstellen
-
+
Löschen
-
+
<b>Start</b>
-
+
QupZilla
-
+
<b>Allgemein</b>
-
+
Status-Leiste nach Programmstart anzeigen
-
+
Lesezeichen Werkzeug-Leiste nach Programmstart anzeigen
-
+
Navigations-Leiste nach Programmstart anzeigen
-
+
<b>Navigations-Leiste</b>
-
+
Cache-Speicherung auf lokaler Festplatte erlauben
-
+
<b>Cookies</b>
-
+
<b>Adress-Leisten Verhalten</b>
-
+
<b>Sprache</b>
-
+
Startseiten-Schaltfläche anzeigen
-
+
Zurück- / Vorwärts-Schaltflächen anzeigen
-
+
<b>Browser-Fenster</b>
-
+
Tabs
-
-
+
+
Aktuelle verwenden
-
+
<b>Hintergrund<b/>
-
+
Transparenten Hintergrund benutzen
-
+
<b>Tab-Verhalten</b>
-
+
Verschieben von Tabs erlauben
-
+
Beenden-Schaltfläche verstecken, wenn nur ein Tab aktiv
-
+
Tabs verstecken, wenn nur einer aktiv
-
+
Web Konfiguration
-
+
Maximum
-
+
50 MB
-
+
Jedes Mal nach Speicherort fragen
-
+
Definierten Speicherort benutzen:
-
-
+
+
...
-
+
Im Internet surfen
-
+
Grafiken laden
-
+
Java zulassen
-
+
Plugins erlauben (Flash plugin)
-
+
Maximale Seitenanzahl im Cache:
-
+
Passwort Manager
-
+
<b>Autovervollständigen</b>
-
+
Speichern von Passwörtern von Seiten erlauben
-
+
Privatsphäre
-
+
Schriftarten
-
-
+
+
Hinweis: Ein aktives Profil kann nicht gelöscht werden.
-
+
Benachrichtigungen
-
+
Tab hinzufügen Schaltfläche anzeigen
-
+
Zuletzt besuchten Tab aktivieren, wenn aktiver Tab geschlossen wird
-
+
PopUp Fenster blockieren
-
+
DNS Prefetch erlauben
-
+
JavaScript darf auf die Zwischenablage zugreifen
-
+
Links in Focus Chain berücksichtigen
-
+
Nur Text vergrößern
-
+
Hintergrund drucken
-
+
Do Not Track Kopfzeile zum Server senden
-
+
Erscheinungsbild
-
+
Nach dem Start:
-
+
Beim Start auf Aktualisierungen überprüfen
-
+
Themen
-
+
Erweiterte Optionen
-
+
Fragen, wenn mehrere Tabs geschlossen werden
-
+
-
+
JavaScript erlauben
-
+
Prevents cross-site scripting
Aktiviere XSS Prüfung
-
+
Mit dem Mausrad blättern
-
+
Zeilen auf einer Seite
-
+
Standardvergrößerung:
-
+
Lokaler Speicherplatz
-
+
Proxy Konfiguration
-
+
<b>Schriftarten</b>
-
+
Standard
-
+
Feste Breite
-
+
Serif
-
+
Sans Serif
-
+
Kursiv
-
+
Standard-Schriftart
-
+
Schriftart mit fester Breite
-
+
Fantasy
-
+
<b>Schriftgrößen</b>
-
+
<b>Download Verzeichnis</b>
-
+
<b>Download Optionen</b>
-
+
Nativen System-Dialog verwenden
(kann Probleme beim Herunterladen von mittels SSL geschützten Inhalten verursachen)
-
+
Download-Manager schließen, wenn das Herunterladen beendet ist
-
+
Seitenfremde Cookies verbieten
-
+
Das Speichern von Cookies erlauben
-
+
Cookies beim Beenden löschen
-
+
Genaue Übereinstimmung der Domain
-
+
<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!
-
+
Cookie Manager
-
+
<b>Benachrichtigungen</b>
-
+
OSD verwenden
-
+
System-Benachrichtigungen verwenden (nur Linux)
-
+
Keine Benachrichtigungen verwenden
-
+
Zeit:
-
+
Sekunden
-
+
<b>Hinweis: </b>Sie können die Position des OSD ändern, in dem Sie es auf dem Bildschirm mit der Maus verschieben.
-
+
<b>Benutzerdefiniertes CSS StyleSheet</b>
-
+
StyleSheet automatisch mit allen Webseiten laden:
-
+
Sprachen
-
+
<b>Bevorzugte Sprache für Webseiten</b>
-
+
Proxy-Einstellungen des Systems verwenden
-
+
Keinen Proxy benutzen
-
+
Manuelle Konfiguration
-
+
HTTP
-
+
SOCKS5
-
+
Port:
-
+
Nutzername:
-
+
Passwort:
-
+
Ausnahme:
-
+
Speichern von Web-Symbolen erlauben
-
+
Speichern des Verlaufs erlauben
-
+
Verlauf beim Beenden löschen
-
+
Andere
-
+
Select all text by clicking at address bar
Ganzen Text mit einem Doppelklick in der Adress-Leiste auswählen
-
+
Zum Hinzufügen der .co.uk Domäne drücken Sie bitte die ALT-Taste
-
+
SSL Manager
-
+
Verfügbare Übersetzungen:
-
+
Um die Sprache zu ändern, starten Sie bitte QupZilla neu.
-
+
OSD Benachrichtigung
-
+
Veschieben Sie es auf dem Bildschirm nach Belieben.
-
-
-
-
-
-
+
Download-Verzeichnis auswählen...
-
+
Stylesheet-Verzeichnis wählen...
-
+
Neues Profil
-
+
Bitte geben Sie den Namen des neuen Profils ein:
-
-
+
+
Fehler!
-
+
Dieses Profil existiert bereits!
-
+
Verzeichnis kann nicht erstellt werden!
-
+
Bestätigung
-
+
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
-
+
Medien
-
+
Sicherheit
-
+
Größe:
-
+
Kodierung:
-
+
Tag
-
+
Wert
-
+
<b>Sicherheitsinformation</b>
-
+
Details
-
+
Grafik
-
+
Grafikadresse
-
+
<b>Vorschau</b>
-
+
Seitenadresse:
-
+
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>Verschlüsselte Verbindung.</b>
-
+
<b>Diese Verbindung ist mit diesem Zertifikat verschlüsselt: </b>
-
+
<b>Unverschlüsselte Verbindung.</b>
-
+
<b>Diese Verbindung ist nicht verschlüsselt!</b>
-
+
Grafikadresse kopieren
-
+
Grafik kopieren
-
+
Grafik speichern
-
-
+
+
Fehler!
-
+
Diese Vorschau ist nicht verfügbar!
-
+
Grafik speichern...
-
+
Datei kann nicht gespeichert werden!
-
+
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
+
+
+
+
+
+
DownloadFileHelper
@@ -1862,704 +1870,699 @@
Preferencias
-
+
General
-
+
Apariencia
-
+
Pestañas
-
+
Navegación
-
+
Fuentes
-
+
Descargas
-
+
Gestor de contraseñas
-
+
Privacidad
-
+
Notificaciones
-
+
Plugins
-
+
Otros
-
+
<b>General</b>
-
+
QupZilla
-
+
<b>Inicio</b>
-
+
Cuando se inicie:
-
+
Abrir una página en blanco
-
-
+
+
Abrir página de inicio
-
+
Restaurar sesión
-
+
Página de inicio:
-
-
+
+
Usar actual
-
+
Para nueva pestaña:
-
+
Abrir una página en blanco
-
+
Abrir otra página...
-
+
<b>Perfiles</b>
-
+
Perfil al inicio:
-
+
Crear nuevo
-
+
Eliminar
-
-
+
+
Nota: no puede eliminar el perfil activo.
-
+
Comprobar actualizaciones al inicio
-
+
Temas
-
+
Opciones avanzadas
-
+
<b>Ventana del navegador</b>
-
+
Mostrar barra de estado al inicio
-
+
Mostrar barra de herramientas de marcadores al inicio
-
+
Mostrar barra de herramientas de navegación al inicio
-
+
<b>Barra de herramientas de navigación</b>
-
+
Mostrar botón de página de inicio
-
+
Mostrar botones Anterior / Siguiente
-
+
Mostrar botón de añadir pestaña
-
+
<b>Fondo<b/>
-
+
Usar fondo transparente
-
+
<b>Comportamiento de pestañas</b>
-
+
Permitir mover pestañas
-
+
Ocultar el botón de cerrar cuando sólo haya una pestaña
-
+
Ocultar pestañas cuando sólo haya una pestaña
-
+
<b>Comportamiento de la barra de direcciones</b>
-
+
Seleccionar todo el texto haciendo doble click en la barra de direcciones
-
+
Añadir dominio .co.uk pulsando la tecla ALT
-
+
Activar la última pestaña al cerrar la pestaña activa
-
+
Preguntar al cerrar múltiples pestañas
-
+
Configuración web
-
+
Cargar imágenes
-
+
Permitir JAVA
-
+
Permitir JavaScript
-
+
Permitir plugins (Flash plugin)
-
+
Bloquear ventanas emergentes
-
+
Permitir DNS Prefetch
-
+
JavaScript puede acceder al portapapeles
-
+
Decir a los sitios web que no quiero ser rastreado
-
+
Ampliar sólo el texto
-
+
Incluir enlaces en la cadena de foco
-
+
Imprimir fondo del elemento
-
+
-
+
-
+
La rueda del ratón desplaza
-
+
líneas en la página
-
+
Ampliación predeterminada en las páginas:
-
+
Almacenamiento local
-
+
Número máximo de páginas en caché:
-
+
1
-
+
Almacenar caché de la red en el disco
-
+
Máximo
-
+
50 MB
-
+
Almacenar iconos de sitios web
-
+
Guardar el historial
-
+
Eliminar el historial al cerrar
-
+
Configuración proxy
-
+
HTTP
-
+
SOCKS5
-
+
Puerto:
-
+
Nombre de usuario:
-
+
Contraseña:
-
+
No utilizar en:
-
+
Configuración manual
-
+
Configuración proxy del sistema
-
+
No utilizar proxy
-
+
<b>Familias de fuentes</b>
-
+
Standard
-
+
Fijo
-
+
Serif
-
+
Sans Serif
-
+
Cursiva
-
+
Fuente predeterminada
-
+
Fuente fija
-
+
Fantasy
-
+
<b>Tamaño de las fuentes</b>
-
+
<b>Ubicación de la descarga</b>
-
+
Preguntar siempre dónde descargar los archivos
-
+
Utilizar una ubicación predefinida:
-
-
+
+
...
-
+
<b>Opciones de descarga</b>
-
+
Utilizar diálogo nativo del sistema de archivos
(podría causar problemas al descargar contenido seguro SSL)
-
+
Cerrar el gestor de descargas cuando las descargas finalicen
-
+
<b>Opciones de autocompletado</b>
-
+
Permitir guardar contraseñas de los sitios
-
+
<b>Cookies</b>
-
+
Filtrar cookies de rastreo
-
+
Permitir almacenar cookies
-
+
Eliminar cookies al cerrar
-
+
Coincidir con el dominio exacto
-
+
<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!
-
+
Gestor de cookies
-
+
Gestor de SSL
-
+
<b>Notificaciones</b>
-
+
Utilizar notificaciones OSD
-
+
Utilizar sistema de notificaciones nativo (sólo Linux)
-
+
No utilizar notificaciones
-
+
Duración:
-
+
segundos
-
+
<b>Nota: </b>Puede cambiar la posición de la notificación OSD arrastrándola por la pantalla.
-
+
<b>Idioma</b>
-
+
Traducciones disponibles:
-
+
Para aplicar el cambio de idioma, debe reiniciar el navegador.
-
+
<b>Hoja de estilos CSS del usuario</b>
-
+
Hoja de estilos cargada automáticamente en todos los sitios web:
-
+
Idiomas
-
+
<b>Idioma preferido para mostrar las páginas web</b>
-
+
Notificación OSD
-
+
Arrástrela por la pantalla para situarla donde quiera.
-
-
-
-
-
-
+
Seleccione la ubicación de la descarga...
-
+
Seleccione la ubicación de la hoja de estilos...
-
+
Nuevo perfil
-
+
Introduzca el nombre del nuevo perfil:
-
-
+
+
¡Error!
-
+
¡Este perfil ya existe!
-
+
¡No se puede crear el directorio del perfil!
-
+
Confirmación
-
+
¿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
-
+
Seguridad
-
+
Tamaño:
-
+
Dirección del sitio:
-
+
Codificación:
-
+
Meta etiquetas del sitio:
-
+
Etiqueta
-
+
Valor
-
+
<b>Información de seguridad</b>
-
+
Detalles
-
+
Imágen
-
+
Dirección de la imágen
-
+
<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>La conexión está encriptada.</b>
-
+
<b>La conexión a esta página está segura con este cerficado: </b>
-
+
<b>Conexión no encriptada.</b>
-
+
<b>¡La conexión a esta página no es segura!</b>
-
+
Copiar la ubicación de la imágen
-
+
Copiar el nombre de la imágen
-
+
Guardar imágen en el disco
-
-
+
+
¡Error!
-
+
¡La vista previa no está disponible!
-
+
Guardar imágen...
-
+
¡No se puede escribir el archivo!
-
+
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
+
+
+
+
+
+
DownloadFileHelper
@@ -1864,704 +1872,699 @@
Preferenze
-
+
Generale
-
+
Aspetto
-
+
Schede
-
+
Navigazione
-
+
Caratteri
-
+
Scaricamenti
-
+
Gestore password
-
+
Privacy
-
+
Notifiche
-
+
Plugins
-
+
Altro
-
+
<b>Generale</b>
-
+
QupZilla
-
+
<b>Avvio</b>
-
+
Dopo l'avvio:
-
+
Apri pagina vuota
-
-
+
+
Apri pagina iniziale
-
+
Ripristina sessione
-
+
Pagina Iniziale:
-
-
+
+
Usa attuale
-
+
In una nuova scheda:
-
+
Apri scheda vuota
-
+
Apri altra pagina...
-
+
<b>Profili</b>
-
+
Profilo d'avvio:
-
+
Crea Nuovo
-
+
Cancella
-
-
+
+
Nota: Non puoi cancellare un profilo attivo.
-
+
Controlla aggiornamenti all'avvio
-
+
Temi
-
+
Opzioni avanzate
-
+
<b>Finestra del Browser</b>
-
+
Visualizza la Barra di Stato all'avvio
-
+
Visualizza Barra dei Segnalibri all'avvio
-
+
Visualizza Barra di Navigazione all'avvio
-
+
<b>Barra di Navigazione</b>
-
+
Mostra pulsante Home
-
+
Mostra pulsanti Indietro / Avanti
-
+
Mostra pulsante Aggiungi Scheda
-
+
<b>Sfondo</b>
-
+
Usa sfondo trasparente
-
+
<b>Comportamento Scheda</b>
-
+
Rendi le schede mobili
-
+
Nascondi il pulsante di chiusura se c'è una sola scheda
-
+
Nascondi schede se c'è una sola scheda
-
+
<b>Comportamento Barra Indirizzi</b>
-
+
Seleziona l'intero testo nella barra degli indirizzi con doppio click
-
+
Aggiungi .it al dominio premendo il tasto ALT
-
+
Attiva l'ultima scheda quando chiudi la scheda attiva
-
+
Chiedi quando chiudi più schede
-
+
Configurazione Web
-
+
Carica immagini
-
+
Abilita JAVA
-
+
Abilita JavaScript
-
+
Abilita Plugins (Flash plugin)
-
+
Blocca finestre PopUp
-
+
Consenti Prefetch DNS
-
+
JavaScript può accedere agli appunti
-
+
Non inviare traccia di intestazione ai server
-
+
Ingrandisci solo il testo
-
+
Includi link in una selezione concatenata
-
+
Mostra elementi di sfondo
-
+
-
+
-
+
La rotella del mouse scorre
-
+
linee della pagina
-
+
Ingrandimento predefinito delle pagine:
-
+
Archiviazione Locale
-
+
Limite pagine nella cache:
-
+
1
-
+
Abilita memorizzazione cache di rete sul disco
-
+
Massimo
-
+
50 MB
-
+
Abilita il salvataggio delle icone web
-
+
Abilita salvataggio della cronologia
-
+
Cancella cronologia alla chiusura
-
+
Configurazione Proxy
-
+
HTTP
-
+
SOCKS5
-
+
Porta:
-
+
Nome Utente:
-
+
Password:
-
+
Non utilizzare su:
-
+
Configurazione manuale
-
+
Configurazione proxy di sistema
-
+
Non usare proxy
-
+
<b>Famiglie di Font</b>
-
+
Standard
-
+
Fixed
-
+
Serif
-
+
Sans Serif
-
+
Cursive
-
+
Default Font
-
+
Fixed Font
-
+
Fantasy
-
+
<b>Dimensioni Carattere</b>
-
+
<b>Percorso file Scaricati</b>
-
+
Chiedi sempre dove salvare
-
+
Usa posizione definita:
-
-
+
+
...
-
+
<b>Opzioni Scaricamento</b>
-
+
Usa file di dialogo nativo di sistema
(può o non può causare problemi con il download di contenuti protetti SSL)
-
+
Chiudi il gestore dei download quando termina lo scaricamento
-
+
<b>Opzioni AutoCompletamento</b>
-
+
Consenti salvataggio password dai siti
-
+
<b>Cookie</b>
-
+
Filtra Rilevamento Cookie
-
+
Abilita la memorizzazione dei cookie
-
+
Cancella cookie alla chiusura
-
+
Associa il dominio esatto
-
+
<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!
-
+
Gestore Cookie
-
+
Gestore SSL
-
+
<b>Notifiche</b>
-
+
Usa Notifiche OSD
-
+
Utilizza le notifiche native di sistema (solo Linux)
-
+
Non usare Notifiche
-
+
Scadenza timeout:
-
+
secondi
-
+
<b>Nota:</b>È possibile modificare la posizione di notifica OSD trascinandola sullo schermo.
-
+
<b>Lingua</b>
-
+
Lingue disponibili:
-
+
Per cambiare lingua, è necessario riavviare il browser.
-
+
<b>Foglio di Stile CSS Personalizzati</b>
-
+
Foglio di Stile caricato automaticamente con tutti i siti web:
-
+
Lingue
-
+
<b>Lingua preferita per i siti web</b>
-
+
Notifica OSD
-
+
Trascina sullo schermo per posizionarlo dove vuoi.
-
-
-
-
-
-
+
Scegli percorso dello scaricamento...
-
+
Scegli la posizione del foglio di stile...
-
+
Nuovo Profilo
-
+
Inserisci il nuovo nome profilo:
-
-
+
+
Errore!
-
+
Questo profilo esiste già!
-
+
Impossibile creare la directory del profilo!
-
+
Conferma
-
+
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
-
+
Sicurezza
-
+
Dimensione:
-
+
Indirizzo sito:
-
+
Codifica:
-
+
Meta tag del sito:
-
+
Tag
-
+
Valore
-
+
<b>Informazioni di sicurezza</b>
-
+
Dettagli
-
+
Immagine
-
+
Indirizzo immagine
-
+
<b>Anteprima</b>
@@ -3653,63 +3656,63 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari
<non impostato nel certificato>
-
+
<b>Connessione Protetta</b>
-
+
<b>La connessione a questa pagina è protetta con questo certificato: </b>
-
+
<b>Connessione Non Protetta.</b>
-
+
<b>La connessione a questa pagina non è sicura!</b>
-
+
Copia Immagine Locale
-
+
Copia Nome Immagine
-
+
Salva Immagine sul Disco
-
-
+
+
Errore!
-
+
Questa anteprima non è disponibile!
-
+
Salva immagine...
-
+
Impossibile scrivere sul file!
-
+
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
+
+
+
+
+
+
DownloadFileHelper
@@ -1863,705 +1871,700 @@ werd niet gevonden!
Instellingen
-
+
Algemeen
-
+
1
-
+
Downloads
-
+
Plugins
-
+
Open lege pagina
-
-
+
+
Open startpagina
-
+
Herstel sessie
-
+
Startpagina:
-
+
Op nieuw tabblad:
-
+
Open leeg tabblad
-
+
Open andere pagina...
-
-
+
+
Gebruik huidige pagina
-
+
<b>Navigatie-werkbalk</b>
-
+
<b>Achtergrond</b>
-
+
Gebruik transparante achtergrond
-
+
Maximum
-
+
50 MB
-
+
QupZilla
-
+
Sta toe dat netwerkcache op schijf wordt opgeslagen
-
+
<b>Cookies</b>
-
+
<b>Gedrag van Adresbalk</b>
-
+
<b>Taal</b>
-
+
<b>Algemeen</b>
-
+
Opstartprofiel:
-
+
Maak nieuw profiel aan
-
+
Verwijder
-
+
Toon Statusbalk bij opstarten
-
+
<b>Profielen</b>
-
+
Toon Bladwijzerwerkbalk bij opstarten
-
+
Toon Navigatie-werkbalk bij opstarten
-
+
Toon startpagina-knop
-
+
Toon Terug / Vooruit-knoppen
-
+
<b>Browser-venster</b>
-
+
Tabbladen
-
+
Lettertypen
-
+
<b>Opstarten</b>
-
-
+
+
Noot: U kunt het actieve profiel niet verwijderen.
-
+
Meldingen
-
+
Toon Voeg tabblad toe-knop
-
+
<b>CTabblad-gedrag</b>
-
+
Maak tabbladen verplaatsbaar
-
+
Verberg sluitknop als er maar 1 tabblad is
-
+
Verberg tabbladen als er maar 1 tabblad is
-
+
Activeer laatste tabblad na sluiten van actieve tab
-
+
Blokkeer Popup-vensters
-
+
Sta DNS-prefetch toe
-
+
JavaScript kan klembord raadplegen
-
+
Sluit links in in focus-ketting
-
+
Zoom alleen tekst
-
+
Print element-achtergrond
-
+
Stuur Track Me Niet-header naar servers
-
+
Uiterlijk
-
+
Na opstarten:
-
+
Controleer op updates bij opstarten
-
+
Thema's
-
+
Geavanceerde instellingen
-
+
Vraag bij sluiten van meerdere tabbladen
-
+
-
+
Sta JavaScript toe
-
+
-
+
Muiswiel scrollt
-
+
regels op pagina
-
+
Standaardzoom op pagina's:
-
+
Lokale opslag
-
+
Proxy-instellingen
-
+
<b>Lettertype-families</b>
-
+
Standaard
-
+
Vast
-
+
Serif
-
+
Sans Serif
-
+
Cursief
-
+
Standaardlettertype
-
+
Vaste breedte-lettertype
-
+
Fantasie
-
+
<b>Lettertype-groottes</b>
-
+
<b>Downloadlocatie</b>
-
+
Vraag elke keer om downloadlocatie
-
+
Gebruik de volgende locatie:
-
-
+
+
...
-
+
<b>Download-instellingen</b>
-
+
Gebruik systeem bestands-dialoogvenster
(kan wellicht problemen veroorzaken met het downloaden van SSL-beveiligde inhoud)
-
+
Sluit downloadbeheerder wanneer downloaden voltooid is
-
+
<b>Meldingen</b>
-
+
Gebruik OSD-meldingen
-
+
Gebruik systeemmeldingen (geldt alleen voor Linux)
-
+
Gebruik geen meldingen
-
+
Vervaltijd-timeout:
-
+
seconden
-
+
<b>Noot: </b> U kunt de positie van OSD-meldingen veranderen door te verslepen op het scherm.
-
+
<b>Gebruikers CSS-stylesheet</b>
-
+
Stylesheet welke automatisch geladen wordt met alle websites:
-
+
Talen
-
+
<b>Voorkeurstalen voor websites</b>
-
+
Systeemproxy-instellingen
-
+
Gebruik geen proxy
-
+
Handmatige instellingen
-
+
Web-instellingen
-
+
HTTP
-
+
SOCKS5
-
+
Poort:
-
+
Gebruikersnaam:
-
+
Wachtwoord:
-
+
Gebruik niet op:
-
+
Navigeren
-
+
Laad afbeeldingen
-
+
Sta JAVA toe
-
+
Sta plugins toe (Flash-plugin)
-
+
Maximum pagina's in cache:
-
+
Wachtwoordbeheerder
-
+
<b>AutoAanvullen-instellingen</b>
-
+
Sta opslaan van wachtwoorden van sites toe
-
+
Privacy
-
+
Filter opsporingscookies
-
+
Sta opslag van cookies toe
-
+
Verwijder cookies bij afsluiten
-
+
Exact overeenkomen domein
-
+
<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-beheerder
-
+
Sta opslag van web-pictogrammen toe
-
+
Sta opslag van geschiedenis toe
-
+
Verwijder geschiedenis bij afsluiten
-
+
Overig
-
+
Select all text by clicking at address bar
Selecteer alle tekst door te dubbelklikken in de adresbalk
-
+
Voeg .nl-domein toe door de ALT-toets in te drukken
-
+
SSL-beheerder
-
+
Beschikbare vertalingen:
-
+
Om de gekozen taal toe te passen, moet u de browser herstarten.
-
+
OSD-melding
-
+
Versleep het op het scherm en plaats het waar U wilt.
-
-
-
-
-
-
+
Kies downloadlocatie...
-
+
Kies stylesheet-locatie...
-
+
Nieuw profiel
-
+
Voer de nieuw profielnaam in:
-
-
+
+
Fout!
-
+
Dit profiel bestaat reeds!
-
+
Kan profielmap niet aanmaken!
-
+
Bevestiging
-
+
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
-
+
Beveiliging
-
+
Grootte:
-
+
Tekenset:
-
+
Tag
-
+
Waarde
-
+
<b>Beveiligingsinformatie</b>
-
+
Details
-
+
Afbeelding
-
+
Afbeeldingsadres
-
+
<b>Voorbeeld</b>
-
+
Site address
Website-adres:
-
+
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>Verbinding is beveiligd.</b>
-
+
<b>Uw verbinding met deze pagina is beveiligd met dit certifitcaat: </b>
-
+
<b>Verbinding niet beveiligd.</b>
-
+
<b>Uw verbinding met deze pagina is niet beveiligd!</b>
-
+
Kopieer afbeeldingslocatie
-
+
Kopieer afbeeldingsnaam
-
+
Sla afbeelding op op schijf
-
-
+
+
Fout!
-
+
Dit voorbeeld is niet beschikbaar!
-
+
Sla afbeelding op...
-
+
Kan niet schrijven naar bestand!
-
+
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
+
+
+
+
+
+
DownloadFileHelper
@@ -1862,705 +1870,700 @@
Nastavenia
-
+
Všeobecné
-
+
1
-
+
Sťahovanie
-
+
Pluginy
-
+
Po spustení:
-
+
Otvoriť prázdnu stránku
-
-
+
+
Otvoriť domovskú stránku
-
+
Obnoviť reláciu
-
+
Domovská stránka:
-
+
Na novej karte:
-
+
Otvoriť prázdnu stránku
-
+
Otvoriť inú stránku...
-
+
<b>Profily</b>
-
+
Štartový profil:
-
+
Vytvoriť nový
-
+
Odstrániť
-
+
<b>Spúšťanie</b>
-
+
QupZilla
-
+
<b>Všeobecné</b>
-
+
Zobraziť stavový riadok pri štarte
-
+
Zobraziť panel záložiek pri štarte
-
+
Zobraziť navigačný panel pri štarte
-
+
<b>Navigačný panel</b>
-
+
Povoliť ukladanie sieťovej cache na disk
-
+
<b>Cookies</b>
-
+
<b>Správanie panelu adresy</b>
-
+
<b>Jazyk</b>
-
+
Zobraziť tlačidlo Domov
-
+
Zobraziť tlačidlá Späť / Dopredu
-
+
<b>Okno prehliadača</b>
-
+
Karty
-
-
+
+
Použiť aktuálnu
-
+
<b>Pozadie<b/>
-
+
Použiť priesvitné pozadie
-
+
<b>Správanie kariet</b>
-
+
Povoliť presúvanie kariet
-
+
Skryť zatváracie tlačidlo, ak je len jedna karta
-
+
Skryť karty, ak je len jedna karta
-
+
Konfigurácia webu
-
+
Maximálne
-
+
50 MB
-
+
Vždy sa opýtať kam súbor uložiť
-
+
Uložiť všetky súbory do:
-
-
+
+
...
-
+
Prehliadanie
-
+
Načítať obrázky
-
+
Povoliť JAVU
-
+
Povoliť JavaScript
-
+
Povoliť pluginy (Flash plugin)
-
+
Maximum stránok v cache:
-
+
Správca hesiel
-
+
<b>Možnosti autodoplňovania</b>
-
+
Povoliť ukladanie hesiel zo stránok
-
+
Súkromie
-
+
Písma
-
-
+
+
Poznámka: Nemôžete vymazať aktívny profil.
-
+
Oznámenia
-
+
Zobraziť tlačidlo Pridať kartu
-
+
Aktivovať naposledy pozeranú kartu po zavretí aktuálnej
-
+
Blokovať vyskakovacie okná
-
+
Povoliť DNS Prefetch
-
+
Povoliť JavaScriptu prístup do schránky
-
+
Označovať odkazy tabulátorom
-
+
Približovať len text
-
+
Tlačiť pozadie prvkov
-
+
Zasielať servrom Do Not Track hlavičku
-
+
Vzhľad
-
+
Kontrolovať aktualizácie pri štarte
-
+
Témy
-
+
Pokročilé nastavenia
-
+
Pýtať sa pri zatváraní viacerých kariet
-
+
Označiť celý text kliknutím do adresného riadka
-
+
Povoliť kontrolu XSS
-
+
Koliesko myši posunie
-
+
riadky na stránke
-
+
Základné priblíženie stránok:
-
+
Lokálne úložisko
-
+
Konfigurácia proxy
-
+
<b>Typy písiem</b>
-
+
Štandardné
-
+
Neproporcionálne
-
+
Serif
-
+
Sans Serif
-
+
Kurzíva
-
+
Štandardné písmo
-
+
Neproporcionálne písmo
-
+
Fantasy
-
+
<b>Veľkosti písma</b>
-
+
<b>Umiestnenie sťahovania</b>
-
+
<b>Možnosti sťahovania</b>
-
+
Použiť natívny systémový súborový dialóg
(môže - nemusí robiť problémy pri sťahovaní SSL zabezpečeného obsahu)
-
+
Zavrieť správcu sťahovania po ukončení sťahovania
-
+
Filtrovať sledovacie cookies
-
+
Povoliť ukladanie cookies
-
+
Vymazať cookies pri zatvorení prehliadača
-
+
Požadovať presnú zhodu domény
-
+
<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!
-
+
Správca cookies
-
+
<b>Oznámenia</b>
-
+
Použiť OSD oznámenia
-
+
Používať natívne systémové oznámenia (len pre Linux)
-
+
Nepoužívať oznámenia
-
+
Doba zobrazenia:
-
+
sekúnd
-
+
<b>Poznámka: </b>Môžte zmeniť pozíciu OSD oznámenia pretiahnutím ho na obrazovke.
-
+
<b>Používateľský CSS štýl</b>
-
+
Štýl automaticky načítať so všetkámi stránkami:
-
+
Jazyky
-
+
<b>Preferovaný jazyk pre webové stránky</b>
-
+
Systémové nastavenia proxy
-
+
Nepoužívať proxy
-
+
Ručné nastavenie
-
+
HTTP
-
+
SOCKS5
-
+
Port:
-
+
Meno:
-
+
Heslo:
-
+
Nepoužívať na:
-
+
Povoliť ukladanie webových ikon
-
+
Povoliť ukladanie histórie
-
+
Vymazať históriu pri zatvorení
-
+
Ostatné
-
+
Select all text by clicking at address bar
Označiť všetok text dvojitým kliknutím do panelu adresy
-
+
Pridať .sk doménu stlačením ALT klávesy
-
+
Správca SSL
-
+
Dostupné preklady:
-
+
Pre zmenu jazyka musíte reštartovať prehliadač.
-
+
OSD oznámenia
-
+
Pretiahnete ho na obrazovke na miesto, kde ho chcete mať.
-
-
-
-
-
-
+
Vyberte umiestnenie pre sťahovanie...
-
+
Vyberte umiestnenie štýlu...
-
+
Nový profil
-
+
Zadajte názov nového profilu:
-
-
+
+
Chyba!
-
+
Tento profil už existuje!
-
+
Nedá sa vytvoriť priečinok profilu!
-
+
Potvrdenie
-
+
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é
-
+
Médiá
-
+
Zabezpečenie
-
+
Veľkosť:
-
+
Kódovanie:
-
+
Tag
-
+
Hodnota
-
+
<b>Informácie o zabezpečení</b>
-
+
Podrobnosti
-
+
Obrázok
-
+
Adresy obrázkov
-
+
<b>Náhľad</b>
-
+
Adresa stránky:
-
+
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>Pripojenie je zabezpečené.</b>
-
+
<b>Vaše pripojenie na túto stránku je zabezpečené certifikátom: </b>
-
+
<b>Pripojenie nie je zabezpečené.</b>
-
+
<b>Vaše pripojenie na túto stránku nie je zabezpečené!</b>
-
+
Kopírovať adresu obrázku
-
+
Kopírovať názov obrázku
-
+
Uložiť obrázok na disk
-
-
+
+
Chyba!
-
+
Tento náhlad nie je k dispozícií!
-
+
Uložiť obrázok...
-
+
Nedá sa zapisovať do súboru!
-
+
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
+
+
+
+
+
+
DownloadFileHelper
@@ -1860,704 +1868,699 @@
首选项
-
+
常规
-
+
外观
-
+
标签
-
+
浏览
-
+
字体
-
+
下载
-
+
密码管理
-
+
隐私
-
+
通知
-
+
插件
-
+
其他
-
+
<b>常规</b>
-
+
-
+
<B>启动</ B>
-
+
打开空白页
-
-
+
+
打开主页
-
+
恢复会话
-
+
主页:
-
-
+
+
实际使用
-
+
在新的选项卡:
-
+
打开空白标签页
-
+
打开其他页面...
-
+
b>资料</b>
-
+
启动配置文件:
-
+
新建
-
+
删除
-
-
+
+
注意:您不能删除活动配置文件。
-
+
启动时检查更新
-
+
主题
-
+
高级选项
-
+
<B>浏览器窗口</ B>
-
+
显示状态栏
-
+
显示书签工具栏
-
+
显示导航工具栏
-
+
<B>导航工具栏</ B>
-
+
显示主页按钮
-
+
显示后退/前进按钮
-
+
显示新建标签页按钮
-
+
<B>背景<b/>
-
+
使用透明背景
-
+
<B>标签的行为</ B>
-
+
-
+
如果只有一个选项卡,隐藏关闭按钮
-
+
如果只有一个选项卡,隐藏标签页
-
+
<b>地址栏的行为</ B>
-
+
双击地址栏选择的所有文字
-
+
按ALT键添加.co.uk
-
+
关闭活动标签时激活最后一个标签页
-
+
关闭多个标签页时总是询问
-
+
Web配置
-
+
载入图像
-
+
允许Java
-
+
启动后:
-
+
允许JavaScript
-
+
允许插件(Flash插件)
-
+
拦截弹出窗口
-
+
允许DNS预取
-
+
JavaScript可访问剪贴板
-
+
发送不跟踪头到服务器
-
+
仅缩放文本
-
+
包括焦点链中的链接
-
+
打印元素的背景
-
+
-
+
-
+
滚动鼠标滚轮
-
+
-
+
默认网页缩放:
-
+
本地存储
-
+
高速缓存中的最大页面:
-
+
-
+
允许在磁盘上存储网络缓存
-
+
最大
-
+
-
+
允许存储网页图标
-
+
允许保存历史
-
+
删除近来的历史记录
-
+
代理配置
-
+
-
+
-
+
端口:
-
+
用户名:
-
+
密码:
-
+
不要使用:
-
+
手动配置
-
+
系统代理配置
-
+
不使用代理
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
<b>下载位置</ b>
-
+
每次询问下载位置
-
+
使用定义的位置:
-
-
+
+
...
-
+
<b>下载选项</ B>
-
+
使用本地系统文件对话框
(可能会导致下载SSL保护内容的问题)
-
+
下载完成后关闭下载管理器
-
+
<B>自动填充选项</ B>
-
+
允许保存网站密码
-
+
<b>Cookies</b>
-
+
追踪cookies
-
+
允许存储cookie
-
+
关闭后删除cookies
-
+
域完全匹配
-
+
<b>警告:</ B>匹配域完全和过滤器跟踪Cookie选项可能会导致拒绝网站的一些cookies,如果您的cookie有问题,尝试禁用这个选项!
-
+
管理Cookies
-
+
管理SSL
-
+
<b>通知</b>
-
+
使用OSD的通知
-
+
使用本机的系统通知(仅限Linux)
-
+
不要使用通知
-
+
到期超时:
-
+
秒
-
+
<b>注意:</ b>您可以在屏幕上拖动以改变OSD通知的位置。
-
+
<b>语言</ B>
-
+
可用的翻译:
-
+
要改变语言,你必须重新启动浏览器。
-
+
<b>用户CSS样式表</ B>
-
+
所有的网站自动加载样式表:
-
+
语言
-
+
<b>网站首选的语言</ B>
-
+
OSD的通知
-
+
在屏幕上拖动它到你想要的地方。
-
-
-
-
-
-
+
选择下载位置... ...
-
+
选择样式表的位置...
-
+
新的配置文件
-
+
输入新配置文件的名称:
-
-
+
+
错误!
-
+
此配置文件已经存在!
-
+
无法创建配置文件目录!
-
+
确认
-
+
您确定要永久删除“%1”个人资料吗?这将无法复原!
@@ -3577,67 +3580,67 @@ After adding or removing certificate paths, it is neccessary to restart browser
常规
-
+
媒体
-
+
安全
-
+
大小:
-
+
网站地址:
-
+
编码:
-
+
网站的Meta标签:
-
+
标签
-
+
价值
-
+
<b>安全信息</ B>
-
+
详情
-
+
图片
-
+
图片地址
-
+
<b>预览</ B>
@@ -3647,63 +3650,63 @@ After adding or removing certificate paths, it is neccessary to restart browser
<没有设置证书>
-
+
<b>连接是加密的。</ B>
-
+
<B>此页的连接与此证书获得:</ B>
-
+
<b>连接没有加密。</ B>
-
+
<b>您连接到这个网页不安全!</ B>
-
+
复制图像位置
-
+
复制图像名称
-
+
将图像保存到磁盘
-
-
+
+
错误!
-
+
这个预览不可用!
-
+
保存图像...
-
+
无法写入文件!
-
+
预览不可用