diff --git a/bin/locale/cs_CZ.qm b/bin/locale/cs_CZ.qm index da1465ac5..6b513e0d9 100644 Binary files a/bin/locale/cs_CZ.qm and b/bin/locale/cs_CZ.qm differ diff --git a/src/bookmarks/bookmarksmanager.cpp b/src/bookmarks/bookmarksmanager.cpp index e928fc21d..c6d62e643 100644 --- a/src/bookmarks/bookmarksmanager.cpp +++ b/src/bookmarks/bookmarksmanager.cpp @@ -237,7 +237,7 @@ void BookmarksManager::contextMenuRequested(const QPoint &position) } QMenu menu; - menu.addAction(tr("Open link in actual &tab"), getQupZilla(), SLOT(loadActionUrl()))->setData(link); + menu.addAction(tr("Open link in current &tab"), getQupZilla(), SLOT(loadActionUrl()))->setData(link); menu.addAction(tr("Open link in &new tab"), this, SLOT(loadInNewTab()))->setData(link); menu.addSeparator(); diff --git a/src/history/historymanager.cpp b/src/history/historymanager.cpp index 273c669bd..b2b2b878f 100644 --- a/src/history/historymanager.cpp +++ b/src/history/historymanager.cpp @@ -98,7 +98,7 @@ void HistoryManager::contextMenuRequested(const QPoint &position) } QMenu menu; - menu.addAction(tr("Open link in actual tab"), getQupZilla(), SLOT(loadActionUrl()))->setData(link); + menu.addAction(tr("Open link in current tab"), getQupZilla(), SLOT(loadActionUrl()))->setData(link); menu.addAction(tr("Open link in new tab"), this, SLOT(loadInNewTab()))->setData(link); menu.addSeparator(); menu.addAction(tr("Copy address"), this, SLOT(copyUrl()))->setData(link); diff --git a/src/preferences/preferences.cpp b/src/preferences/preferences.cpp index 19e5f2c51..6efc01e8c 100644 --- a/src/preferences/preferences.cpp +++ b/src/preferences/preferences.cpp @@ -143,8 +143,8 @@ Preferences::Preferences(QupZilla* mainClass, QWidget* parent) ui->newTabFrame->setVisible(true); } connect(ui->newTab, SIGNAL(currentIndexChanged(int)), this, SLOT(newTabChanged())); - connect(ui->useActualBut, SIGNAL(clicked()), this, SLOT(useActualHomepage())); - connect(ui->newTabUseActual, SIGNAL(clicked()), this, SLOT(useActualNewTab())); + connect(ui->useCurrentBut, SIGNAL(clicked()), this, SLOT(useActualHomepage())); + connect(ui->newTabUseCurrent, SIGNAL(clicked()), this, SLOT(useActualNewTab())); //PROFILES m_actProfileName = mApp->getActiveProfilPath(); diff --git a/src/preferences/preferences.ui b/src/preferences/preferences.ui index 6674767af..9fe14f8f1 100644 --- a/src/preferences/preferences.ui +++ b/src/preferences/preferences.ui @@ -253,9 +253,9 @@ - + - Use actual + Use current @@ -401,9 +401,9 @@ - + - Use actual + Use current @@ -2053,10 +2053,10 @@ buttonBox afterLaunch homepage - useActualBut + useCurrentBut newTab newTabUrl - newTabUseActual + newTabUseCurrent checkUpdates startProfile createProfile diff --git a/src/rss/rssmanager.cpp b/src/rss/rssmanager.cpp index 16f944f7b..a90c16387 100644 --- a/src/rss/rssmanager.cpp +++ b/src/rss/rssmanager.cpp @@ -231,7 +231,7 @@ void RSSManager::customContextMenuRequested(const QPoint &position) } QMenu menu; - menu.addAction(tr("Open link in actual tab"), getQupZilla(), SLOT(loadActionUrl()))->setData(link); + menu.addAction(tr("Open link in current tab"), getQupZilla(), SLOT(loadActionUrl()))->setData(link); menu.addAction(tr("Open link in new tab"), this, SLOT(loadFeedInNewTab()))->setData(link); //Prevent choosing first option with double rightclick diff --git a/src/sidebar/bookmarkssidebar.cpp b/src/sidebar/bookmarkssidebar.cpp index 821a5bddb..3b7cd0d67 100644 --- a/src/sidebar/bookmarkssidebar.cpp +++ b/src/sidebar/bookmarkssidebar.cpp @@ -107,7 +107,7 @@ void BookmarksSideBar::contextMenuRequested(const QPoint &position) } QMenu menu; - menu.addAction(tr("Open link in actual &tab"), p_QupZilla, SLOT(loadActionUrl()))->setData(link); + menu.addAction(tr("Open link in current &tab"), p_QupZilla, SLOT(loadActionUrl()))->setData(link); menu.addAction(tr("Open link in &new tab"), this, SLOT(loadInNewTab()))->setData(link); menu.addAction(tr("Copy address"), this, SLOT(copyAddress()))->setData(link); menu.addSeparator(); diff --git a/src/sidebar/historysidebar.cpp b/src/sidebar/historysidebar.cpp index d792bedb2..c9e22e80c 100644 --- a/src/sidebar/historysidebar.cpp +++ b/src/sidebar/historysidebar.cpp @@ -92,7 +92,7 @@ void HistorySideBar::contextMenuRequested(const QPoint &position) } QMenu menu; - menu.addAction(tr("Open link in actual tab"), p_QupZilla, SLOT(loadActionUrl()))->setData(link); + menu.addAction(tr("Open link in current tab"), p_QupZilla, SLOT(loadActionUrl()))->setData(link); menu.addAction(tr("Open link in new tab"), this, SLOT(loadInNewTab()))->setData(link); menu.addSeparator(); menu.addAction(tr("Copy address"), this, SLOT(copyAddress()))->setData(link); diff --git a/src/tools/iconprovider.cpp b/src/tools/iconprovider.cpp index f8fb95e3a..086da7577 100644 --- a/src/tools/iconprovider.cpp +++ b/src/tools/iconprovider.cpp @@ -32,6 +32,11 @@ IconProvider::IconProvider(QObject* parent) void IconProvider::saveIcon(WebView* view) { + if (mApp->webSettings()->testAttribute(QWebSettings::PrivateBrowsingEnabled)) { + // Don't save icons in private mode. + return; + } + Icon item; item.image = view->icon().pixmap(16, 16).toImage(); item.url = view->url(); diff --git a/translations/cs_CZ.ts b/translations/cs_CZ.ts index 8c4378f52..254e60000 100644 --- a/translations/cs_CZ.ts +++ b/translations/cs_CZ.ts @@ -576,9 +576,8 @@ Odstranit složku - Open link in actual &tab - Otevřít odkaz v &aktuálním panelu + Otevřít odkaz v &aktuálním panelu @@ -605,6 +604,11 @@ Choose name for folder: Zvolte jméno pro složku: + + + Open link in current &tab + Otevřít odkaz v &aktuálním panelu + Open link in &new tab @@ -674,8 +678,12 @@ Nový panel - Open link in actual &tab + Otevřít odkaz v &aktuálním panelu + + + + Open link in current &tab Otevřít odkaz v &aktuálním panelu @@ -1513,8 +1521,12 @@ nebyl nalezen! Nový panel - Open link in actual tab + Otevřít odkaz v aktuálním panelu + + + + Open link in current tab Otevřít odkaz v aktuálním panelu @@ -1646,8 +1658,12 @@ nebyl nalezen! Nový panel - Open link in actual tab + Otevřít odkaz v aktuálním panelu + + + + Open link in current tab Otevřít odkaz v aktuálním panelu @@ -2150,10 +2166,8 @@ nebyl nalezen! Otevřít jinou stránku... - - Use actual - Použít aktuální + Použít aktuální @@ -2353,6 +2367,12 @@ nebyl nalezen! Open speed dial Otevřít rychlou volbu + + + + Use current + Použít aktuální + Check for updates on start @@ -3728,9 +3748,13 @@ Prosím přidejte si nějaký kliknutím na RSS ikonku v navigačním řádku. - Open link in actual tab + Open link in current tab Otevřít odkaz v aktuálním panelu + + Open link in actual tab + Otevřít odkaz v aktuálním panelu + Open link in new tab @@ -4508,22 +4532,22 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ TabbedWebView - + Failed loading page Chyba při načítání stránky - + Loading... Načítám... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Zkontrolovat objekt @@ -4926,147 +4950,147 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ - QupZilla - + Open link in new &tab Otevřít odkaz v novém &panelu - + Open link in new &window Otevřít odkaz v novém &okně - + B&ookmark link Přidat odkaz do zá&ložek - + &Save link as... &Uložit odkaz jako... - + &Copy link address &Kopírovat adresu odkazu - + Show i&mage Zobrazit &obrázek - + Copy im&age &Kopírovat obrázek - + Copy image ad&dress Kopírovat adr&esu obrázku - + S&top &Zastavit - + This frame Tento rám - + Show &only this frame Zobrazit &pouze tento rám - + Show this frame in new &tab Zobrazit tento rám v &novém panelu - + Print frame Tisknout rám - + Zoom &in Zoo&m + - + &Zoom out Z&oom - - + Reset Původní - + Show so&urce of frame Zobrazit &zdrojový kód rámu - + &Copy page link Kopírovat &adresu stránky - + Send page link... Odeslat adresu stránky... - + &Print page Ti&sknout stránku - + Validate page Zkontrolovat stránku - + Show info ab&out site Zobrazit &informace o stránce - + &Play &Přehrát - + &Pause &Pozastavit - + Un&mute &Zrušit ztlumení - + &Mute &Ztlumit - + &Copy Media Address &Kopírovat adresu média - + &Send Media Address &Odeslat adresu média - + Save Media To &Disk &Uložit médium na disk @@ -5083,7 +5107,7 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Zobrazit Web &Inspektor - + &Save image as... &Uložit obrázek jako... @@ -5092,68 +5116,68 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Chyba při načítání stránky - + &Back &Zpět - + &Forward &Vpřed - - + + &Reload &Obnovit - + Book&mark page Přidat stránku do zá&ložek - + &Save page as... &Uložit stránku jako... - + Select &all Vyb&rat vše - + Show so&urce code Zobrazit zdrojový kó&d - + Send text... Odeslat text... - + Google Translate Google Translate - + Dictionary Slovník - + Go to &web address Přejít na web&ovou adresu - + Search "%1 .." with %2 Hledat "%1 .." s %2 - + No Named Page Bezejmenná stránka @@ -5162,12 +5186,12 @@ Po přidání či odstranění cest k certifikátům je nutné k projevení změ Nový panel - + Send link... Odeslat odkaz... - + Send image... Odeslat obrázek... diff --git a/translations/de_DE.ts b/translations/de_DE.ts index 364af64d6..3baafaea5 100644 --- a/translations/de_DE.ts +++ b/translations/de_DE.ts @@ -577,9 +577,8 @@ Ordner entfernen - Open link in actual &tab - Link in &aktuellem Tab öffnen + Link in &aktuellem Tab öffnen @@ -606,6 +605,11 @@ Choose name for folder: Namen für Ordner auswählen: + + + Open link in current &tab + + Open link in &new tab @@ -675,9 +679,13 @@ Neuer Tab - Open link in actual &tab - Link in &aktuellem Tab öffnen + Link in &aktuellem Tab öffnen + + + + Open link in current &tab + @@ -1511,9 +1519,13 @@ Neuer Tab - Open link in actual tab - Link in aktuellem Tab öffnen + Link in aktuellem Tab öffnen + + + + Open link in current tab + @@ -1644,9 +1656,13 @@ Neuer Tab - Open link in actual tab - Link in aktuellem Tab öffnen + Link in aktuellem Tab öffnen + + + + Open link in current tab + @@ -2246,10 +2262,8 @@ Tabs - - Use actual - Aktuelle verwenden + Aktuelle verwenden @@ -2426,6 +2440,12 @@ Open speed dial Schnellwahl öffnen + + + + Use current + + Check for updates on start @@ -3727,8 +3747,12 @@ Bitte fügen Sie welche über das RSS Symbol in der Navigationsleiste hinzu. + Open link in current tab + + + Open link in actual tab - Link in aktuellem Tab öffnen + Link in aktuellem Tab öffnen @@ -4508,22 +4532,22 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest TabbedWebView - + Failed loading page Seite konnte nicht geladen werden - + Loading... Laden... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Element untersuchen @@ -4926,147 +4950,147 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest - QupZilla - + Open link in new &tab Link in neuem &Tab öffnen - + Open link in new &window Link in neuem &Fenster öffnen - + B&ookmark link &Lesezeichen für diesen Link hinzufügen - + &Save link as... &Ziel speichern unter... - + &Copy link address Lin&k-Adresse kopieren - + Show i&mage G&rafik anzeigen - + Copy im&age Grafik k&opieren - + Copy image ad&dress Grafika&dresse kopieren - + S&top S&topp - + This frame Dieser Rahmen - + Show &only this frame Nur diesen Rahmen anzei&gen - + Show this frame in new &tab Diesen Rahmen in einem neuen &Tab anzeigen - + Print frame Rahmen drucken - + Zoom &in Ver&größern - + &Zoom out Ver&kleinern - + Reset Zurücksetzen - + Show so&urce of frame Q&uelltext dieses Rahmens anzeigen - + &Copy page link Link zur Seite &kopieren - + Send page link... Link der Seite versenden... - + &Print page Seite &drucken - + Validate page Seite überprüfen - + Show info ab&out site S&eiteninformationen anzeigen - + &Play &Wiedergabe - + &Pause &Pause - + Un&mute &Ton einschalten - + &Mute &Stumm schalten - + &Copy Media Address Medienadresse &kopieren - + &Send Media Address Medienadresse &versenden - + Save Media To &Disk Multimedia-Datei &speichern @@ -5079,7 +5103,7 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Web &Inspector anzeigen - + &Save image as... Grafik speichern &unter... @@ -5088,68 +5112,68 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Seite konnte nicht geladen werden - + &Back &Zurück - + &Forward &Vor - - + + &Reload &Neu laden - + Book&mark page &Lesezeichen für diese Seite hinzufügen - + &Save page as... Seite speichern &unter... - + Select &all Alles au&swählen - + Show so&urce code Seitenquelltext &anzeigen - + Send text... Text senden... - + Google Translate Google Übersetzer - + Dictionary Wörterbuch - + Go to &web address Gehe zu &Web-Adresse - + Search "%1 .." with %2 Suche "%1 .." mit %2 - + No Named Page Leere Seite @@ -5158,12 +5182,12 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Neuer Tab - + Send link... Link senden... - + Send image... Grafik senden... diff --git a/translations/el_GR.ts b/translations/el_GR.ts index c2543f9eb..9f1623fcd 100644 --- a/translations/el_GR.ts +++ b/translations/el_GR.ts @@ -591,9 +591,13 @@ Αφαίρεση φακέλου - Open link in actual &tab - Ά&νοιγμα συνδέσμου στην τρέχουσα καρτέλα + Ά&νοιγμα συνδέσμου στην τρέχουσα καρτέλα + + + + Open link in current &tab + @@ -674,9 +678,13 @@ Νέα καρτέλα - Open link in actual &tab - Ά&νοιγμα συνδέσμου στην τρέχουσα καρτέλα + Ά&νοιγμα συνδέσμου στην τρέχουσα καρτέλα + + + + Open link in current &tab + @@ -1509,9 +1517,13 @@ Νέα καρτέλα - Open link in actual tab - Άνοιγμα συνδέσμου στην τρέχουσα καρτέλα + Άνοιγμα συνδέσμου στην τρέχουσα καρτέλα + + + + Open link in current tab + @@ -1642,9 +1654,13 @@ Νέα καρτέλα - Open link in actual tab - Άνοιγμα συνδέσμου στην τρέχουσα καρτέλα + Άνοιγμα συνδέσμου στην τρέχουσα καρτέλα + + + + Open link in current tab + @@ -2112,10 +2128,8 @@ Αρχική σελίδα: - - Use actual - Χρήση τρέχουσας + Χρήση τρέχουσας @@ -2288,6 +2302,12 @@ Allow JavaScript Να επιτρέπεται το JavaScript + + + + Use current + + Active profile: @@ -3691,8 +3711,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds. + Open link in current tab + + + Open link in actual tab - Άνοιγμα συνδέσμου στην τρέχουσα καρτέλα + Άνοιγμα συνδέσμου στην τρέχουσα καρτέλα @@ -4470,22 +4494,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Αποτυχία φόρτωσης σελίδας - + Loading... Φόρτωση... - + %1 - QupZilla - + Inspect Element @@ -4860,198 +4884,198 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Νέα καρτέλα - + Open link in new &tab Άνοιγμα συνδέσμου σε νέα καρ&τέλα - + Open link in new &window Άνοιγμα συνδέσμου σε νέο &παράθυρο - + B&ookmark link Ο σύνδεσμος ως σελιδο&δείκτης - + &Save link as... Απο&θήκευση συνδέσμου ως... - + Send link... Αποστολή συνδέσμου... - + &Copy link address Α&ντιγραφή διεύθυνσης συνδέσμου - + Show i&mage Εμφάνιση &εικόνας - + Copy im&age Αντιγραφή ει&κόνας - + Copy image ad&dress Αντιγραφή διεύ&θυνσης εικόνας - + &Save image as... Απο&θήκευση εικόνας ως... - + Send image... Αποστολή εικόνας... - + &Back &Πίσω - + &Forward &Μπροστά - - + + &Reload &Ανανέωση - + S&top &Διακοπή - + This frame Αυτό το πλαίσιο - + Show &only this frame Εμφάνιση &μόνο αυτού του πλαισίου - + Show this frame in new &tab Εμφάνιση αυτού του πλαισίου σε νέα &καρτέλα - + Print frame Εκτύπωση πλαισίου - + Zoom &in Ε&στίαση - + &Zoom out Σμίκρ&υνση - + Reset Επαναφορά - + Show so&urce of frame Εμφάνιση πη&γαίου του πλαισίου - + Book&mark page Η σελίδα ως &σελιδοδείκτης - + &Save page as... Αποθήκευση σε&λίδας ως... - + &Copy page link - + Send page link... - + &Print page - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5060,22 +5084,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Αποστολή σελίδας... - + Select &all Επι&λογή όλων - + Validate page - + Show so&urce code Εμφάνιση πη&γαίου κώδικα - + Show info ab&out site Εμφάνιση πληρο&φοριών για την σελίδα @@ -5084,12 +5108,12 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Εμφάνιση επιθε&ωρητή διαδικτύου - + Search "%1 .." with %2 Αναζήτηση "%1" με %2 - + No Named Page Ανώνυμη σελίδα diff --git a/translations/empty.ts b/translations/empty.ts index 7b53dd064..410981369 100644 --- a/translations/empty.ts +++ b/translations/empty.ts @@ -572,7 +572,7 @@ - Open link in actual &tab + Open link in current &tab @@ -651,7 +651,7 @@ - Open link in actual &tab + Open link in current &tab @@ -1426,7 +1426,7 @@ - Open link in actual tab + Open link in current tab @@ -1555,7 +1555,7 @@ - Open link in actual tab + Open link in current tab @@ -1898,12 +1898,6 @@ Homepage: - - - - Use actual - - On new tab: @@ -2075,6 +2069,12 @@ Allow JavaScript + + + + Use current + + Active profile: @@ -3448,7 +3448,7 @@ Please add some with RSS icon in navigation bar on site which offers feeds. - Open link in actual tab + Open link in current tab @@ -4192,22 +4192,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page - + Loading... - + %1 - QupZilla - + Inspect Element @@ -4445,228 +4445,228 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebView - + No Named Page - + &Back - + &Forward - - + + &Reload - + S&top - + This frame - + Show &only this frame - + Show this frame in new &tab - + Print frame - + Zoom &in - + &Zoom out - + Reset - + Show so&urce of frame - + Book&mark page - + &Save page as... - + &Copy page link - + Send page link... - + &Print page - + Select &all - + Validate page - + Show so&urce code - + Show info ab&out site - + Open link in new &tab - + Open link in new &window - + B&ookmark link - + &Save link as... - + Send link... - + &Copy link address - + Show i&mage - + Copy im&age - + Copy image ad&dress - + &Save image as... - + Send image... - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + Search "%1 .." with %2 - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk diff --git a/translations/es_ES.ts b/translations/es_ES.ts index b5bbe9326..7eff7706a 100644 --- a/translations/es_ES.ts +++ b/translations/es_ES.ts @@ -601,9 +601,13 @@ Eliminar carpeta - Open link in actual &tab - Abrir enlace en la &pestaña actual + Abrir enlace en la &pestaña actual + + + + Open link in current &tab + @@ -674,9 +678,13 @@ Nueva pestaña - Open link in actual &tab - Abrir enlace en la &pestaña actual + Abrir enlace en la &pestaña actual + + + + Open link in current &tab + @@ -1508,9 +1516,13 @@ Nueva pestaña - Open link in actual tab - Abrir enlace en la pestaña actual + Abrir enlace en la pestaña actual + + + + Open link in current tab + @@ -1641,9 +1653,13 @@ Nueva pestaña - Open link in actual tab - Abrir enlace en la pestaña actual + Abrir enlace en la pestaña actual + + + + Open link in current tab + @@ -2179,10 +2195,8 @@ Página de inicio: - - Use actual - Usar actual + Usar actual @@ -2393,6 +2407,12 @@ Open speed dial Abrir speed dial + + + + Use current + + Active profile: @@ -3714,8 +3734,12 @@ Por favor, añada alguno con el icono RSS de la barra de navegación en sitios q + Open link in current tab + + + Open link in actual tab - Abrir enlace en la pestaña actual + Abrir enlace en la pestaña actual @@ -4493,22 +4517,22 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup TabbedWebView - + Failed loading page Falló la carga de la página - + Loading... Cargando... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspeccionar elemento @@ -4907,42 +4931,42 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Cargando... - + &Copy page link Cop&iar el enlace de la página - + Send page link... Enviar enlace de la página... - + &Print page &Imprimir página - + Validate page Validar página - + Send text... Enviar texto... - + Google Translate Traductor de Google - + Dictionary Diccionario - + Go to &web address Ir a &dirección web @@ -4951,163 +4975,163 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Nueva pestaña - + Open link in new &tab Abrir enlace en una nueva &pestaña - + Open link in new &window Abrir enlace en una nueva &ventana - + B&ookmark link Añadir enlace a &marcadores - + &Save link as... &Guardar enlace como... - + Send link... Enviar enlace... - + &Copy link address Copi&ar la ruta del enlace - + Show i&mage Mostrar &imágen - + Copy im&age Co&piar imágen - + Copy image ad&dress C&opiar la ruta de la imágen - + &Save image as... &Guardar imágen como... - + Send image... Enviar imágen... - + &Back &Anterior - + &Forward &Siguiente - - + + &Reload &Recargar - + S&top &Detener - + This frame Este marco - + Show &only this frame M&ostrar solamente este marco - + Show this frame in new &tab Mostrar este marco en una nueva &pestaña - + Print frame Imprimir marco - + Zoom &in &Aumentar tamaño - + &Zoom out &Reducir tamaño - + Reset Reiniciar tamaño - + Show so&urce of frame Mostrar código f&uente del marco - + Book&mark page Añadir esta página a &marcadores - + &Save page as... &Guardar como... - + &Play &Reproducir - + &Pause &Pausa - + Un&mute &Activar sonido - + &Mute &Desactivar sonido - + &Copy Media Address Copi&ar la ruta del contenido media - + &Send Media Address &Enviar la ruta del contenido media - + Save Media To &Disk Guardar el contenido media al &disco @@ -5116,17 +5140,17 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Enviar página... - + Select &all Seleccionar &todo - + Show so&urce code Ver código &fuente de la página - + Show info ab&out site Ver &información de la página @@ -5135,12 +5159,12 @@ Después de añadir o eliminar rutas de certificados, es necesario reiniciar Qup Ver Inspector &Web - + Search "%1 .." with %2 Buscar "%1 .." con %2 - + No Named Page Página en blanco diff --git a/translations/fr_FR.ts b/translations/fr_FR.ts index 354adf741..6a0ebd209 100644 --- a/translations/fr_FR.ts +++ b/translations/fr_FR.ts @@ -594,9 +594,8 @@ Supprimer le dossier - Open link in actual &tab - Ouvrir le lien dans l'&Onglet actuel + Ouvrir le lien dans l'&Onglet actuel @@ -623,6 +622,11 @@ Rename bookmark Renommer le marque-page + + + Open link in current &tab + + Remove bookmark @@ -677,9 +681,13 @@ Nouvel onglet - Open link in actual &tab - Ouvrir le lien dans l'&onglet actuel + Ouvrir le lien dans l'&onglet actuel + + + + Open link in current &tab + @@ -1511,9 +1519,13 @@ n'a pas été trouvé! Nouvel onglet - Open link in actual tab - Ouvrir le lien dans l'onglet actuel + Ouvrir le lien dans l'onglet actuel + + + + Open link in current tab + @@ -1644,9 +1656,13 @@ n'a pas été trouvé! Nouvel onglet - Open link in actual tab - Ouvrir dans l'onglet actuel + Ouvrir dans l'onglet actuel + + + + Open link in current tab + @@ -2110,10 +2126,8 @@ n'a pas été trouvé! Page d'accueil: - - Use actual - Utiliser la page actuelle + Utiliser la page actuelle @@ -2286,6 +2300,12 @@ n'a pas été trouvé! Allow JavaScript Autoriser JavaScript + + + + Use current + + Active profile: @@ -3690,8 +3710,12 @@ Vous pouvez en ajouter grâce à l'icône RSS dans la barre de navigation s + Open link in current tab + + + Open link in actual tab - Ouvrir le lien dans l'onglet actuel + Ouvrir le lien dans l'onglet actuel @@ -4470,22 +4494,22 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer TabbedWebView - + Failed loading page - + Loading... Chargement... - + %1 - QupZilla - + Inspect Element @@ -4856,198 +4880,198 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Nouvel onglet - + Open link in new &tab Ouvrir le lien dans un nouvel &onglet - + Open link in new &window Ouvrir le lien dans une nouvelle &fenêtre - + B&ookmark link Lien du marque-&page - + &Save link as... &Enregistrer le lien sous... - + Send link... Envoyer le lien... - + &Copy link address &Copier l'adresse - + Show i&mage Montrer l'i&mage - + Copy im&age Copier l'im&age - + Copy image ad&dress Copier l'a&dresse de l'image - + &Save image as... &Enregistrer l'image sous... - + Send image... Envoyer l'image... - + &Back &Retour - + &Forward &Suivant - - + + &Reload &Actualiser - + S&top &Stop - + This frame Ce cadre - + Show &only this frame Montrer uniquement ce &cadre - + Show this frame in new &tab Montrer ce cadre dans un nouvel &onglet - + Print frame Imprimer le cadre - + Zoom &in Zoom &plus - + &Zoom out Zoom &moins - + Reset Réinitialiser - + Show so&urce of frame Montrer le code so&urce du cadre - + Book&mark page &Marquer cette page - + &Save page as... &Enregistrer la page sous... - + &Copy page link - + Send page link... - + &Print page - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5056,22 +5080,22 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Envoyer la page... - + Select &all T&out Sélectionner - + Validate page - + Show so&urce code Montrer le &code source - + Show info ab&out site Informations à prop&os du site @@ -5080,12 +5104,12 @@ Après avoir ajouté ou retiré un certificat, il est nécessaire de redémarrer Web &Inspector - + Search "%1 .." with %2 Recherche de %1.."avec %2 - + No Named Page Page non nommée diff --git a/translations/it_IT.ts b/translations/it_IT.ts index 7993c5b89..19cd2f972 100644 --- a/translations/it_IT.ts +++ b/translations/it_IT.ts @@ -581,9 +581,8 @@ Nuova scheda - Open link in actual &tab - Apri link nella &scheda corrente + Apri link nella &scheda corrente @@ -615,6 +614,11 @@ Remove folder Rimuovi cartella + + + Open link in current &tab + + Rename bookmark @@ -674,9 +678,13 @@ Nuova Scheda - Open link in actual &tab - Apri il collegamento nella &scheda attuale + Apri il collegamento nella &scheda attuale + + + + Open link in current &tab + @@ -1508,9 +1516,13 @@ Nuova Scheda - Open link in actual tab - Apri collegamento nella scheda attuale + Apri collegamento nella scheda attuale + + + + Open link in current tab + @@ -1641,9 +1653,13 @@ Nuova Scheda - Open link in actual tab - Apri collegamento nella scheda attuale + Apri collegamento nella scheda attuale + + + + Open link in current tab + @@ -2157,10 +2173,8 @@ Pagina Iniziale: - - Use actual - Usa attuale + Usa attuale @@ -2371,6 +2385,12 @@ Open speed dial Apri speed dial + + + + Use current + + Active profile: @@ -3693,8 +3713,12 @@ Si prega di aggiungere l'icona RSS nella barra di navigazione su un sito ch + Open link in current tab + + + Open link in actual tab - Apri link nella scheda attuale + Apri link nella scheda attuale @@ -4472,22 +4496,22 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari TabbedWebView - + Failed loading page - + Loading... Caricamento... - + %1 - QupZilla - + Inspect Element @@ -4863,198 +4887,198 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Nuova scheda - + Open link in new &tab Apri il link in una nuova &scheda - + Open link in new &window Apri il link in una nuova &finestra - + B&ookmark link &Aggiungi il link ai segnalibri - + &Save link as... &Salva il link come... - + Send link... Invia link... - + &Copy link address &Copia indirizzo link - + Show i&mage Mostra imma&gine - + Copy im&age Copia im&magine - + Copy image ad&dress Copia indiri&zzo immagine - + &Save image as... Sa&lva immagine come... - + Send image... Invia immagine... - + &Back &Indietro - + &Forward &Avanti - - + + &Reload &Ricarica - + S&top S&top - + This frame Questa cornice - + Show &only this frame Mostra s&olo questa cornice - + Show this frame in new &tab Mostra questa cornice in una nuova &scheda - + Print frame Stampa cornice - + Zoom &in &Ingrandisci - + &Zoom out &Riduci - + Reset Ripristina - + Show so&urce of frame Mostra sor&gente della cornice - + Book&mark page Aggi&ungi la pagina ai Segnalibri - + &Save page as... Sa&lva pagina come... - + &Copy page link - + Send page link... - + &Print page - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5063,22 +5087,22 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Invia pagina... - + Select &all Seleziona &tutto - + Validate page - + Show so&urce code Mostra codice so&rgente - + Show info ab&out site Mostra info su&l sito @@ -5087,12 +5111,12 @@ Dopo l'aggiunta o la rimozione dei percorsi di certificazione, è necessari Mostra Is&pettore Web - + Search "%1 .." with %2 Cerca "%1 .." con %2 - + No Named Page Pagina senza nome diff --git a/translations/nl_NL.ts b/translations/nl_NL.ts index 91c546721..e8d393761 100644 --- a/translations/nl_NL.ts +++ b/translations/nl_NL.ts @@ -576,9 +576,8 @@ Verwijder map - Open link in actual &tab - Open link in actueel &tabblad + Open link in actueel &tabblad @@ -605,6 +604,11 @@ Choose name for folder: Kies naam voor map: + + + Open link in current &tab + + Open link in &new tab @@ -674,9 +678,13 @@ Nieuw tabblad - Open link in actual &tab - Open link in actuele &tab + Open link in actuele &tab + + + + Open link in current &tab + @@ -1509,9 +1517,13 @@ werd niet gevonden! Nieuw tabblad - Open link in actual tab - Open link in huidig tabblad + Open link in huidig tabblad + + + + Open link in current tab + @@ -1642,9 +1654,13 @@ werd niet gevonden! Nieuw tabblad - Open link in actual tab - Open link in huidig tabblad + Open link in huidig tabblad + + + + Open link in current tab + @@ -2142,10 +2158,8 @@ werd niet gevonden! Open andere pagina... - - Use actual - Gebruik huidige pagina + Gebruik huidige pagina @@ -2345,6 +2359,12 @@ werd niet gevonden! Open speed dial Open speed dial + + + + Use current + + Check for updates on start @@ -3716,8 +3736,12 @@ Voeg enkele toe via het RSS-icoon op de navigatiewerkbalk op een site die feeds + Open link in current tab + + + Open link in actual tab - Open link in huidig tabblad + Open link in huidig tabblad @@ -4496,22 +4520,22 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te TabbedWebView - + Failed loading page Mislukt om pagina te laden - + Loading... - + %1 - QupZilla - + Inspect Element @@ -4906,147 +4930,147 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te - QupZilla - + Open link in new &tab Open link in nieuw &tabblad - + Open link in new &window Open link in nieuw &venster - + B&ookmark link B&ladwijzer link - + &Save link as... &Sla link op als... - + &Copy link address &Kopieer linkadres - + Show i&mage Toon af&beelding - + Copy im&age &Kopieer afbeelding - + Copy image ad&dress Kopieer af&beeldingsadres - + S&top &Stop - + This frame Dit frame - + Show &only this frame Toon &alleen dit frame - + Show this frame in new &tab Toon dit frame in nieuw &tabblad - + Print frame Druk frame af - + Zoom &in Zoom &in - + &Zoom out &Zoom uit - + Reset Zet terug - + Show so&urce of frame Toon &bron van frame - + &Copy page link &Kopieer paginalink - + Send page link... Verstuur paginalink... - + &Print page &Print pagina - + Validate page Valideer pagina - + Show info ab&out site Toon info &over site - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5055,7 +5079,7 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Toon Web-&inspecteur - + &Save image as... &Sla afbeelding op als... @@ -5064,68 +5088,68 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Mislukt om pagina te laden - + &Back &Terug - + &Forward &Vooruit - - + + &Reload &Herlaad - + Book&mark page &Bladwijzer pagina - + &Save page as... &Sla pagina op als... - + Select &all &Selecteer alles - + Show so&urce code &Toon broncode - + Send text... Verstuur tekst... - + Google Translate Google Vertalen - + Dictionary Woordenboek - + Go to &web address Ga naar &webadres - + Search "%1 .." with %2 Zoek "%1 .." met %2 - + No Named Page Niet benoemde pagina @@ -5134,12 +5158,12 @@ Na het toevoegen of verwijderen van paden, is het noodzakelijk om de browser te Nieuw tabblad - + Send link... Verstuur link... - + Send image... Verstuur afbeelding... diff --git a/translations/pl_PL.ts b/translations/pl_PL.ts index 5382e068e..55995b549 100644 --- a/translations/pl_PL.ts +++ b/translations/pl_PL.ts @@ -592,9 +592,13 @@ Usuń katalog - Open link in actual &tab - Otwórz odnośnik w &aktualnej karcie + Otwórz odnośnik w &aktualnej karcie + + + + Open link in current &tab + @@ -675,9 +679,13 @@ Nowa karta - Open link in actual &tab - Otwórz odnośnik w &aktualnej karcie + Otwórz odnośnik w &aktualnej karcie + + + + Open link in current &tab + @@ -1510,9 +1518,13 @@ Nowa karta - Open link in actual tab - Otwórz odnośnik w aktualnej karcie + Otwórz odnośnik w aktualnej karcie + + + + Open link in current tab + @@ -1643,9 +1655,13 @@ Nowa karta - Open link in actual tab - Otwórz odnośnik w aktualnej karcie + Otwórz odnośnik w aktualnej karcie + + + + Open link in current tab + @@ -2261,10 +2277,8 @@ Karty - - Use actual - Użyj aktualnej + Użyj aktualnej @@ -2441,6 +2455,12 @@ Send Do Not Track header to servers Wysyłaj serwerom nagłówek Do Not Track + + + + Use current + + Check for updates on start @@ -3726,8 +3746,12 @@ Dodawaj kanały klikając na ikonę RSS pasku nawigacyjnym. + Open link in current tab + + + Open link in actual tab - Otwórz odnośnik w aktualnej karcie + Otwórz odnośnik w aktualnej karcie @@ -4505,22 +4529,22 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi TabbedWebView - + Failed loading page - + Loading... Wczytywanie... - + %1 - QupZilla - + Inspect Element @@ -4923,147 +4947,147 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi - QupZilla - + Open link in new &tab Otwórz odnośnik w &nowej karcie - + Open link in new &window Otwórz odnośnik w &nowej karcie - + B&ookmark link Dodaj odnośnik do &zakładek - + &Save link as... &Zapisz odnośnik jako... - + &Copy link address &Kopiuj adres odnośnika - + Show i&mage Pokaż &obrazek - + Copy im&age &Kopiuj obraz - + Copy image ad&dress Kopiuj adres &obrazka - + S&top &Zatrzymaj - + This frame Ta ramka - + Show &only this frame Pokaż &tylko tą ramkę - + Show this frame in new &tab Pokaż tą ramkę w nowej &karcie - + Print frame Drukuj ramkę - + Zoom &in Powięk&sz - + &Zoom out Po&mniejsz - + Reset Resetuj - + Show so&urce of frame Pokaż &źródło ramki - + &Copy page link &Kopiuj odnośnik strony - + Send page link... Wyślij odnośnik strony... - + &Print page &Drukuj stronę - + Validate page Sprawdź poprawność strony - + Show info ab&out site Pokaż &informacje o stronie - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5072,7 +5096,7 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Pokaż Web Inspe&ktora - + &Save image as... &Zapisz obrazek jako... @@ -5081,68 +5105,68 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Błąd wczytywania strony - + &Back &Cofnij - + &Forward &Dalej - - + + &Reload &Odśwież - + Book&mark page Dodaj&stronę do zakładek - + &Save page as... &Zapisz stronę jako... - + Select &all Zaznacz &wszystko - + Show so&urce code Pokaż kod &źródłowy - + Send text... Wyślij tekst... - + Google Translate Translator Google - + Dictionary Słownik - + Go to &web address Przejdź do adresu &www - + Search "%1 .." with %2 Szukaj "%1 .." z %2 - + No Named Page Strona bez nazwy @@ -5151,12 +5175,12 @@ Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomi Nowa karta - + Send link... Wyslij odnośnik... - + Send image... Wyślij obrazek... diff --git a/translations/pt_PT.ts b/translations/pt_PT.ts index 518d18a3e..53dd2b922 100644 --- a/translations/pt_PT.ts +++ b/translations/pt_PT.ts @@ -591,9 +591,13 @@ Remover pasta - Open link in actual &tab - Abrir ligação no separador a&tual + Abrir ligação no separador a&tual + + + + Open link in current &tab + @@ -674,9 +678,13 @@ Novo separador - Open link in actual &tab - Abrir ligação no separador a&tual + Abrir ligação no separador a&tual + + + + Open link in current &tab + @@ -1508,9 +1516,13 @@ não foi encontrado! Novo separador - Open link in actual tab - Abrir ligação no separador atual + Abrir ligação no separador atual + + + + Open link in current tab + @@ -1641,9 +1653,13 @@ não foi encontrado! Novo separador - Open link in actual tab - Abrir ligação no separador atual + Abrir ligação no separador atual + + + + Open link in current tab + @@ -2139,10 +2155,8 @@ não foi encontrado! Página inicial: - - Use actual - Utilizar atual + Utilizar atual @@ -2315,6 +2329,12 @@ não foi encontrado! Allow JavaScript Permitir JavaScript + + + + Use current + + Active profile: @@ -3722,8 +3742,12 @@ Adicione as fontes com o ícone RSS existente na barra de navegação, nas pági + Open link in current tab + + + Open link in actual tab - Abrir ligação no separador atual + Abrir ligação no separador atual @@ -4501,22 +4525,22 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup TabbedWebView - + Failed loading page Falha ao carregar a página - + Loading... A carregar... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Inspecionar elemento @@ -4919,42 +4943,42 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup A carregar... - + &Copy page link &Copiar ligação da página - + Send page link... Enviar ligação da página... - + &Print page Im&primir página - + Validate page Validar página - + Send text... Enviar texto... - + Google Translate Google Translate - + Dictionary Dicionário - + Go to &web address Ir para endereço &web @@ -4963,7 +4987,7 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Novo separador - + Open link in new &tab Abrir ligação em novo &separador @@ -4972,158 +4996,158 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup - QupZilla - + Open link in new &window Abrir ligação em nova &janela - + B&ookmark link Marcar ligaçã&o - + &Save link as... &Gravar ligação como... - + Send link... Enviar ligação... - + &Copy link address &Copiar endereço da ligação - + Show i&mage &Mostrar imagem - + Copy im&age Copi&ar imagem - + Copy image ad&dress Copiar en&dereço da imagem - + &Save image as... &Gravar imagem como... - + Send image... Enviar imagem... - + &Back &Recuar - + &Forward &Avançar - - + + &Reload &Recarregar - + S&top Pa&rar - + This frame Esta moldura - + Show &only this frame M&ostrar apenas esta moldura - + Show this frame in new &tab Mostrar es&ta moldura em novo separador - + Print frame Imprimir moldura - + Zoom &in Ampl&iar - + &Zoom out Redu&zir - + Reset Restaurar - + Show so&urce of frame Mostrar código fonte da mold&ura - + Book&mark page &Marcar esta página - + &Save page as... &Gravar página como... - + &Play Re&produzir - + &Pause &Pausa - + Un&mute Co&m som - + &Mute Se&m som - + &Copy Media Address &Copiar endereço multimédia - + &Send Media Address &Enviar endereço multimédia - + Save Media To &Disk Gravar multimédia no &disco @@ -5132,17 +5156,17 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Enviar página... - + Select &all Selecion&ar tudo - + Show so&urce code Mos&trar código fonte - + Show info ab&out site Mostrar inf&ormações da página @@ -5151,12 +5175,12 @@ Após adicionar ou remover os caminhos dos certificados, tem que reiniciar o Qup Mostrar &inspetor web - + Search "%1 .." with %2 Procurar "%1 ..." no %2 - + No Named Page Página sem nome diff --git a/translations/ru_RU.ts b/translations/ru_RU.ts index 76dbdced3..b45ec0260 100644 --- a/translations/ru_RU.ts +++ b/translations/ru_RU.ts @@ -594,9 +594,13 @@ Удалить папку - Open link in actual &tab - Открыть ссылку в &текущей вкладке + Открыть ссылку в &текущей вкладке + + + + Open link in current &tab + @@ -677,9 +681,13 @@ Новая вкладка - Open link in actual &tab - Открыть ссылку в &текущей вкладке + Открыть ссылку в &текущей вкладке + + + + Open link in current &tab + @@ -1513,9 +1521,13 @@ Новая вкладка - Open link in actual tab - Открыть ссылку в текущей вкладке + Открыть ссылку в текущей вкладке + + + + Open link in current tab + @@ -1646,9 +1658,13 @@ Новая вкладка - Open link in actual tab - Открыть ссылку в текущей вкладке + Открыть ссылку в текущей вкладке + + + + Open link in current tab + @@ -2093,10 +2109,8 @@ Домашняя страница: - - Use actual - Использовать текущий + Использовать текущий @@ -2269,6 +2283,12 @@ Allow JavaScript Использовать JavaScript + + + + Use current + + Active profile: @@ -3678,8 +3698,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds. + Open link in current tab + + + Open link in actual tab - Открыть ссылку в текущей вкладке + Открыть ссылку в текущей вкладке @@ -4459,22 +4483,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Невозможно загрузить страницу - + Loading... Загрузка... - + %1 - QupZilla - + Inspect Element @@ -4821,198 +4845,198 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Новая вкладка - + Open link in new &tab Открыть ссылку в новой &вкладке - + Open link in new &window Открыть ссылку в новом &окне - + B&ookmark link Добавить ссылку в &закладки - + &Save link as... С&охранить ссылку как... - + Send link... Послать адрес... - + &Copy link address &Копировать адрес - + Show i&mage Показать и&зображение - + Copy im&age Копи&ровать изображение - + Copy image ad&dress Копировать &адрес изображения - + &Save image as... Со&хранить изображение как... - + Send image... Послать изображение... - + &Back &Назад - + &Forward &Вперед - - + + &Reload &Обновить - + S&top &Прервать - + This frame - + Show &only this frame - + Show this frame in new &tab - + Print frame - + Zoom &in - + &Zoom out - + Reset Восстановить - + Show so&urce of frame - + Book&mark page Добавить в &закладки - + &Save page as... &Сохранить страницу как... - + &Copy page link - + Send page link... - + &Print page - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5021,22 +5045,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Послать страницу... - + Select &all В&ыделить всё - + Validate page - + Show so&urce code Показать &исходый код - + Show info ab&out site Показывать &информацию о сайте @@ -5045,12 +5069,12 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla Показать &Web инспектор - + Search "%1 .." with %2 Искать "%1 .." с %2 - + No Named Page Безымянная страница diff --git a/translations/sk_SK.ts b/translations/sk_SK.ts index b3e529419..71570d9b4 100644 --- a/translations/sk_SK.ts +++ b/translations/sk_SK.ts @@ -407,7 +407,7 @@ Open link in actual &tab - Otvoriť odkaz na ak&tuálnej karte + Otvoriť odkaz na ak&tuálnej karte Title @@ -505,6 +505,10 @@ Choose name and location of this bookmark. Zvoľte názov a umiestnenie záložky. + + Open link in current &tab + + BookmarksModel @@ -525,7 +529,7 @@ BookmarksSideBar Open link in actual &tab - Otvoriť odkaz na &aktuálnej karte + Otvoriť odkaz na &aktuálnej karte Copy address @@ -547,6 +551,10 @@ &Delete O&dstrániť + + Open link in current &tab + + BookmarksToolbar @@ -1192,7 +1200,7 @@ Open link in actual tab - Otvoriť odkaz v aktuálnej karte + Otvoriť odkaz v aktuálnej karte Are you sure to delete all history? @@ -1234,6 +1242,10 @@ Copy address Kopírovať adresu + + Open link in current tab + + HistoryModel @@ -1310,7 +1322,7 @@ Open link in actual tab - Otvoriť odkaz v aktuálnej karte + Otvoriť odkaz v aktuálnej karte Copy address @@ -1332,6 +1344,10 @@ Search... Hľadať... + + Open link in current tab + + HtmlImporter @@ -1905,7 +1921,7 @@ Use actual - Použiť aktuálnu + Použiť aktuálnu Allow JAVA @@ -2263,6 +2279,10 @@ Open new tabs after active tab Otvoriť nové panely za aktívnym panelom + + Use current + + QObject @@ -2912,7 +2932,7 @@ Open link in actual tab - Otvoriť odkaz na aktuálnej karte + Otvoriť odkaz na aktuálnej karte Edit RSS Feed @@ -2992,6 +3012,10 @@ Prosím pridajte nejaké kliknutím na RSS ikonku v navigačnom paneli na strán New feed Nový kanál + + Open link in current tab + + RSSNotification diff --git a/translations/sr_BA.ts b/translations/sr_BA.ts index 8b806f239..791157b10 100644 --- a/translations/sr_BA.ts +++ b/translations/sr_BA.ts @@ -572,8 +572,12 @@ + Open link in current &tab + + + Open link in actual &tab - Отвори везу у &текућем језичку + Отвори везу у &текућем језичку @@ -650,9 +654,13 @@ Тражи... - Open link in actual &tab - Отвори везу у &текућем језичку + Отвори везу у &текућем језичку + + + + Open link in current &tab + @@ -1427,9 +1435,13 @@ Оптимизуј базу података - Open link in actual tab - Отвори везу у текућем језичку + Отвори везу у текућем језичку + + + + Open link in current tab + @@ -1556,9 +1568,13 @@ име - Open link in actual tab - Отвори везу у текућем језичку + Отвори везу у текућем језичку + + + + Open link in current tab + @@ -1901,10 +1917,8 @@ Домаћа страница: - - Use actual - Користи текућу + Користи текућу @@ -2077,6 +2091,12 @@ Allow JavaScript Дозволи Јаваскрипте + + + + Use current + + Active profile: @@ -3452,8 +3472,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds. + Open link in current tab + + + Open link in actual tab - Отвори везу у текућем језичку + Отвори везу у текућем језичку @@ -4197,22 +4221,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Неуспјех учитавања странице - + Loading... Учитавам... - + %1 - QupZilla %1 - Капзила - + Inspect Element Провјери елемент @@ -4451,228 +4475,228 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebView - + No Named Page Нема именоване странице - + &Back На&зад - + &Forward На&пријед - - + + &Reload &Учитај поново - + S&top Заус&тави - + This frame Оквир - + Show &only this frame П&рикажи само овај оквир - + Show this frame in new &tab Прикажи овај оквир у новом &језичку - + Print frame Штампај оквир - + Zoom &in У&вличај - + &Zoom out У&мањи - + Reset Стварна величина - + Show so&urce of frame Прикажи извор о&квира - + Book&mark page &Обиљежи страницу - + &Save page as... &Сачувај страницу као... - + &Copy page link &Копирај везу странице - + Send page link... Пошаљи везу странице... - + &Print page &Штампај страницу - + Select &all Из&абери све - + Validate page Провјера кôда - + Show so&urce code Прикажи &изворни кôд - + Show info ab&out site По&даци о сајту - + Open link in new &tab Отвори везу у новом &језичку - + Open link in new &window Отвори везу у новом &прозору - + B&ookmark link &Обиљежи везу - + &Save link as... &Сачувај везу као... - + Send link... Пошаљи везу... - + &Copy link address &Копирај адресу везе - + Show i&mage П&рикажи слику - + Copy im&age К&опирај слику - + Copy image ad&dress Копирај &адресу слике - + &Save image as... Сачувај с&лику као... - + Send image... Пошаљи слику... - + Send text... Пошаљи текст... - + Google Translate Гуглов преводилац - + Dictionary Рјечник - + Go to &web address Иди на &веб адресу - + Search "%1 .." with %2 Тражи „%1“ на %2 - + &Play &Пусти - + &Pause &Паузирај - + Un&mute Вра&ти звук - + &Mute У&тишај - + &Copy Media Address &Копирај адресу медија - + &Send Media Address П&ошаљи адресу медија - + Save Media To &Disk &Сачувај медиј на диск diff --git a/translations/sr_RS.ts b/translations/sr_RS.ts index 497a904da..51ba6bf98 100644 --- a/translations/sr_RS.ts +++ b/translations/sr_RS.ts @@ -572,8 +572,12 @@ + Open link in current &tab + + + Open link in actual &tab - Отвори везу у &текућем језичку + Отвори везу у &текућем језичку @@ -650,9 +654,13 @@ Тражи... - Open link in actual &tab - Отвори везу у &текућем језичку + Отвори везу у &текућем језичку + + + + Open link in current &tab + @@ -1427,9 +1435,13 @@ Оптимизуј базу података - Open link in actual tab - Отвори везу у текућем језичку + Отвори везу у текућем језичку + + + + Open link in current tab + @@ -1556,9 +1568,13 @@ име - Open link in actual tab - Отвори везу у текућем језичку + Отвори везу у текућем језичку + + + + Open link in current tab + @@ -1901,10 +1917,8 @@ Домаћа страница: - - Use actual - Користи текућу + Користи текућу @@ -2077,6 +2091,12 @@ Allow JavaScript Дозволи Јаваскрипте + + + + Use current + + Active profile: @@ -3452,8 +3472,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds. + Open link in current tab + + + Open link in actual tab - Отвори везу у текућем језичку + Отвори везу у текућем језичку @@ -4197,22 +4221,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page Неуспех учитавања странице - + Loading... Учитавам... - + %1 - QupZilla %1 - Капзила - + Inspect Element Провери елемент @@ -4451,228 +4475,228 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla WebView - + No Named Page Нема именоване странице - + &Back На&зад - + &Forward На&пред - - + + &Reload &Учитај поново - + S&top Заус&тави - + This frame Оквир - + Show &only this frame П&рикажи само овај оквир - + Show this frame in new &tab Прикажи овај оквир у новом &језичку - + Print frame Штампај оквир - + Zoom &in У&величај - + &Zoom out У&мањи - + Reset Стварна величина - + Show so&urce of frame Прикажи извор о&квира - + Book&mark page &Обележи страницу - + &Save page as... &Сачувај страницу као... - + &Copy page link &Копирај везу странице - + Send page link... Пошаљи везу странице... - + &Print page &Штампај страницу - + Select &all Из&абери све - + Validate page Провера кôда - + Show so&urce code Прикажи &изворни кôд - + Show info ab&out site По&даци о сајту - + Open link in new &tab Отвори везу у новом &језичку - + Open link in new &window Отвори везу у новом &прозору - + B&ookmark link &Обележи везу - + &Save link as... &Сачувај везу као... - + Send link... Пошаљи везу... - + &Copy link address &Копирај адресу везе - + Show i&mage П&рикажи слику - + Copy im&age К&опирај слику - + Copy image ad&dress Копирај &адресу слике - + &Save image as... Сачувај с&лику као... - + Send image... Пошаљи слику... - + Send text... Пошаљи текст... - + Google Translate Гуглов преводилац - + Dictionary Речник - + Go to &web address Иди на &веб адресу - + Search "%1 .." with %2 Тражи „%1“ на %2 - + &Play &Пусти - + &Pause &Паузирај - + Un&mute Вра&ти звук - + &Mute У&тишај - + &Copy Media Address &Копирај адресу медија - + &Send Media Address П&ошаљи адресу медија - + Save Media To &Disk &Сачувај медиј на диск diff --git a/translations/sv_SE.ts b/translations/sv_SE.ts index c6c3e491f..9a06027ec 100644 --- a/translations/sv_SE.ts +++ b/translations/sv_SE.ts @@ -583,9 +583,13 @@ Ta bort mapp - Open link in actual &tab - Öppna länk i nuvarande &flik + Öppna länk i nuvarande &flik + + + + Open link in current &tab + @@ -666,9 +670,13 @@ Ny flik - Open link in actual &tab - Öppna länk i nuvarande &flik + Öppna länk i nuvarande &flik + + + + Open link in current &tab + @@ -1496,9 +1504,13 @@ Ny flik - Open link in actual tab - Öppna länk i nuvarande flik + Öppna länk i nuvarande flik + + + + Open link in current tab + @@ -1629,9 +1641,13 @@ Ny flik - Open link in actual tab - Öppna länk i nuvarande flik + Öppna länk i nuvarande flik + + + + Open link in current tab + @@ -2123,10 +2139,8 @@ Hemsida: - - Use actual - Använd nuvarande + Använd nuvarande @@ -2299,6 +2313,12 @@ Allow JavaScript Tillåt Javaskript + + + + Use current + + Active profile: @@ -3691,8 +3711,12 @@ Lägg till flöden med RSS-ikonen i navigeringsraden från sidor som tillhandah + Open link in current tab + + + Open link in actual tab - Öppna länk i nuvarande flik + Öppna länk i nuvarande flik @@ -4470,22 +4494,22 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s TabbedWebView - + Failed loading page Misslyckades med att hämta sidan - + Loading... Hämtar... - + %1 - QupZilla %1 - QupZilla - + Inspect Element Granska element @@ -4887,42 +4911,42 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Hämtar... - + &Copy page link &Kopiera sidlänk - + Send page link... Skicka sidans länk... - + &Print page &Skriv ut sida - + Validate page Validera sida - + Send text... Skicka text... - + Google Translate Google Översätt - + Dictionary Ordlista - + Go to &web address Gå till &webadress @@ -4931,178 +4955,178 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Ny flik - + Open link in new &tab Öppna länk i ny &flik - + Open link in new &window Öppna länk i nytt &fönster - + B&ookmark link Bokmärk &länk - + &Save link as... &Spara länk som... - + Send link... Skicka länk... - + &Copy link address &Kopiera länkadress - + Show i&mage Visa &bild - + Copy im&age Kopiera &bild - + Copy image ad&dress Kopiera bild&adress - + &Save image as... &Spara bild som... - + Send image... Skicka bild... - + &Back &Bakåt - + &Forward &Framåt - - + + &Reload &Hämta om - + S&top &Stopp - + This frame Denna ram - + Show &only this frame Visa &endast denna ramen - + Show this frame in new &tab Visa denna ramen i ny &flik - + Print frame Skriv ut ram - + Zoom &in Zooma &in - + &Zoom out Zooma &ut - + Reset Återställ - + Show so&urce of frame Visa ramens &källa - + Book&mark page Bok&märk sida - + &Save page as... &Spara sida som... - + Select &all Markera &allt - + Show so&urce code Visa &källkod - + Show info ab&out site Visa &information om denna sida - + &Play &Spela upp - + &Pause &Paus - + Un&mute - + &Mute &Tysta - + &Copy Media Address &Kopiera medieadress - + &Send Media Address &Skicka medieadress - + Save Media To &Disk Spara media till &hårddisk @@ -5111,12 +5135,12 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s Visa webbinspektören - + Search "%1 .." with %2 Sök efter"%1 .."på %2 - + No Named Page Namnlös sida diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts index 4632899f2..54ac1e5b8 100644 --- a/translations/zh_CN.ts +++ b/translations/zh_CN.ts @@ -587,9 +587,8 @@ 选择书签的名称和位置. - Open link in actual &tab - 在当前标签中打开链接 &tab + 在当前标签中打开链接 &tab @@ -611,6 +610,11 @@ Remove folder 删除文件夹 + + + Open link in current &tab + + Rename bookmark @@ -670,9 +674,13 @@ 新标签 - Open link in actual &tab - 在当前标签页中打开链接 &tab + 在当前标签页中打开链接 &tab + + + + Open link in current &tab + @@ -1502,9 +1510,13 @@ 新标签 - Open link in actual tab - 在当前标签打开链接 + 在当前标签打开链接 + + + + Open link in current tab + @@ -1635,9 +1647,13 @@ 新标签 - Open link in actual tab - 在当前标签打开链接 + 在当前标签打开链接 + + + + Open link in current tab + @@ -2144,10 +2160,8 @@ 主页: - - Use actual - 实际使用 + 实际使用 @@ -2363,6 +2377,12 @@ Open speed dial 打开快速拨号 + + + + Use current + + Active profile: @@ -3683,8 +3703,12 @@ Please add some with RSS icon in navigation bar on site which offers feeds. + Open link in current tab + + + Open link in actual tab - 在当前标签中打开链接 + 在当前标签中打开链接 @@ -4461,22 +4485,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla TabbedWebView - + Failed loading page 载入页面失败 - + Loading... 载入中... - + %1 - QupZilla - + Inspect Element @@ -4850,198 +4874,198 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla 新标签 - + Open link in new &tab 在新标签中打开链接&t - + Open link in new &window 在新窗口中打开链接&w - + B&ookmark link 书签链接&o - + &Save link as... 链接另存为&S... - + Send link... 发送链接... - + &Copy link address 复制链接地址&C - + Show i&mage 显示图像&m - + Copy im&age 复制图像&a - + Copy image ad&dress 复制图像地址&d - + &Save image as... 图像另存为&S... - + Send image... 发送图像... - + &Back 后退&B - + &Forward 前进&F - - + + &Reload 刷新&R - + S&top 停止&t - + This frame 此帧 - + Show &only this frame 仅显示此帧&o - + Show this frame in new &tab 在新选项卡的显示帧&t - + Print frame 打印帧 - + Zoom &in 放大&i - + &Zoom out 缩小&Z - + Reset 重置 - + Show so&urce of frame 显示帧源码&u - + Book&mark page 加入书签&m - + &Save page as... 保存网页为&S... - + &Copy page link - + Send page link... - + &Print page - + Send text... - + Google Translate - + Dictionary - + Go to &web address - + &Play - + &Pause - + Un&mute - + &Mute - + &Copy Media Address - + &Send Media Address - + Save Media To &Disk @@ -5050,22 +5074,22 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla 发送网页... - + Select &all 选取所有&a - + Validate page - + Show so&urce code 显示源代码&u - + Show info ab&out site 显示有关网站的信息&o @@ -5074,12 +5098,12 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla 显示Web及督察&I - + Search "%1 .." with %2 使用 %2搜索"%1 .." - + No Named Page 无命名页面