mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2025-07-01 17:22:39 +00:00
Add support for localization (#995)
This commit is contained in:
108
mkdocs.yml
108
mkdocs.yml
@ -1,3 +1,7 @@
|
||||
docs_dir: 'docs'
|
||||
site_url: "https://www.privacyguides.org/"
|
||||
site_dir: 'site'
|
||||
|
||||
site_name: Privacy Guides
|
||||
site_description: |
|
||||
Massive organizations are monitoring your online activities. Privacy Guides is your central privacy and security resource to protect yourself online.
|
||||
@ -5,6 +9,7 @@ copyright: |
|
||||
<b>Privacy Guides</b> is a non-profit, socially motivated website that provides information for protecting your data security and privacy.<br>
|
||||
We do not make money from recommending certain products, and we do not utilize affiliate links.<br>
|
||||
This content was made available by the Privacy Guides team and contributors. <a href="https://github.com/privacyguides/privacyguides">Get involved</a>!
|
||||
|
||||
extra:
|
||||
generator: false
|
||||
social:
|
||||
@ -20,52 +25,6 @@ repo_url: https://github.com/privacyguides/privacyguides.org
|
||||
repo_name: privacyguides.org
|
||||
edit_uri: edit/main/docs/
|
||||
|
||||
nav:
|
||||
- Home: 'index.md'
|
||||
- 'Privacy Introduction':
|
||||
- 'Threat Modeling': 'threat-modeling.md'
|
||||
- 'Technology Basics':
|
||||
- 'DNS': 'technology/dns.md'
|
||||
- 'Security Basics':
|
||||
- 'Multi-Factor Authentication': 'security/multi-factor-authentication.md'
|
||||
- 'Setup Guides':
|
||||
- 'Integrating Metadata Removal': 'setup/integrating-metadata-removal.md'
|
||||
- 'Recommendations':
|
||||
- 'Privacy Tools': 'tools.md'
|
||||
- 'Browsers':
|
||||
- 'Web Browsers': 'browsers.md'
|
||||
- 'Operating Systems':
|
||||
- 'Android': 'android.md'
|
||||
- 'Linux Desktop': 'linux-desktop.md'
|
||||
- 'Qubes OS': 'qubes.md'
|
||||
- 'Router Firmware': 'router.md'
|
||||
- 'Providers':
|
||||
- 'Cloud Storage': 'cloud.md'
|
||||
- 'DNS Servers': 'dns.md'
|
||||
- 'Email Providers': 'email.md'
|
||||
- 'Search Engines': 'search-engines.md'
|
||||
- 'VPN Providers': 'vpn.md'
|
||||
- 'Software':
|
||||
- 'Calendar/Contacts Sync': 'calendar-contacts.md'
|
||||
- 'Digital Notebooks': 'notebooks.md'
|
||||
- 'Email Clients': 'email-clients.md'
|
||||
- 'Encryption Tools': 'encryption.md'
|
||||
- 'File Sharing/Sync': 'file-sharing.md'
|
||||
- 'Metadata Removal Tools': 'metadata-removal-tools.md'
|
||||
- 'Multi-Factor Authenticators': 'multi-factor-authentication.md'
|
||||
- 'Password Managers': 'passwords.md'
|
||||
- 'Productivity Tools': 'productivity.md'
|
||||
- 'Real-Time Communication': 'real-time-communication.md'
|
||||
- 'News Aggregators': 'news-aggregators.md'
|
||||
- 'Self-Contained Networks': 'self-contained-networks.md'
|
||||
- 'Video Streaming': 'video-streaming.md'
|
||||
- 'About Us':
|
||||
- 'Privacy Guides': 'about.md'
|
||||
- 'Notices': 'about/notices.md'
|
||||
- 'Privacy Policy': 'about/privacy-policy.md'
|
||||
- 'Discussions': 'https://github.com/orgs/privacyguides/discussions'
|
||||
- 'Blog': 'https://blog.privacyguides.org/'
|
||||
|
||||
theme:
|
||||
name: material
|
||||
custom_dir: theme
|
||||
@ -95,7 +54,18 @@ watch:
|
||||
- theme
|
||||
|
||||
plugins:
|
||||
- i18n:
|
||||
default_language: en
|
||||
material_alternate: true
|
||||
languages:
|
||||
en:
|
||||
name: English
|
||||
build: false
|
||||
- tags
|
||||
- search
|
||||
- privacy:
|
||||
externals_exclude:
|
||||
- cdn.jsdelivr.net/npm/mathjax@3/*
|
||||
extra_css:
|
||||
- stylesheets/extra.css
|
||||
markdown_extensions:
|
||||
@ -129,3 +99,49 @@ markdown_extensions:
|
||||
|
||||
extra_javascript:
|
||||
- javascripts/mathjax.js
|
||||
|
||||
nav:
|
||||
- Home: 'index.md'
|
||||
- 'Privacy Introduction':
|
||||
- 'threat-modeling.md'
|
||||
- 'Technology Basics':
|
||||
- 'technology/dns.md'
|
||||
- 'Security Basics':
|
||||
- 'security/multi-factor-authentication.md'
|
||||
- 'Setup Guides':
|
||||
- 'setup/integrating-metadata-removal.md'
|
||||
- 'Recommendations':
|
||||
- 'tools.md'
|
||||
- 'Browsers':
|
||||
- 'browsers.md'
|
||||
- 'Operating Systems':
|
||||
- 'android.md'
|
||||
- 'linux-desktop.md'
|
||||
- 'qubes.md'
|
||||
- 'router.md'
|
||||
- 'Providers':
|
||||
- 'cloud.md'
|
||||
- 'dns.md'
|
||||
- 'email.md'
|
||||
- 'search-engines.md'
|
||||
- 'vpn.md'
|
||||
- 'Software':
|
||||
- 'calendar-contacts.md'
|
||||
- 'notebooks.md'
|
||||
- 'email-clients.md'
|
||||
- 'encryption.md'
|
||||
- 'file-sharing.md'
|
||||
- 'metadata-removal-tools.md'
|
||||
- 'multi-factor-authentication.md'
|
||||
- 'passwords.md'
|
||||
- 'productivity.md'
|
||||
- 'real-time-communication.md'
|
||||
- 'news-aggregators.md'
|
||||
- 'self-contained-networks.md'
|
||||
- 'video-streaming.md'
|
||||
- 'About Us':
|
||||
- 'about.md'
|
||||
- 'about/notices.md'
|
||||
- 'about/privacy-policy.md'
|
||||
- 'Discussions': 'https://github.com/orgs/privacyguides/discussions'
|
||||
- 'Blog': 'https://blog.privacyguides.org/'
|
||||
|
Reference in New Issue
Block a user