From: Soren Stoutner Date: Mon, 16 Jan 2017 23:56:37 +0000 (-0700) Subject: Spanish Guide → JavaScript provided by Jose A. León Becerra. X-Git-Tag: v1.15~28 X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=commitdiff_plain;h=e1a3f35d0bf72512f458046d60bdda258e1581ec Spanish Guide → JavaScript provided by Jose A. León Becerra. --- diff --git a/app/src/main/assets/en/guide_javascript.html b/app/src/main/assets/en/guide_javascript.html index 1cfd92e2..79881674 100644 --- a/app/src/main/assets/en/guide_javascript.html +++ b/app/src/main/assets/en/guide_javascript.html @@ -1,5 +1,5 @@ - - - - + img.center { + display: block; + margin-left: auto; + margin-right: auto; + } + + - -

JavaScript Is Powerful

+ +

JavaScript Is Powerful

-

Back in the early days of the internet, web pages were static, meaning they they contained text and images that displayed on the screen - but didn't change or interact with the user. Of course, only so much that is interesting can happen with static content. - Several different technologies were developed to facilitate dynamic web pages. JavaScript was one of these technologies.

+

Back in the early days of the internet, web pages were static, meaning they they contained text and images that were displayed on the screen + but didn’t change or interact with the user. Of course, only so much that is interesting can happen with static content. + Several different technologies were developed to facilitate dynamic web pages. JavaScript is one of these technologies.

-

JavaScript is a programming language. Many web servers host programs written in JavaScript, which are sent to devices as part of the web page. - The device runs the JavaScript on its local processor and follows the commands of the program, which can animate images on the website, - popup a menu, and do many other useful things.

+

JavaScript is a programming language. Many web servers host programs written in JavaScript, which are sent to devices as part of the web page. + The device runs the JavaScript on its local processor and follows the commands of the program, which can animate images on the website, + popup a menu, and do many other useful things.

-

JavaScript Is Dangerous

-

Of course, the concept of running arbitrary programs from a website is potentially dangerous. So there are limitations placed on JavaScript - to keep it from doing things like installing viruses on the device. However, it turns out that these limitations are overly broad. - Below is a screenshot from webkay, which is a website that demonstrates the type of information that - JavaScript can produce about a device. Browser Leaks is another good resource.

-

+

JavaScript Is Dangerous

+

Of course, the concept of running arbitrary programs from a website is potentially dangerous. So there are limitations placed on JavaScript + to keep it from doing things like installing viruses. However, it turns out that these limitations are overly broad. + Below is a screenshot from webkay, which is a website that demonstrates the type of information that + JavaScript can produce about a device. Browser Leaks is another good resource.

-

For privacy purposes, the ideal would be to browse the internet with JavaScript disabled. However, there are some websites that legitimately require - JavaScript to accomplish their purposes and others that don't work correctly without JavaScript even though they could be programmed to do so. - Privacy Browser addresses this by making it easy to toggle JavaScript on and off. Tapping the privacy shield will toggle it between blue - or yellow (both of which indicate - that JavaScript is disabled) and red (JavaScript enabled) and and reload the website. - Looking at the different information webkay can collect with JavaScript enabled and disabled is informative.

+

-

Browsing the internet with JavaScript disabled, and only enabling it if needed, goes a long way to protecting user privacy. In addition, JavaScript - is used to load much of the annoying advertisements and extra cruft that comes along with most modern websites. With it disabled, websites will - load faster, consume less network traffic, and only contain less annoying advertisements, instead of those that do things like cover up the text of the - entire web page.

- +

For privacy purposes, the ideal would be to browse the internet with JavaScript disabled. However, there are some websites that legitimately require + JavaScript to accomplish their purposes and others that don’t work correctly without JavaScript even though they could be programmed to do so. + Privacy Browser addresses this by making it easy to toggle JavaScript on and off. Tapping the privacy shield will toggle it between blue + or yellow (both of which indicate + that JavaScript is disabled) and red (JavaScript enabled). + Looking at the different information webkay can collect with JavaScript enabled and disabled is informative.

+ +

Browsing the internet with JavaScript disabled, and only enabling it if needed, goes a long way to protecting user privacy. In addition, JavaScript + is used to load much of the annoying advertisements and extra cruft that comes along with most modern websites. With it disabled, websites will + load faster, consume less network traffic, and contain less annoying advertisements, instead of those that do things like cover up the text of the + entire web page.

+ \ No newline at end of file diff --git a/app/src/main/assets/en/guide_overview.html b/app/src/main/assets/en/guide_overview.html index 86b69627..c5eab8a9 100644 --- a/app/src/main/assets/en/guide_overview.html +++ b/app/src/main/assets/en/guide_overview.html @@ -26,23 +26,23 @@ -

True Privacy

+

True Privacy

-

Privacy Browser is designed to let you take as much control of your privacy as possible while still browsing the internet. - When a browser connects to a website, certain pieces of information which are necessary to facilitate the connection are transferred to the server. - For example, the server will receive your IP address and a port number, which are necessary for it to know where to send the response. - This information is often logged by the server, allowing the website developer to produce reports showing how often a webpage was loaded and how many different IP addresses accessed it.

+

Privacy Browser is designed to let you take as much control of your privacy as possible while still browsing the internet. + When a browser connects to a website, certain pieces of information which are necessary to facilitate the connection are transferred to the server. + For example, the server will receive your IP address and a port number, which are necessary for it to know where to send the response. + This information is often logged by the server, allowing the website developer to produce reports showing how often a webpage was loaded and how many different IP addresses accessed it.

-

However, most website operators want more information about their visitors, including tracking their web browsing across multiple websites. - There use many different techniques, including requesting or placing extra information on a user’s device, that facilitate this tracking. - Almost all browsers will voluntarily participate in this tracking without informing the user they are doing so. - Privacy Browser is designed to grant the user as much information and control over these tracking techniques as possible.

+

However, most website operators want more information about their visitors, including tracking their web browsing across multiple websites. + There use many different techniques, including requesting or placing extra information on a user’s device, that facilitate this tracking. + Almost all browsers will voluntarily participate in this tracking without informing the user they are doing so. + Privacy Browser is designed to grant the user as much information and control over these tracking techniques as possible.

-

Android’s WebView Limitations

+

Android’s WebView Limitations

-

Privacy Browser uses Android’s built-in WebView to render websites. There are some limitations in the controls WebView exposes for managing privacy settings. - For example, it isn't possible to enable some JavaScript commands while disabling others. Once Privacy Browser has matured to take full advantage of all the privacy options WebView does offer, - some consideration might be made to embedding a customized WebView or using a different rendering engine.

+

Privacy Browser uses Android’s built-in WebView to render websites. There are some limitations in the controls WebView exposes for managing privacy settings. + For example, it isn't possible to enable some JavaScript commands while disabling others. Once Privacy Browser has matured to take full advantage of all the privacy options WebView does offer, + some consideration might be made to embedding a customized WebView or using a different rendering engine.

\ No newline at end of file diff --git a/app/src/main/assets/es/guide_javascript.html b/app/src/main/assets/es/guide_javascript.html index 8215f7c3..5c1fbc60 100644 --- a/app/src/main/assets/es/guide_javascript.html +++ b/app/src/main/assets/es/guide_javascript.html @@ -1,66 +1,66 @@ + Navegador Privado (Privacy Browser) es distribuído con la esperanza de que será útil, + pero SIN NINGUNA GARANTÍA; ni siquiera la garantía implícita de + MERCANTILIDAD o APTITUD PARA UN PROPÓSITO PARTICULAR. Vea la + Licencia Pública General para más detalles. + + Usted debería haber recibido una copia de la Licencia Pública General GNU + junto con Navegador Privado (Privacy Browser). Si no es así, vea . --> - - - + - img.center { - display: block; - margin-left: auto; - margin-right: auto; - } - - + +

Javascript es poderoso

- -

JavaScript Is Powerful

+

En los principios de internet las páginas web eran estáticas, sólo contenían textos e imágenes que eran mostradas en la pantalla y no podían cambiarse o interactuar con el usuario. + Por supuesto, sólo lo muy interesante podría ocurrir con un contenido estático. Se desarrollaron diferentes tecnologías para facilitar páginas web dinámicas. Javascript + es una de estas tecnologías.

-

Back in the early days of the internet, web pages were static, meaning they they contained text and images that displayed on the screen - but didn't change or interact with the user. Of course, only so much that is interesting can happen with static content. - Several different technologies were developed to facilitate dynamic web pages. JavaScript was one of these technologies.

+

Javascript es un lenguaje de programación. Muchos servidores web alojan programas escritos en Javascript, que son enviados a los dispositivos como parte de la página + web. El dispositivo ejecuta este Javascript en su procesador local y sigue los comandos del programa, el cual puede animar imágenes en dicho sitio web, abrir un menú emergente, y + hacer muchas otras cosas útiles.

-

JavaScript is a programming language. Many web servers host programs written in JavaScript, which are sent to devices as part of the web page. - The device runs the JavaScript on its local processor and follows the commands of the program, which can animate images on the website, - popup a menu, and do many other useful things.

-

JavaScript Is Dangerous

-

Of course, the concept of running arbitrary programs from a website is potentially dangerous. So there are limitations placed on JavaScript - to keep it from doing things like installing viruses on the device. However, it turns out that these limitations are overly broad. - Below is a screenshot from webkay, which is a website that demonstrates the type of information that - JavaScript can produce about a device. Browser Leaks is another good resource.

+

Javascript es peligroso

+

Por supuesto, el concepto de ejecutar programas arbitrarios de un sitio web es potencialmente peligroso. Es por ello que hay limitaciones en Javascript para evitar que haga cosas + como instalar virus. Sin embargo, resulta que estas limitaciones son demasiado amplias. Abajo tenemos una captura de pantalla de la web webkay, que es una web + que muestra el tipo de información que Javascript puede producir sobre un dispositivo. Browser Leaks es otro buen recurso.

-

+

-

For privacy purposes, the ideal would be to browse the internet with JavaScript disabled. However, there are some websites that legitimately require - JavaScript to accomplish their purposes and others that don't work correctly without JavaScript even though they could be programmed to do so. - Privacy Browser addresses this by making it easy to toggle JavaScript on and off. Tapping the privacy shield will toggle it between blue - or yellow (both of which indicate - that JavaScript is disabled) and red (JavaScript enabled) and and reload the website. - Looking at the different information webkay can collect with JavaScript enabled and disabled is informative.

+

Con fines de privacidad, lo ideal sería navegar por internet con Javascript deshabilitado. Sin embargo, hay algunas páginas web que requieren legítimamente de Javascript para lograr sus + propósitos, y otras que no funcionan correctamente sin Javascript aunque pudieran programarse para hacerlo así. Navegador Privado aborda esto haciendo sencillo el poder activar + (on) y desactivar (off) Javascript. Tocando el escudo de privacidad alternará entre azul o amarillo + (los cuales indican que Javascript está deshabilitado) y rojo (Javascript habilitado). + Revisar la diferente información que webkay puede recoger con Javascript habilitado y deshabilitado es informativo.

-

Browsing the internet with JavaScript disabled, and only enabling it if needed, goes a long way to protecting user privacy. In addition, JavaScript - is used to load much of the annoying advertisements and extra cruft that comes along with most modern websites. With it disabled, websites will - load faster, consume less network traffic, and only contain less annoying advertisements, instead of those that do things like cover up the text of the - entire web page.

- +

Navegar por internet con Javascript deshabilitado, y sólo habilitarlo cuando sea necesario, hace mucho en proteger la privacidad del usuario. Además, Javascript se usa para cargar muchos de + los molestos anuncios y demás basura que viene con las más modernas páginas web. Al deshabilitarlo, las páginas web cargarán más rápido, consumirán menos tráfico de red, + y contendrán menos molestos anuncios, en lugar de aquellos que hacen cosas como cubrir el texto de toda la página web.

+ \ No newline at end of file diff --git a/app/src/main/assets/es/guide_overview.html b/app/src/main/assets/es/guide_overview.html index c9c1c5fe..3ed671a9 100644 --- a/app/src/main/assets/es/guide_overview.html +++ b/app/src/main/assets/es/guide_overview.html @@ -28,26 +28,26 @@ -

Verdadera privacidad

+

Verdadera privacidad

-

Navegador Privado está diseñado para ofrecerte todo el control posible de tu privacidad mientras navegas por internet. - Cuando conectas a un sitio web, parte de la información que es necesaria para facilitar la conexión son transferidas al servidor. - Por ejemplo, el servidor recibirá tu dirección IP y un número de puerto, los cuales son necesarios, así sabe dónde enviar la respuesta. - Esta información es a menudo registrada por el servidor, permitiendo al desarrollador del sitio web realizar informes mostrando las veces - que ha sido cargada una web y cuántas diferentes direcciones IP accedieron a ella.

+

Navegador Privado está diseñado para ofrecerte todo el control posible de tu privacidad mientras navegas por internet. + Cuando conectas a un sitio web, parte de la información que es necesaria para facilitar la conexión son transferidas al servidor. + Por ejemplo, el servidor recibirá tu dirección IP y un número de puerto, los cuales son necesarios, así sabe dónde enviar la respuesta. + Esta información es a menudo registrada por el servidor, permitiendo al desarrollador del sitio web realizar informes mostrando las veces + que ha sido cargada una web y cuántas diferentes direcciones IP accedieron a ella.

-

Sin embargo, la mayoría de operadores de un sitio web quieren rastrear tu navegación web a través de muchas webs, no sólo en un servidor. - Existen muchas técnicas que usan para conseguirlo. Algunas de ellas solicitan o colocan información extra en tu dispositivo que facilita este rastreo. - Casi todos los navegadores participarán voluntariamente en este rastreo sin informar al usuario de lo que están haciendo. - Navegador Privado está diseñado para ofrecer al usuario toda la información y control sobre estas técnicas de rastreo como sea posible.

+

Sin embargo, la mayoría de operadores de un sitio web quieren rastrear tu navegación web a través de muchas webs, no sólo en un servidor. + Existen muchas técnicas que usan para conseguirlo. Algunas de ellas solicitan o colocan información extra en tu dispositivo que facilita este rastreo. + Casi todos los navegadores participarán voluntariamente en este rastreo sin informar al usuario de lo que están haciendo. + Navegador Privado está diseñado para ofrecer al usuario toda la información y control sobre estas técnicas de rastreo como sea posible.

-

Limitaciones del WebView de Android

+

Limitaciones del WebView de Android

-

Navegador Privado usa el WebView que incorpora Android para interpretar los sitios web. - Existen algunas limitaciones en los controles que WebView expone para administrar la configuración de privacidad. - Por ejemplo, no es posible habilitar algunos comandos JavaScript mientras que se deshabilitan otros. - Cuando Navegador Privado haya madurado lo suficiente como para aprovechar al máximo todas las opciones de privacidad que ofrece WebView, - se considerará realizar un WebView personalizado o usar un motor de interpretación diferente.

+

Navegador Privado usa el WebView que incorpora Android para interpretar los sitios web. + Existen algunas limitaciones en los controles que WebView expone para administrar la configuración de privacidad. + Por ejemplo, no es posible habilitar algunos comandos JavaScript mientras que se deshabilitan otros. + Cuando Navegador Privado haya madurado lo suficiente como para aprovechar al máximo todas las opciones de privacidad que ofrece WebView, + se considerará realizar un WebView personalizado o usar un motor de interpretación diferente.

\ No newline at end of file diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index cdcf30c2..d228030c 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -28,8 +28,8 @@ Modo Privado - JavaScript habilitado - JavaScript deshabilitado + Javascript habilitado + Javascript deshabilitado Cookies de primera parte habilitadas Cookies de primera parte deshabilitadas Cookies de terceras partes habilitadas @@ -99,7 +99,7 @@ Eliminar y salir - JavaScript + Javascript Cookies de primera parte Cookies de terceras partes Almacenamiento DOM @@ -188,14 +188,14 @@ Privacidad - Habilitar JavaScript por defecto - JavaScript permite a las webs ejecutar programas (scripts) en el dispositivo. + Habilitar Javascript por defecto + Javascript permite a las webs ejecutar programas (scripts) en el dispositivo. Habilitar cookies de primera parte por defecto Dispositivos con versiones de Android más antiguas que Lollipop (versión 5.0) también habilitarán las cookies de terceras partes con este ajuste. Habilar cookies de terceras partes por defecto Este ajuste requiere Android Lollipop (versión 5.0) o mayor. No tiene efecto si las cookies de primera parte están deshabilitadas. Habilitar almacenamiento DOM por defecto - JavaScript debe estar habilitado para que funcione el almacenamiento DOM. + Javascript debe estar habilitado para que funcione el almacenamiento DOM. Habilitar el guardar los datos de formulario por defecto Los datos de formularios guardados pueden rellenar automáticamente los casillas o campos de las webs. Agente de usuario @@ -223,7 +223,7 @@ Enviar a través de Orbot Enviar todo el tráfico web a través de Orbot en localhost:8118. Buscar - Búsqueda de JavaScript deshabilitado + Búsqueda de Javascript deshabilitado DuckDuckGo StartPage @@ -233,8 +233,8 @@ Qwant Personalizado - URL personalizado de búsqueda de JavaScript deshabilitado - Búsqueda de JavaScript habilitado + URL personalizado de búsqueda de Javascript deshabilitado + Búsqueda de Javascript habilitado DuckDuckGo StartPage @@ -244,7 +244,7 @@ Qwant Personalizado - URL personalizado de búsqueda de JavaScript habilitado + URL personalizado de búsqueda de Javascript habilitado URL personalizado Pantalla Completa Habilitar pantalla completa