diff --git a/_i18n/en.yml b/_i18n/en.yml
index a1915995..53aa5392 100644
--- a/_i18n/en.yml
+++ b/_i18n/en.yml
@@ -339,3 +339,21 @@ selfhosted_cloud:
nextcloud_descr: "Similar functionally to the widely used Dropbox, with the difference being that Nextcloud is free and open-source, and thereby allowing anyone to install and operate it without charge on a private server, with no limits on storage space or the number of connected clients."
worth_mentioning: "Worth Mentioning"
cryptpad_descr: "- End-to-end encrypted real time collaboration sharing folders, media, and documents (open-source)."
+selfcontained_networks:
+ networks: "Self-contained Networks"
+ warning: "If you are currently browsing clearnet and want to access the dark web, this section is for you."
+ tor_descr: "The Tor network is a group of volunteer-operated servers that allows people to improve their privacy and security on the Internet. Tor's users employ this network by connecting through a series of virtual tunnels rather than making a direct connection, thus allowing both organizations and individuals to share information over public networks without compromising their privacy. Tor is an effective censorship circumvention tool."
+ i2p_descr: "The Invisible Internet Project (I2P) is a computer network layer that allows applications to send messages to each other pseudonymously and securely. Uses include anonymous Web surfing, chatting, blogging and file transfers. The software that implements this layer is called an I2P router and a computer running I2P is called an I2P node. The software is free and open source and is published under multiple licenses."
+ freenet_descr: "Freenet is a peer-to-peer platform for censorship-resistant communication. It uses a decentralized distributed data store to keep and deliver information, and has a suite of free software for publishing and communicating on the Web without fear of censorship. Both Freenet and some of its associated tools were originally designed by Ian Clarke, who defined Freenet's goal as providing freedom of speech on the Internet with strong anonymity protection."
+ related_information: "Related Information"
+ true_stories: "- True stories from the dark side of the Internet."
+ worth_mentioning: "Worth Mentioning"
+ zeronet_descr: "- Open, free and uncensorable websites, using Bitcoin cryptography and BitTorrent network."
+ retroshare_descr: "- Open Source cross-platform, Friend-2-Friend and secure decentralized communication platform."
+ gnunet_descr: "- GNUnet provides a strong foundation of free software for a global, distributed network that provides security and privacy."
+ ipfs_descr: "- A peer-to-peer hypermedia protocol to make the web faster, safer, and more open. (important privacy warning)"
+ yggdrasil_descr: "- An early-stage implementation of a fully end-to-end encrypted IPv6 network. It is lightweight, self-arranging, supported on multiple platforms and allows pretty much any IPv6-capable application to communicate securely with other Yggdrasil nodes. Yggdrasil does not require you to have IPv6 Internet connectivity - it also works over IPv4."
+ yggdrasil_warning: "The project is currently in early stages but it is being actively developed."
+ yggdrasil_danger: "Yggdrasil doesn't have a goal of providing anonymity and your peers know your IP address unless you are only using Tor/I2P peers."
+ experimental: "experimental"
+ privacy_warning: "privacy warning"
\ No newline at end of file
diff --git a/_includes/sections/self-contained-networks.html b/_includes/sections/self-contained-networks.html
index fe96cff1..b5582121 100644
--- a/_includes/sections/self-contained-networks.html
+++ b/_includes/sections/self-contained-networks.html
@@ -1,9 +1,13 @@
-
Self-contained Networks
+ {% t selfcontained_networks.networks %}
-
If you are currently browsing clearnet and want to access the dark web, this section is for you.
+
{% t selfcontained_networks.warning %}
+{%- capture selfcontained_networks_tor_descr -%}{% t selfcontained_networks.tor_descr %}{%- endcapture -%}
+{%- capture selfcontained_networks_i2p_descr -%}{% t selfcontained_networks.i2p_descr %}{%- endcapture -%}
+{%- capture selfcontained_networks_freenet_descr -%}{% t selfcontained_networks.freenet_descr %}{%- endcapture -%}
+
{% include card.html color="success"
@@ -12,7 +16,7 @@
url="https://www.torproject.org/"
tor="http://expyuzz4wqqyqhjn.onion"
footer='OS: Windows, macOS, Linux,
iOS, Android (
Tor Browser,
Proxy other apps with Orbot),
OpenBSD.'
- description="The Tor network is a group of volunteer-operated servers that allows people to improve their privacy and security on the Internet. Tor's users employ this network by connecting through a series of virtual tunnels rather than making a direct connection, thus allowing both organizations and individuals to share information over public networks without compromising their privacy. Tor is an effective censorship circumvention tool."
+ description=selfcontained_networks_tor_descr
%}
{% include card.html color="primary"
@@ -20,8 +24,7 @@
image="/assets/img/tools/I2P.png"
url="https://geti2p.net/"
footer="OS: Windows, macOS, Linux, Android, BSD / Solaris."
- description="The Invisible Internet Project (I2P) is a computer network layer that allows applications to send messages to each other pseudonymously and securely. Uses include anonymous
- Web surfing, chatting, blogging and file transfers. The software that implements this layer is called an I2P router and a computer running I2P is called an I2P node. The software is free and open source and is published under multiple licenses."
+ description=selfcontained_networks_i2p_descr
%}
{% include card.html color="warning"
@@ -29,25 +32,23 @@
image="/assets/img/tools/Freenet.png"
url="https://freenetproject.org/"
footer="OS: Windows, macOS, Linux."
- description="Freenet is a peer-to-peer platform for censorship-resistant communication. It uses a decentralized distributed data store to keep and deliver information, and
- has a suite of free software for publishing and communicating on the Web without fear of censorship. Both Freenet and some of its associated tools were originally designed by Ian Clarke, who defined Freenet's goal as providing freedom of speech
- on the Internet with strong anonymity protection."
+ description=selfcontained_networks_freenet_descr
%}
-Related Information
+{% t selfcontained_networks.related_information %}
-Worth Mentioning
+{% t selfcontained_networks.worth_mentioning %}
- - ZeroNet - Open, free and uncensorable websites, using Bitcoin cryptography and BitTorrent network.
- - RetroShare - Open Source cross-platform, Friend-2-Friend and secure decentralized communication platform.
- - GNUnet - GNUnet provides a strong foundation of free software for a global, distributed network that provides security and privacy.
- - IPFS - A peer-to-peer hypermedia protocol to make the web faster, safer, and more open. (important privacy warning)
- - Yggdrasil - An early-stage implementation of a fully end-to-end encrypted IPv6 network. It is lightweight, self-arranging, supported on multiple platforms and allows pretty much any IPv6-capable application to communicate securely with other Yggdrasil nodes. Yggdrasil does not require you to have IPv6 Internet connectivity - it also works over IPv4. experimental privacy warning
+ - ZeroNet {% t selfcontained_networks.zeronet_descr %}
+ - RetroShare {% t selfcontained_networks.retroshare_descr %}
+ - GNUnet {% t selfcontained_networks.gnunet_descr %}
+ - IPFS {% t selfcontained_networks.ipfs_descr %}
+ - Yggdrasil {% t selfcontained_networks.yggdrasil_descr %}{% t selfcontained_networks.experimental %} {% t selfcontained_networks.privacy_warning %}