mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Announcing Flash plugin support to sites again.
- typo "Italy" language -> "Italian" language - updated Swedish translation
This commit is contained in:
parent
e77c44f709
commit
00f6262afc
4
AUTHORS
4
AUTHORS
|
@ -17,8 +17,8 @@ Heimen Stoffels <vistausss@gmail.com> (Dutch)
|
|||
Peter Vacula <pvacula1989@gmail.com> (Slovak)
|
||||
Ján Ďanovský <dagsoftware@yahoo.com> (Slovak)
|
||||
Unink-Lio <unink4451@163.com> (Chinese)
|
||||
Federico Fabiani <federico.fabiani85@gmail.com> (Italy)
|
||||
Francesco Marinucci <framarinucci@gmail.com> (Italy)
|
||||
Federico Fabiani <federico.fabiani85@gmail.com> (Italian)
|
||||
Francesco Marinucci <framarinucci@gmail.com> (Italian)
|
||||
Jorge Sevilla <jsevi@ozu.es> (Spanish)
|
||||
Michał Szymanowski <tylkobuba@gmail.com> (Polish)
|
||||
Mariusz Fik <fisiu@opensuse.org> (Polish)
|
||||
|
|
Binary file not shown.
|
@ -218,8 +218,8 @@ QString QupZillaSchemeReply::aboutPage()
|
|||
authorString("Ján Ďanovský", "dagsoftware@yahoo.com") + " (Slovak)<br/>" +
|
||||
authorString("Jonathan Hooverman", "jonathan.hooverman@gmail.com") + " (German)<br/>" +
|
||||
authorString("Unink-Lio", "unink4451@163.com") + " (Chinese)<br/>" +
|
||||
authorString("Federico Fabiani", "federico.fabiani85@gmail.com") + " (Italy)<br/>" +
|
||||
authorString("Francesco Marinucci", "framarinucci@gmail.com") + " (Italy)<br/>" +
|
||||
authorString("Federico Fabiani", "federico.fabiani85@gmail.com") + " (Italian)<br/>" +
|
||||
authorString("Francesco Marinucci", "framarinucci@gmail.com") + " (Italian)<br/>" +
|
||||
authorString("Jorge Sevilla", "jsevi@ozu.es") + " (Spanish)<br/>" +
|
||||
authorString("Michał Szymanowski", "tylkobuba@gmail.com") + " (Polish)<br/>" +
|
||||
authorString("Mariusz Fik", "fisiu@opensuse.org") + " (Polish)<br/>" +
|
||||
|
|
|
@ -90,8 +90,8 @@ void AboutDialog::showAuthors()
|
|||
"Ján Ďanovský (Slovakia)<br/>"
|
||||
"Jonathan Hooverman (German)<br/>"
|
||||
"Unink-Lio (Chinese)<br/>"
|
||||
"Federico Fabiani (Italy)<br/>"
|
||||
"Francesco Marinucci (Italy)<br/>"
|
||||
"Federico Fabiani (Italian)<br/>"
|
||||
"Francesco Marinucci (Italian)<br/>"
|
||||
"Jorge Sevilla (Spanish)<br/>"
|
||||
"Michał Szymanowski (Polish)<br/>"
|
||||
"Mariusz Fik (Polish)<br/>"
|
||||
|
|
|
@ -83,8 +83,9 @@ WebPage* WebPluginFactory::parentPage()
|
|||
|
||||
QList<QWebPluginFactory::Plugin> WebPluginFactory::plugins() const
|
||||
{
|
||||
QList<QWebPluginFactory::Plugin> plugins;
|
||||
return plugins;
|
||||
// QList<QWebPluginFactory::Plugin> plugins;
|
||||
// return plugins;
|
||||
|
||||
// QWebPluginFactory::Plugin plugin;
|
||||
// plugin.name = QLatin1String("ClickToFlashPlugin"); // Mmmm, it should return this,
|
||||
// QWebPluginFactory::MimeType mimeType; // but with WebKit 533.3, click2flash
|
||||
|
@ -93,4 +94,16 @@ QList<QWebPluginFactory::Plugin> WebPluginFactory::plugins() const
|
|||
// plugin.mimeTypes.append(mimeType); // On some pages it also force to load non-flash
|
||||
// plugins.append(plugin); // content -> in most cases advertisements.
|
||||
// return plugins; // Not bad to have it hidden :-)
|
||||
|
||||
QList<QWebPluginFactory::Plugin> plugins;
|
||||
QWebPluginFactory::Plugin plugin;
|
||||
QWebPluginFactory::MimeType mimeType;
|
||||
|
||||
mimeType.fileExtensions << QLatin1String("swf");
|
||||
mimeType.name = "application/x-shockwave-flash";
|
||||
|
||||
plugin.name = "ClickToFlashPlugin";
|
||||
plugin.mimeTypes.append(mimeType);
|
||||
plugins.append(plugin);
|
||||
return plugins;
|
||||
}
|
||||
|
|
|
@ -7,21 +7,21 @@ $header_description = "Navegador Web";
|
|||
$menu_home = "Inicio";
|
||||
$menu_screenshots = "Capturas de pantalla";
|
||||
$menu_download = "Descargar";
|
||||
$menu_faq = "FAQ";
|
||||
$menu_reportbug = "Informar de un fallo";
|
||||
$menu_about = "Contribuir";
|
||||
$footer_site = "www.qupzilla.com";
|
||||
$translated_by = "Página traducida por Jorge Sevilla"; // "Page translated by <translator's name>"
|
||||
$translated_by = ""; // "Página traducida por Jorge Sevilla"
|
||||
|
||||
//Home Page
|
||||
$actual_version = "Versión actual";
|
||||
$actual_version_text = "La versión actual es de ". $qupzilla_version_date .
|
||||
" y es la versión " . $qupzilla_version . ". Lista de cambios. <br/>¡No dude en <a href=\"download\">descargar</a> ahora mismo!";
|
||||
$actual_version_text = "La versión actual es del ". $qupzilla_version_date .
|
||||
" y es la versión " . $qupzilla_version . ". Novedades en la lista de cambios. <br/>¡No dude en <a href=\"download\">descargarla</a> ahora mismo!";
|
||||
$actual_version_button = "DESCARGAR";
|
||||
$older_versions = "Lista de cambios";
|
||||
$older_versions_text = "¿Desea saber qué ha cambiado desde aquella versión hasta esta? <br/>Puede encontrarlo todo en la <a>lista de cambios</a> de github!";
|
||||
$older_versions_text = "¿Desea saber qué ha cambiado desde la anterior versión hasta la actual? <br/>¡Puede encontrarlo todo en la <a>lista de cambios</a> de github!";
|
||||
$older_versions_button = "Lista de cambios";
|
||||
$reportbug = "Informar de un fallo";
|
||||
$reportbug_text = "¿Ha encontrado un fallo o únicamente tiene una sugerencia para <a>mejorar</a> QupZilla?<br/>
|
||||
$reportbug_text = "¿Ha encontrado un fallo o tiene una sugerencia para <a>mejorar</a> QupZilla?<br/>
|
||||
Por favor, abra un informe en el seguimiento de fallos de github.";
|
||||
$reportbug_button = "Informar ahora";
|
||||
$technology = "Tecnología";
|
||||
|
@ -34,9 +34,9 @@ $library_header = "Biblioteca unificada";
|
|||
$library_text = "QupZilla unifica los marcadores, el historial y el lector rss en una sola ventana organizada. ¡No a la múltiples ventanas, QupZilla utiliza sólo una!<br/>
|
||||
Con el lector rss integrado, puede estar al día de sus sitios favoritos. QupZilla también puede importar los marcadores desde otros navegadores.";
|
||||
$adblock_header = "Bloqueador de publicidad integrado";
|
||||
$adblock_text = "¿Está cansado de sitios web repletos de publicidad? ¿Consumen éstos su ancho de banda y su tiempo? Lo único que necesita con QupZilla es actualizar Easylist o quizás añadir sus propias reglas para empezar a navegar libre de publicidad.";
|
||||
$adblock_text = "¿Está cansado de sitios web repletos de publicidad? ¿Consumen éstos su ancho de banda y su tiempo? Lo único que necesita con QupZilla es actualizar Easylist o añadir sus propias reglas para empezar a navegar libre de publicidad.";
|
||||
$speeddial_header = "Marcación rápida";
|
||||
$speeddial_text = "¡Esta popular extensión está finalmente disponible para los usuarios de QupZilla! Puede acceder a sus páginas favoritas tan rápido como desee al abrir una pestaña nueva. No es necesario decir que soporta completamente arrastrar&soltar y la carga de miniaturas de las páginas.";
|
||||
$speeddial_text = "¡Esta popular extensión está finalmente disponible para los usuarios de QupZilla! Puede acceder a sus páginas favoritas tan rápido como desee al abrir una pestaña nueva. No es necesario decir que soporta arrastrar y soltar, además de mostrar las miniaturas de las páginas.";
|
||||
$devnews_header = "Noticias de desarrollo";
|
||||
$feed_loading = "Cargando...";
|
||||
|
||||
|
@ -45,8 +45,8 @@ $other_linux = "Otro Linux";
|
|||
$source_code = "Código fuente";
|
||||
$choose_os = "Por favor, eliga su sistema operativo";
|
||||
$windows_text = "Los instaladores de Windows 32bit y 64bit pueden descargarse haciendo click en los enlaces de abajo";
|
||||
$ubuntu_text = "Los usuarios de Ubuntu Oneiric, Natty y Maverick pueden instalar QupZilla ejecutando estos comandos";
|
||||
$for_development_version = "para la versión en desarrollo:";
|
||||
$ubuntu_text = "Los usuarios de Oneiric, Natty y Maverick pueden instalar QupZilla ejecutando estos comandos:";
|
||||
$for_development_version = "Para la versión en desarrollo:";
|
||||
$packages_text = "Paquetes de 32bit y 64bit";
|
||||
$tarballs_text = "Archivos tar precompilados en 32bit y 64bit";
|
||||
$can_be_downloaded = "pueden descargarse haciendo click en los enlaces de abajo";
|
||||
|
|
|
@ -184,7 +184,7 @@
|
|||
<message>
|
||||
<location filename="../src/adblock/adblockicon.cpp" line="48"/>
|
||||
<source>Blocked URL (AdBlock Rule) - click to edit rule</source>
|
||||
<translation></translation>
|
||||
<translation>Blockerad Url (AdBlock-regel) - klicka för att redigera regel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/adblock/adblockicon.cpp" line="51"/>
|
||||
|
@ -194,7 +194,7 @@
|
|||
<message>
|
||||
<location filename="../src/adblock/adblockicon.cpp" line="55"/>
|
||||
<source>Learn About Writing &Rules</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Lär dig hur man skriver &regler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>New tab</source>
|
||||
|
@ -589,7 +589,7 @@
|
|||
<message>
|
||||
<location filename="../src/bookmarks/bookmarksmanager.cpp" line="240"/>
|
||||
<source>Open link in current &tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Öppna länk i nuvarande &flik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/bookmarks/bookmarksmanager.cpp" line="241"/>
|
||||
|
@ -676,7 +676,7 @@
|
|||
<message>
|
||||
<location filename="../src/sidebar/bookmarkssidebar.cpp" line="110"/>
|
||||
<source>Open link in current &tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Öppna länk i nuvarande &flik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/sidebar/bookmarkssidebar.cpp" line="111"/>
|
||||
|
@ -865,7 +865,8 @@
|
|||
<location filename="../src/tools/certificateinfowidget.ui" line="24"/>
|
||||
<location filename="../src/tools/certificateinfowidget.ui" line="99"/>
|
||||
<source>Common Name (CN):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translatorcomment>Vad menas med Common? Och vad att göra med förkortningen?</translatorcomment>
|
||||
<translation>Namn (CN):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/certificateinfowidget.ui" line="41"/>
|
||||
|
@ -877,7 +878,7 @@
|
|||
<location filename="../src/tools/certificateinfowidget.ui" line="58"/>
|
||||
<location filename="../src/tools/certificateinfowidget.ui" line="133"/>
|
||||
<source>Organizational Unit (OU):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Organisationsenhet (OU):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/tools/certificateinfowidget.ui" line="75"/>
|
||||
|
@ -965,7 +966,7 @@
|
|||
<message>
|
||||
<location filename="../src/other/clearprivatedata.ui" line="111"/>
|
||||
<source>Earlier Today</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tidigare idag</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Later Today</source>
|
||||
|
@ -1514,7 +1515,7 @@
|
|||
<message>
|
||||
<location filename="../src/history/historymanager.cpp" line="101"/>
|
||||
<source>Open link in current tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Öppna länk i nuvarande flik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/history/historymanager.cpp" line="102"/>
|
||||
|
@ -1651,7 +1652,7 @@
|
|||
<message>
|
||||
<location filename="../src/sidebar/historysidebar.cpp" line="95"/>
|
||||
<source>Open link in current tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Öppna länk i nuvarande flik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/sidebar/historysidebar.cpp" line="96"/>
|
||||
|
@ -2321,7 +2322,7 @@
|
|||
<location filename="../src/preferences/preferences.ui" line="258"/>
|
||||
<location filename="../src/preferences/preferences.ui" line="406"/>
|
||||
<source>Use current</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Använd nuvarande</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="446"/>
|
||||
|
@ -2341,7 +2342,7 @@
|
|||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="743"/>
|
||||
<source>Open new tabs after active tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Öppna nya flikar efter den aktiva fliken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="780"/>
|
||||
|
@ -2520,7 +2521,7 @@
|
|||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="1311"/>
|
||||
<source>Fixed</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Fast</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="1321"/>
|
||||
|
@ -2554,7 +2555,7 @@
|
|||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="1409"/>
|
||||
<source>Fixed Font Size</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Fast typsnittsstorlek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="1416"/>
|
||||
|
@ -2682,7 +2683,7 @@
|
|||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="1857"/>
|
||||
<source>Expiration timeout:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tiden löper ut:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="1870"/>
|
||||
|
@ -2712,12 +2713,12 @@
|
|||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="1994"/>
|
||||
<source><b>User CSS StyleSheet</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Användarens CSS-stilblad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="2001"/>
|
||||
<source>StyleSheet automatically loaded with all websites: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Stilblad som automatiskt laddas med alla webbsidor: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/preferences/preferences.ui" line="2020"/>
|
||||
|
@ -2802,7 +2803,7 @@
|
|||
<message>
|
||||
<location filename="../src/preferences/preferences.cpp" line="469"/>
|
||||
<source>Choose stylesheet location...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Välj stilbladets plats...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/preferences/preferences.cpp" line="585"/>
|
||||
|
@ -3171,7 +3172,7 @@
|
|||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="661"/>
|
||||
<source>Organize &Bookmarks</source>
|
||||
<translation>Organisera bokmärken</translation>
|
||||
<translation>Organisera &bokmärken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="701"/>
|
||||
|
@ -3234,7 +3235,7 @@
|
|||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="871"/>
|
||||
<source>Report &Issue</source>
|
||||
<translation>Rapportera problem</translation>
|
||||
<translation>Rapportera &problem</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="877"/>
|
||||
|
@ -3244,7 +3245,7 @@
|
|||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="878"/>
|
||||
<source>Page &Info</source>
|
||||
<translation>Sidinformation</translation>
|
||||
<translation>Sid&information</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/app/qupzilla.cpp" line="880"/>
|
||||
|
@ -3534,17 +3535,17 @@
|
|||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="269"/>
|
||||
<source>Fit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Passa in</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="270"/>
|
||||
<source>Fit Width</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Passa in bredd</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="271"/>
|
||||
<source>Fit Height</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Passa in höjd</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/network/qupzillaschemehandler.cpp" line="272"/>
|
||||
|
@ -3716,7 +3717,7 @@ Lägg till flöden med RSS-ikonen i navigeringsraden från sidor som tillhandah
|
|||
<message>
|
||||
<location filename="../src/rss/rssmanager.cpp" line="234"/>
|
||||
<source>Open link in current tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Öppna länk i nuvarande flik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Open link in actual tab</source>
|
||||
|
@ -3984,7 +3985,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s
|
|||
<message>
|
||||
<location filename="../src/webview/searchtoolbar.ui" line="98"/>
|
||||
<source>Case sensitive</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Skiftlägeskänslig</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -4286,7 +4287,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s
|
|||
<message>
|
||||
<location filename="../src/other/sourceviewer.cpp" line="82"/>
|
||||
<source>Word Wrap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ordinslagning</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/sourceviewer.cpp" line="105"/>
|
||||
|
@ -4331,7 +4332,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s
|
|||
<message>
|
||||
<location filename="../src/other/sourceviewer.cpp" line="159"/>
|
||||
<source>Word Wrap changed</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ordinslag ändrad</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/other/sourceviewer.cpp" line="164"/>
|
||||
|
@ -4390,7 +4391,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s
|
|||
<message>
|
||||
<location filename="../src/webview/tabbar.cpp" line="122"/>
|
||||
<source>Un&pin Tab</source>
|
||||
<translation>Av%nåla flik</translation>
|
||||
<translation>Av&nåla flik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/tabbar.cpp" line="122"/>
|
||||
|
@ -4471,7 +4472,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s
|
|||
<message>
|
||||
<location filename="../src/webview/tabwidget.cpp" line="256"/>
|
||||
<source>Actually you have %1 opened tabs</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>För tillfället har du %1 öppna flikar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/tabwidget.cpp" line="268"/>
|
||||
|
@ -4873,7 +4874,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s
|
|||
<message>
|
||||
<location filename="../src/webview/webpage.cpp" line="580"/>
|
||||
<source>JavaScript alert - %1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Javaskriptvarning - %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/webview/webpage.cpp" line="626"/>
|
||||
|
@ -4896,7 +4897,7 @@ Efter att ha lagt till eller tagit bort certifikats sökvägar måste QupZilla s
|
|||
<message>
|
||||
<location filename="../src/navigation/websearchbar.cpp" line="199"/>
|
||||
<source>Paste And &Search</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Klistra in och &sök</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/navigation/websearchbar.cpp" line="205"/>
|
||||
|
|
Loading…
Reference in New Issue
Block a user