diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index eba6dffb3..af604c148 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ Chcete-li zkontrolovat aktualizace, zadejte: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/settings.md b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/settings.md index 6a0769fd4..3c022d006 100644 --- a/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/settings.md +++ b/i18n/cs/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/settings.md @@ -149,41 +149,41 @@ Po exportu protokolů toto nastavení zakažte. Toto nastavení je zodpovědné za zobrazení systémových oznámení například při zapnutí/vypnutí AdGuard VPN nebo při čekání na opětovné připojení: - Uživatel zapne VPN — objeví se oznámení _VPN připojena_. -- A user turns VPN off — the _VPN disconnected_ notification appears. +- Uživatel vypne VPN — objeví se oznámení _VPN odpojena_. - Uživatel čeká na obnovení připojení VPN — objeví se oznámení _Čekání na připojení_. adguardvpn-cli config set-show-notifications on -## Exclusions +## Výjimky -There are two modes. In _General_ mode, websites from the list of exclusions are not routed through VPN. In _Selective_ mode, only websites from the list of exclusions are routed through VPN. There is a separate list of exclusions for each mode. +Existují dva režimy. V _Obecném_ režimu nejsou webové stránky ze seznamu výjimek směrovány skrze VPN. V _Selektivním_ režimu jsou skrze VPN směrovány pouze webové stránky ze seznamu výjimek. Pro každý režim existuje samostatný seznam výjimek. -To read about what you can do with exclusions, write this in the command-line interface: `adguardvpn-cli site-exclusions -h`. +Chcete-li si přečíst, co všechno můžete dělat s výjimkami, napište to do rozhraní příkazového řádku: `adguardvpn-cli site-exclusions -h`. -Here are the main options: +Zde jsou hlavní možnosti: -1. **add** adds specified exclusions +1. **add** přidá zadané výjimky - Example: `adguardvpn-cli site-exclusions add`, where `%DOMAIN_NAME%` is the website that you want to add to exclusions. + Příklad: `adguardvpn-cli site-exclusions add`, kde `%DOMAIN_NAME%` je webová stránka, kterou chcete přidat do výjimek. :::note - o add many exclusions, you need to list them comma-separated. + Chcete-li přidat mnoho výjimek, musíte je zadat oddělené čárkami. ::: -2. **clear** clears the list of exclusions in the current mode +2. **clear** vymaže seznam výjimek v aktuálním režimu - Example: `adguardvpn-cli site-exclusions clear` + Příklad: `adguardvpn-cli site-exclusions clear` -3. **mode** shows the current mode and allows to switch between them +3. **mode** zobrazuje aktuální režim a umožňuje mezi nimi přepínat - Example: `adguardvpn-cli site-exclusions mode selective` (with this command, Selective mode is chosen) + Příklad: `adguardvpn-cli site-exclusions mode selective` (tímto příkazem je zvolen selektivní režim) -4. **remove** removes one or more exclusions (if separated by commas) +4. **remove** odstraní jednu nebo více výjimek (pokud jsou odděleny čárkami) - Example: `adguardvpn-cli site-exclusions remove %DOMAIN_NAME%` where `%DOMAIN_NAME%` is the website that you want to remove from exclusions. + Příklad: `adguardvpn-cli site-exclusions remove %DOMAIN_NAME%`, kde `%DOMAIN_NAME%` je webová stránka, kterou chcete odstranit z výjimek. -5. **show** shows the current list of exclusions +5. **show** zobrazí aktuální seznam výjimek - Example: `adguardvpn-cli site-exclusions show` + Příklad: `adguardvpn-cli site-exclusions show` diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/da/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index 55e2ce7c6..8f2fd4d2e 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/adguard-vpn-encryption.md b/i18n/de/docusaurus-plugin-content-docs/current/general/adguard-vpn-encryption.md index a695790d6..b4c923c1b 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/general/adguard-vpn-encryption.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/general/adguard-vpn-encryption.md @@ -5,9 +5,9 @@ sidebar_position: 7 ## Einleitung -Verschlüsselung ist der Grund, warum das Wort „privat“ im Begriff „virtuelles privates Netzwerk“ vorkommt. A VPN creates a tunnel between your device and a VPN server, that encrypts and transmits your data securely to the open Internet. Der Verschlüsselungsprozess, d. h. das Umwandeln von Daten in Kauderwelsch, das niemand lesen kann, der sie abfängt, ist für jeden VPN-Dienst unerlässlich. +Verschlüsselung ist der Grund, warum das Wort „privat“ im Begriff „virtuelles privates Netzwerk“ vorkommt. Ein VPN schafft einen Tunnel zwischen Ihrem Gerät und einem VPN-Server, der Ihre Daten verschlüsselt und sicher ins offene Internet überträgt. Der Verschlüsselungsprozess, d. h. das Umwandeln von Daten in Kauderwelsch, das niemand lesen kann, der sie abfängt, ist für jeden VPN-Dienst unerlässlich. -The AdGuard VPN protocol uses the most secure and fast encryption algorithm to date — AES-256. Erfahren Sie, was es ist und warum es so gut ist. +Das AdGuard VPN-Protokoll verwendet den bisher sichersten und schnellsten Verschlüsselungsalgorithmus — AES-256. Erfahren Sie, was es ist und warum es so gut ist. ## Ein historischer Überblick über die AES @@ -23,6 +23,6 @@ AES ist eine Blockverschlüsselung mit einem symmetrischen Schlüssel. Als Versc Es gibt verschiedene Schlüsselgrößen – 128, 192 und 256 Bit – und die Blöcke werden auch in Bit gemessen. Während des Verschlüsselungsprozesses ersetzt der Verschlüssler je nach Sicherheitsschlüssel jede Information durch eine andere. So erzeugt beispielsweise AES-256 in 14 Runden aus 256 Blöcken Klartext 256 Blöcke Chiffretext. -Die Runden bestehen aus mehreren Schritten: Daten in Blöcke aufteilen, Bytes ersetzen, Zeilen verschieben und Spalten neu anordnen. The result is a completely random set of characters that will only make sense when using the right encryption key. +Die Runden bestehen aus mehreren Schritten: Daten in Blöcke aufteilen, Bytes ersetzen, Zeilen verschieben und Spalten neu anordnen. Das Ergebnis ist ein völlig zufälliger Zeichensatz, der nur bei Verwendung des richtigen Verschlüsselungscodes Sinn ergibt. -AES-256 is the strongest level of encryption: to break this cipher, 2256 discrete combinations, each consisting of 78 digits, would have to be tried. +AES-256 ist die stärkste Verschlüsselungsstufe: Um diese Chiffre zu knacken, müssten 2256 diskrete Kombinationen, die jeweils aus 78 Ziffern bestehen, ausprobiert werden. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/dns-leaks.md b/i18n/de/docusaurus-plugin-content-docs/current/general/dns-leaks.md index 1887ae750..9b10e46e2 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/general/dns-leaks.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/general/dns-leaks.md @@ -1,5 +1,5 @@ --- -title: 'What is a DNS leak' +title: 'Was ist ein DNS-Leck?' sidebar_position: 9 --- @@ -13,7 +13,7 @@ Mit anderen Worten, bei jedem Aufruf einer Website sendet Ihr Browser eine Anfra ## Wie man DNS-Lecks entdeckt -Es gibt alle möglichen Anonymitätsprüfungsdienste zum Aufspüren von DNS-Lecks, wie `whoer.net`. The algorithms of these websites are not clear, but their intentions are — to scare users with imaginary leaks, potentially enabling them to sell their services. +Es gibt alle möglichen Anonymitätsprüfungsdienste zum Aufspüren von DNS-Lecks, wie `whoer.net`. Die Algorithmen dieser Websites sind nicht klar, aber ihr Ziel ist es, Sie mit imaginären Lecks zu erschrecken, um ihre Dienste zu verkaufen. Einige Websites für Sicherheitsscans betrachten die Übereinstimmung der IP-Adresse des Benutzers und der IP-Adresse des DNS-Servers als „gutes“ Ergebnis, was darauf hinweist, dass es keine Lecks gibt. In Wirklichkeit kann eine solche Übereinstimmung auf die Verwendung eines VPN hinweisen. Wenn VPN deaktiviert ist und die Anfragen an den DNS-Server Ihres Internetanbieters gehen, stimmen die IP-Adresse des DNS-Servers und Ihre eigene nicht überein. @@ -29,7 +29,7 @@ Und im Fall von AdGuard DNS „verschmelzen“ Sie mit 50 Millionen Benutzern, s ## Wie man einen benutzerdefinierten DNS-Server in AdGuard VPN einrichtet -Es gibt viele beliebte öffentliche DNS-Server von [bekannten DNS-Anbietern](https://adguard-dns.io/kb/general/dns-providers). Some of them can only perform their direct duties — giving the IP addresses of the requested domains, and some can do more. +Es gibt viele beliebte öffentliche DNS-Server von [bekannten DNS-Anbietern](https://adguard-dns.io/kb/general/dns-providers). Einige von ihnen können nur ihre direkten Aufgaben erfüllen — die IP-Adressen der angefragten Domains angeben, andere können mehr tun. Beispielsweise entfernt AdGuard DNS Werbung und schützt Ihr Gerät vor Verfolgung, und AdGuard DNS Family Protection kombiniert AdGuard DNS-Funktionen mit Sicherer Suche und Kindersicherung. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/free-vs-unlimited.md b/i18n/de/docusaurus-plugin-content-docs/current/general/free-vs-unlimited.md index cc3f5fe7f..5c2cb4bba 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/general/free-vs-unlimited.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/general/free-vs-unlimited.md @@ -26,4 +26,4 @@ Gleichzeitig können Sie ein Abonnement erwerben, um eine unbegrenzte Version de - Sicheres Streaming - Port 25 nicht sperren -To use all the advantages, consider [purchasing a subscription](/general/subscription). +Um alle Vorteile nutzen zu können, sollten Sie ein [Abonnement abschließen](/general/subscription). diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/how-to-install.md b/i18n/de/docusaurus-plugin-content-docs/current/general/how-to-install.md index d6bf2a082..c04697982 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/general/how-to-install.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/general/how-to-install.md @@ -9,6 +9,6 @@ Je nachdem, welche AdGuard VPN-App oder Browsererweiterung Sie installieren möc - [AdGuard VPN für iOS](/adguard-vpn-for-ios/installation) - [AdGuard VPN für Windows](/adguard-vpn-for-windows/installation) - [AdGuard VPN für Mac](/adguard-vpn-for-mac/installation) -- [AdGuard VPN Browser Extension](/adguard-vpn-browser-extension/installation) -- [AdGuard VPN for routers](/general/set-up-adguard-vpn-on-your-router/) -- [AdGuard VPN for Linux](/adguard-vpn-for-linux/installation) +- [AdGuard VPN Browsererweiterung](/adguard-vpn-browser-extension/installation) +- [AdGuard VPN für Router](/general/set-up-adguard-vpn-on-your-router/) +- [AdGuard VPN für Linux](/adguard-vpn-for-linux/installation) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/general/why-adguard-vpn.md b/i18n/de/docusaurus-plugin-content-docs/current/general/why-adguard-vpn.md index c6c5b1893..4642a29c6 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/general/why-adguard-vpn.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/general/why-adguard-vpn.md @@ -3,102 +3,102 @@ title: 'Warum AdGuard VPN die bessere Wahl ist' sidebar_position: 2 --- -When getting ready to commit to a [long-term VPN subscription](/general/subscription), users most frequently evaluate its speed, security, and price. Das sind sehr wichtige Punkte, aber es gibt noch so viel mehr! AdGuard VPN hat ein Dutzend wichtiger Vorteile, die es zur „besseren Option“ machen. +Wenn man sich entscheidet, einen [VPN-Dienst langfristig zu abonnieren](/general/subscription), achtet man in der Regel auf die Geschwindigkeit, die Sicherheit und die Kosten. Das sind sehr wichtige Punkte, aber es gibt noch so viel mehr! AdGuard VPN hat ein Dutzend wichtiger Vorteile, die es zur „besseren Option“ machen. *Lassen Sie uns zuerst über die unübertroffenen Funktionen von AdGuard VPN erzählen, die Sie bei keinem anderen VPN finden.* ## 1. Proprietäres Protokoll -Das AdGuard-Team entschied sich von Anfang an für die Entwicklung und Implementierung eines eigenen VPN-Protokolls, anstatt sich für eine vorgefertigte Lösung zu entscheiden. The result has become the [AdGuard VPN protocol](/general/adguard-vpn-protocol). +Das AdGuard-Team entschied sich von Anfang an für die Entwicklung und Implementierung eines eigenen VPN-Protokolls, anstatt sich für eine vorgefertigte Lösung zu entscheiden. So entstand das [AdGuard VPN-Protokoll](/general/adguard-vpn-protocol). -Bei der Wahl eines VPN-Dienstes müssen Sie oft zwischen hoher Geschwindigkeit und Sicherheit auswählen. The AdGuard VPN protocol is a perfect blend of speed and security, so you don’t have to bear slow Internet connection or make privacy sacrifices. Unter anderem tarnt er sich als regulärer Datenverkehr und ist viel schwerer zu erkennen und zu sperren. +Bei der Wahl eines VPN-Dienstes müssen Sie oft zwischen hoher Geschwindigkeit und Sicherheit auswählen. Das AdGuard VPN-Protokoll ist eine perfekte Mischung aus Geschwindigkeit und Sicherheit, so dass Sie weder eine langsame Internetverbindung in Kauf nehmen noch Abstriche beim Datenschutz machen müssen. Unter anderem tarnt er sich als regulärer Datenverkehr und ist viel schwerer zu erkennen und zu sperren. -## 2. Website and app exclusions +## 2. Ausschlüsse von Websites und Apps -There are situations where you don't need your VPN to be active: for instance, when you're ordering food or using maps. For this reason, AdGuard VPN has a special feature: Exclusions. +Es gibt Situationen, in denen Ihr VPN nicht aktiv sein muss: zum Beispiel, wenn Sie Essen bestellen oder Straßenkarten verwenden. Aus diesem Grund hat AdGuard VPN eine besondere Funktion: Ausschlüsse. -![Exclusions](https://cdn.adguard.com/content/blog/articles/adguard-vpn/exclusions-en.png) +![Ausschlüsse](https://cdn.adguard.com/content/blog/articles/adguard-vpn/exclusions-en.png) -You can activate AdGuard VPN **selectively** — only for certain websites or apps. This option is for those who use a VPN service only in specific situations: to enter a blocked website, use an app or watch a TV show that's not available in their country, or not to expose their data when visiting some websites. Turning a VPN on selectively also helps save VPN traffic. +Sie können AdGuard VPN **selektiv** aktivieren — nur für bestimmte Websites oder Apps. Diese Option ist für diejenigen gedacht, die einen VPN-Dienst nur in bestimmten Situationen nutzen: um eine gesperrte Website aufzurufen, eine App zu nutzen oder eine Fernsehsendung zu sehen, die in ihrem Land nicht verfügbar ist, oder um ihre Daten beim Besuch bestimmter Websites nicht preiszugeben. Das selektive Aktivieren eines VPN hilft auch, VPN-Datenverkehr zu sparen. -If you prefer absolute anonymity in most cases, you can activate AdGuard VPN **everywhere except for the excluded websites or apps**. Just add your food delivery apps and utility payment websites to Exclusions — for them, VPN will be off. +Wenn Sie in den meisten Fällen absolute Anonymität bevorzugen, können Sie AdGuard VPN **überall aktivieren, außer für die ausgeschlossenen Websites oder Apps**. Fügen Sie einfach Ihre Lebensmittelliefer-Apps und Websites für die Bezahlung von Versorgungsleistungen zu den Ausschlüssen hinzu — für sie wird VPN deaktiviert. -## 3. Block ads and trackers with a DNS server +## 3. Sperren von Werbung und Trackern mit einem DNS-Server -Relying on the DNS server provided by your ISP by default is not safe: your ISP most likely has access to your browsing history. With the AdGuard VPN app, you can choose a secure and encrypted DNS server from [known DNS providers](https://adguard-dns.io/kb/general/dns-providers/), such as AdGuard DNS, Cisco, Cloudflare, Google, or Quad9, or even add your own DNS server. +Es ist nicht sicher, sich auf den DNS-Server zu verlassen, der standardmäßig von Ihrem Internetanbieter bereitgestellt wird: Ihr Internetanbieter hat höchstwahrscheinlich Zugriff auf Ihren Browserverlauf. Mit der AdGuard VPN-App können Sie einen sicheren und verschlüsselten DNS-Server von [bekannten DNS-Anbietern](https://adguard-dns.io/kb/general/dns-providers/), wie AdGuard DNS, Cisco, Cloudflare, Google oder Quad9, auswählen oder sogar Ihren eigenen DNS-Server hinzufügen. -We recommend using an AdGuard DNS server: it blocks ads and trackers and protects your device from malware. +Wir empfehlen die Verwendung eines AdGuard DNS-Servers: Er sperrt Werbung und Tracker und schützt Ihr Gerät vor Schadsoftware. -![DNS servers](https://cdn.adtidy.org/blog/new/lkarpag_dns_screen_en.png) +![DNS-Server](https://cdn.adtidy.org/blog/new/lkarpag_dns_screen_en.png) ## 4. Schnellste Standorte -![VPN server locations](https://cdn.adguard.com/content/blog/articles/adguard-vpn/locations-en.png) +![VPN-Serverstandorte](https://cdn.adguard.com/content/blog/articles/adguard-vpn/locations-en.png) -Another feature that makes AdGuard VPN stand out from the crowd is that you can select a location based on its ping. In a nutshell, ping is the time it takes the data packet sent from your device to reach the server and return. When in doubt, use a rule of thumb: the lower the ping, the closer the server, the higher its speed. We are constantly expanding the number of locations so that you can choose from a variety. +Eine weitere Funktion, mit der sich AdGuard VPN von der Masse abhebt, ist die Möglichkeit, einen Standort anhand seines Ping auszuwählen. Kurz gesagt, ist Ping die Zeit, die das von Ihrem Gerät gesendete Datenpaket braucht, um den Server zu erreichen und zurückzukehren. Im Zweifelsfall gilt die Faustregel: je niedriger der Ping, desto näher der Server, desto höher seine Geschwindigkeit. Wir erweitern ständig die Anzahl der Standorte, damit Sie aus einer Vielzahl auswählen können. :::note -To access all VPN server locations, you need to purchase an AdGuard VPN subscription. +Um Zugang zu allen VPN-Serverstandorten zu erhalten, müssen Sie ein AdGuard VPN-Abonnement erwerben. ::: -## 5. Integration with AdGuard Ad Blocker +## 5. Integration mit AdGuard Werbeblocker -With desktop apps and web browser extensions, there are rarely conflicts between apps, except for antiviruses and other similar types of software. +Bei Desktop-Anwendungen und Browsererweiterungen kommt es selten zu Konflikten zwischen Anwendungen, außer bei Antivirenprogrammen und anderen ähnlichen Software-Arten. -With mobile devices, hovewer, it’s not that simple. In the vast majority of cases, two VPN-based apps will not work together. Both in Android and iOS, there are limitations that prevent it. +Bei mobilen Geräten ist das nicht so einfach. In den allermeisten Fällen funktionieren zwei VPN-basierte Apps nicht zusammen. Sowohl bei Android als auch bei iOS gibt es Beschränkungen, die dies verhindern. -![Integrated mode](https://cdn.adguard.com/content/blog/articles/adguard-vpn/integration-en.png) +![Integrierter Modus](https://cdn.adguard.com/content/blog/articles/adguard-vpn/integration-en.png) -However, we managed to find a solution to befriend AdGuard VPN and AdGuard Ad Blocker. When you have both AdGuard apps installed on one device, they will automatically become compatible without any input required from you. This is a unique opportunity to take advantage of two sets of features, which you would normally have to choose between. +Es ist uns jedoch gelungen, eine Lösung zu finden, um AdGuard VPN und AdGuard Werbeblocker zu vereinen. Wenn Sie beide AdGuard-Apps auf einem Gerät installiert haben, werden sie automatisch kompatibel, ohne dass Sie Eingaben vornehmen müssen. Dies ist eine einzigartige Gelegenheit, die Vorteile von zwei Leistungsmerkmalen zu nutzen, zwischen denen Sie normalerweise wählen müssten. ## 6. QUIC-Unterstützung -[QUIC](https://adguard-dns.io/en/blog/dns-over-quic.html#whatisquic) is a cutting-edge protocol that has many perks. The main advantage is it can improve the connection quality in non-ideal conditions — for example, on mobile devices or when connecting to public Wi-Fi. Although the new protocol won’t affect speed when the connection is fine and stable, it will definitely make the situation better for users with slow Internet. +[QUIC](https://adguard-dns.io/en/blog/dns-over-quic.html#whatisquic) ist ein hochmodernes Protokoll, das viele Vorteile bietet. Der Hauptvorteil besteht darin, dass die Verbindungsqualität auch unter ungünstigen Bedingungen verbessert werden kann, z. B. bei mobilen Geräten oder bei der Verbindung zu öffentlichen WLAN-Netzen. Obwohl das neue Protokoll keine Auswirkungen auf die Geschwindigkeit hat, wenn die Verbindung gut und stabil ist, wird es die Situation mit langsamem Internet definitiv verbessern. :::caution -The QUIC protocol is rather new and may be unstable. We cannot guarantee its complete reliability for every case. +Das QUIC-Protokoll ist noch relativ neu und kann instabil sein. Es kann nicht in jedem Fall eine vollständige Zuverlässigkeit garantiert werden. ::: -*Now let’s switch to the item set that any decent VPN can't do without.* +*Kommen wir nun zu den Eigenschaften, die ein gutes VPN haben muss.* ## 7. Kill Switch -Kill Switch is essential if you, for instance, often use a mobile network or connect to public Wi-Fi networks in malls, cafes, on the subway or at the airport. For the simple reason that if your VPN suddenly fails and the connection becomes insecure, chances are your sensitive information will be exposed to fraudsters or cyber criminals. +Kill Switch ist unverzichtbar, wenn Sie z.B. häufig ein Mobilfunknetz nutzen oder sich in Einkaufszentren, Cafés, in der U-Bahn oder am Flughafen mit einem öffentlichen WLAN verbinden. Der Grund ist einfach: Wenn das VPN plötzlich ausfällt und Ihre Internetverbindung unsicher wird, steigt das Risiko, dass Ihre persönlichen Daten abgefangen werden. -If for some reason your VPN connection is interrupted, Kill Switch will automatically disconnect you from the Internet, keeping attackers away from seizing your information. +Wenn Ihre VPN-Verbindung aus irgendeinem Grund unterbrochen wird, trennt Kill Switch automatisch die Verbindung zum Internet und hält Angreifer davon ab, Ihre Daten abzugreifen. -## 8. Auto-protection +## 8. Automatischer Schutz -This feature has been developed specifically for unsecured networks. If you enable Auto-protection, you won't ever forget to enable VPN when visiting public places. Should you pop into a coffee shop and connect to a local Wi-Fi network, you’ll be automatically connected to AdGuard VPN. +Diese Funktion wurde speziell für ungesicherte Netze entwickelt. Wenn Sie den automatischen Schutz aktivieren, werden Sie nie vergessen, VPN zu aktivieren, wenn Sie öffentliche Orte besuchen. Wenn Sie in ein Café gehen und sich mit einem lokalen WLAN verbinden, werden Sie automatisch mit AdGuard VPN verbunden. -:::note Compatibility +:::note Kompatibilität -Auto-protection is available in AdGuard VPN for iOS and Android. +Der automatische Schutz ist in AdGuard VPN für iOS und Android verfügbar. ::: -## 9. Ten simultaneous connections +## 9. Zehn gleichzeitige Verbindungen -With an AdGuard VPN subscription, you can connect up to ten devices *simultaneously*. +Mit einem AdGuard VPN-Abonnement können Sie bis zu zehn Geräte *gleichzeitig* verbinden. -Some VPN providers only allow to log in to their service on *ten devices max*. With AdGuard VPN, *it doesn't matter* on how many devices you log in to your AdGuard account, but you can have ten VPN connections enabled at the same time. +Einige VPN-Anbieter erlauben die Anmeldung bei ihrem Dienst nur auf *maximal zehn Geräten*. Mit AdGuard VPN *ist es egal*, mit wie vielen Geräten Sie sich bei Ihrem AdGuard-Konto anmelden, aber Sie können zehn VPN-Verbindungen gleichzeitig aktiviert haben. -Those who don’t have a subscription, can use AdGuard VPN on *two devices simultaneously*, which gives us another trump card to play against competitors: most free VPN services only allow you to use one device at a time. +Wer kein Abonnement hat, kann AdGuard VPN auf *zwei Geräten gleichzeitig* nutzen, was uns einen weiteren Trumpf gegenüber den Mitbewerbern in die Hand gibt: Die meisten kostenlosen VPN-Dienste erlauben nur die Nutzung eines Geräts zur gleichen Zeit. -## 10. Secure streaming +## 10. Sicheres Streaming -Streaming services don't like VPNs for obvious reasons: according to statistics, about 20% of users install a VPN mainly to watch shows, TV shows and movies bypassing geo-blocking. That's why streaming platforms tend to do everything they can to track VPN traffic and block it. +Streaming-Dienste haben aus offensichtlichen Gründen eine Abneigung gegen VPNs: Statistiken zeigen, dass etwa 20% der Menschen ein VPN hauptsächlich nutzen, um Shows, Serien und Filme trotz Ländersperren anzusehen. Deshalb setzen Streaming-Plattformen alles daran, den VPN-Verkehr zu verfolgen und zu sperren. -But what if you want to feel safe while watching content specific to your region? Or don't want to stop watching exciting series even when you travel to another country? The answer is simple — AdGuard VPN, which thanks to its unique protocol can remain invisible to services. +Was aber, wenn Sie sich sicher fühlen wollen, während Sie sich Inhalte ansehen, die für Ihre Region bestimmt sind? Oder wollen Sie nicht aufhören, spannende Serien zu sehen, auch wenn Sie in ein anderes Land reisen? Die Antwort ist einfach — AdGuard VPN, das dank seines einzigartigen Protokolls für die Dienste unsichtbar bleiben kann. -We don't endorse the use of AdGuard VPN to bypass copyright regulations. +Wir befürworten nicht die Verwendung von AdGuard VPN zur Umgehung von Urheberrechtsbestimmungen. -## 11. Dark mode +## 11. Dunkles Design -![Dark mode *mobile_border](https://cdn.adguardvpn.com/public/Adguard/Blog/vpn/main_en_black.png) +![Dunkles Design *mobile_border](https://cdn.adguardvpn.com/public/Adguard/Blog/vpn/main_en_black.png) -This little feature deserves special mention. In fact, many users crave for dark mode, so we couldn’t ignore it and added a theme switch for all AdGuard VPN products. Choose the one you like more — light, dark or system default. Hope you’ll join the dark side. +Diese kleine Besonderheit verdient eine besondere Erwähnung. Tatsächlich wünschen sich viele ein dunkles Design, so dass wir dies nicht ignorieren konnten und einen Farbschema-Schalter für alle AdGuard VPN-Produkte hinzugefügt haben. Wählen Sie aus, was Ihnen besser gefällt — hell, dunkel oder Systemstandard. Hoffentlich kommen Sie auf die dunkle Seite. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/beta-testing.md b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/beta-testing.md index cd42376fd..5ed441ac0 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/beta-testing.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/beta-testing.md @@ -11,10 +11,10 @@ Um AdGuard VPN-Beta-Tester zu werden, brauchen Sie nur ein paar Dinge: den Wunsc ### Wie Sie einen Fehler melden können -Nehmen wir an, haben Sie einen Fehler entdeckt. Oder vielleicht möchten Sie Ihre Vorschläge einfach nur mit den Entwicklern teilen. Let us know: go to [GitHub](https://github.com/AdguardTeam/), find a suitable repository, create a new issue there, and describe the bug/feature request in detail. +Nehmen wir an, haben Sie einen Fehler entdeckt. Oder vielleicht möchten Sie Ihre Vorschläge einfach nur mit den Entwicklern teilen. Lassen Sie es uns wissen: Besuchen Sie [GitHub](https://github.com/AdguardTeam/), finden Sie ein passendes Repository, erstellen Sie dort einen neuen Eintrag und beschreiben Sie den Fehler/Funktionswunsch im Detail. -The above method is the most preferred, but you can use others if necessary: +Die oben beschriebene Methode ist die bevorzugte, aber Sie können bei Bedarf auch andere Methoden anwenden: -- Find us on various social media platforms, like [Facebook](https://www.facebook.com/AdguardEn/), [Reddit](https://www.reddit.com/r/Adguard/), etc. However, this is not the most efficient way to discuss technical matters. +- Sie finden uns auf verschiedenen Plattformen der sozialen Medien, wie [Facebook](https://www.facebook.com/AdguardEn/), [Reddit](https://www.reddit.com/r/Adguard/), usw. Dies ist jedoch nicht der effizienteste Weg, um technische Fragen zu erörtern. -- Email our support team from the Support tab in the app or write directly to [support@adguard.com](mailto:support@adguard.com). +- Senden Sie eine E-Mail an unser Support-Team über den Tab „Support“ in der App oder schreiben Sie direkt an [support@adguard.com](mailto:support@adguard.com). diff --git a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/take-screenshot.md b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/take-screenshot.md index 292fd455d..987e0ee62 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/take-screenshot.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/take-screenshot.md @@ -17,9 +17,9 @@ Das Erstellen eines Screenshots auf einem Android-Gerät kann auf verschiedene A Im Allgemeinen sollten Sie für Android die folgende Tastenkombination verwenden: -- **Press and hold both the *Volume Down* and the *Power* buttons for 1–2 seconds** +- **Halten Sie die Tasten *Leiser* und *Ein/Aus* für 1-2 Sekunden gedrückt** -Android will capture the entire screen and save it as a photo. Sie finden den Screenshot also in einem Screenshots-Ordner in Ihrer Galerie. +Android erfasst den gesamten Bildschirm und speichert ihn als Foto. Sie finden den Screenshot also in einem Screenshots-Ordner in Ihrer Galerie. Aber wie bereits gesagt, kann es je nach Gerät Unterschiede geben. Schauen wir uns andere mögliche Kombinationen an: @@ -30,7 +30,7 @@ Auf Android 8 und höher gibt es auch die Möglichkeit, einen Screenshot zu mach Wenn diese Methode nicht funktioniert, überprüfen Sie *Einstellungen* → *Erweiterte Funktionen* → *Bewegungen und Gesten* → und aktivieren Sie *Handflächenwischen zur Erfassung*. -Besides, you can always use any special apps for taking screenshots on your devices, for example — *Screenshot Easy*, *Screenshot Ultimate*, *Screenshot Snap*, etc. +Außerdem können Sie jederzeit spezielle Apps für die Aufnahme von Bildschirmfotos auf Ihren Geräten verwenden, z. B. *Screenshot Easy*, *Screenshot Ultimate*, *Screenshot Snap*, usw. ### iOS @@ -44,21 +44,21 @@ und diese hier für das iPhone X oder höher: - **Drücken Sie gleichzeitig die Taste *Sleep/Wake* und die Taste *Lauter* und lassen Sie sie dann schnell los** -iOS will capture the entire screen and save it as a photo. Sie finden es in einer Standard-Foto-App. +iOS erfasst den gesamten Bildschirm und speichert ihn als Foto. Sie finden es in einer Standard-Foto-App. ### Windows -- **To take a screenshot on a Windows device, press the *PrtScn* button** +- **Um ein Bildschirmfoto auf einem Windows-Gerät aufzunehmen, drücken Sie die *PrtScn/Druck*-Taste** -On some devices, you first have to press and hold *Fn* before pressing *PrtScn*. +Auf manchen Tastaturen müssen Sie zuerst *Fn* gedrückt halten, bevor Sie *PrtScn/Druck* drücken. :::note -PrtScn (Print Screen) can be differently abbreviated on various keyboards — PrntScrn, PrtScn, PrtScr or PrtSc. +PrtScn (Print Screen) kann auf verschiedenen Tastaturen unterschiedlich abgekürzt werden — Druck, PrntScrn, PrtScn, PrtScr oder PrtSc. ::: -Windows will capture the entire screen and copy it to the clipboard. +Windows erfasst den gesamten Bildschirm und kopiert ihn in die Zwischenablage. Um einen Screenshot eines aktiven Fensters zu machen, verwenden Sie die folgende Kombination: @@ -68,21 +68,21 @@ Um einen Screenshot eines bestimmten Bereichs zu machen, sollten Sie die folgend - ***Halten Sie *Win* (die Windows-Taste) und *Shift* gedrückt und drücken Sie ***S****** -Nachdem Sie einen Screenshot gemacht haben, wird er in der Zwischenablage gespeichert. Usually, you will then be able to paste it into a document using the standard button combination *Ctrl + V*. Wenn Sie den Screenshot alternativ in einer Datei speichern müssen, sollten Sie das Standardprogramm **Paint** öffnen (oder jede andere App, die mit Bildern arbeiten kann). Fügen Sie Ihren Screenshot dort mit der gleichen Tastenkombination oder durch Klicken auf die Schaltfläche Einfügen (normalerweise in der oberen linken Ecke des Bildschirms) ein und speichern Sie ihn dann. +Nachdem Sie einen Screenshot gemacht haben, wird er in der Zwischenablage gespeichert. In der Regel können Sie sie dann mit der Standardtastenkombination *Strg + V* in ein Dokument einfügen. Wenn Sie den Screenshot alternativ in einer Datei speichern müssen, sollten Sie das Standardprogramm **Paint** öffnen (oder jede andere App, die mit Bildern arbeiten kann). Fügen Sie Ihren Screenshot dort mit der gleichen Tastenkombination oder durch Klicken auf die Schaltfläche Einfügen (normalerweise in der oberen linken Ecke des Bildschirms) ein und speichern Sie ihn dann. Mit Windows 8 und 10 können Sie mit einer Kombination aus *Win + PrtScn* sehr schnell einen Screenshot erstellen. Sobald Sie diese Schaltflächen drücken, wird der Screenshot automatisch als Datei in Ihrem Ordner Bilder → Screenshots gespeichert. -Es gibt auch ein spezielles Programm zum Aufnehmen von Screenshots namens *Snipping Tool* , das Sie über das Startmenü unter den Standardprogrammen Ihres Computers finden können. Mit dem Snipping Tool können Sie jeden Bereich Ihres Desktops oder den gesamten Bildschirm erfassen. After taking a screenshot using this program you can edit the picture and then save it. +Es gibt auch ein spezielles Programm zum Aufnehmen von Screenshots namens *Snipping Tool* , das Sie über das Startmenü unter den Standardprogrammen Ihres Computers finden können. Mit dem Snipping Tool können Sie jeden Bereich Ihres Desktops oder den gesamten Bildschirm erfassen. Nachdem Sie mit diesem Programm einen Screenshot aufgenommen haben, können Sie das Bild bearbeiten und anschließend speichern. Außerdem können Sie auch versuchen, verschiedene Apps zum Aufnehmen von Screenshots auf Ihrem Computer zu verwenden, z. B. **PicPick**, **Nimbus Screenshot**, **Screenshot Captor**, **Snipaste**, **Monosnap** usw. ### macOS -To take a screenshot on a Mac device, use the following button combination: +Um ein Bildschirmfoto auf einem Mac-Gerät zu erstellen, verwenden Sie das folgende Tastaturkürzel: - ***Drücken und halten Sie zusammen ***⌘ Cmd + Shift + 3****** -Mac will capture the entire screen and save it as a file on the desktop. +Ihr Mac erfasst den gesamten Bildschirm und speichert ihn als Datei auf dem Desktop. Um einen Screenshot eines aktiven Fensters zu machen, verwenden Sie die folgende Kombination: diff --git a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/update-kb.md b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/update-kb.md index d50c4ee37..7c73ac98b 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/update-kb.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/miscellaneous/update-kb.md @@ -15,13 +15,13 @@ Sobald Sie bereit sind, arbeiten Sie unter [dem KnowledgeBaseVPN-Repository](htt Die Website der Wissensdatenbank wurde mit Docusaurus 2 erstellt, einem modernen Generator für statische Websites. Wenn Sie Änderungen oder Ergänzungen vorschlagen, beachten Sie bitte, dass alle Dokumente den Grundsätzen der Plattform entsprechen müssen. Sie können sie in dem Leitfaden nachlesen, der über [diesen Link](https://docusaurus.io/docs/category/guides) verfügbar ist. -Sie können die Wissensdatenbank auch lokal auf Ihrem Computer bereitstellen, um eine Vorschau auf die von Ihnen vorgeschlagenen Änderungen zu erhalten. Detailed instructions on how to do this can be found [in the README.md file](https://github.com/AdguardTeam/KnowledgeBaseVPN/blob/main/README) on this Knowledge Base's GitHub page. +Sie können die Wissensdatenbank auch lokal auf Ihrem Computer bereitstellen, um eine Vorschau auf die von Ihnen vorgeschlagenen Änderungen zu erhalten. Detaillierte Anweisungen dazu finden Sie [in der Datei README.md](https://github.com/AdguardTeam/KnowledgeBaseVPN/blob/main/README) auf der GitHub-Seite dieser Wissensdatenbank. ## Artikel übersetzen {#translate-adguard} Die Übersetzung der bestehenden Artikel der Wissensdatenbank erfolgt auf [der Crowdin-Plattform](https://crowdin.com/project/adguard-vpn-knowledge-base). Alle Details zu Übersetzungen und zur Arbeit mit Crowdin finden Sie [im entsprechenden Artikel](https://adguard.com/kb/miscellaneous/contribute/translate/program/) der Wissensdatenbank von AdGuard Werbeblocker. -Wenn Sie an Artikeln der AdGuard VPN-Wissensdatenbank arbeiten, stoßen Sie möglicherweise auf Zeichenfolgen mit Pluralformen, die Sie mit besonderer Aufmerksamkeit übersetzen sollten. [In a separate article](https://adguard.com/kb/miscellaneous/contribute/translate/plural-forms/), we describe in detail the difficulties that can arise when translating strings with plural forms and provide detailed guidance on how these are handled on the Crowdin platform. +Wenn Sie an Artikeln der AdGuard VPN-Wissensdatenbank arbeiten, stoßen Sie möglicherweise auf Strings mit Pluralformen, die Sie mit besonderer Aufmerksamkeit übersetzen sollten. [In einem separaten Artikel](https://adguard.com/kb/miscellaneous/contribute/translate/plural-forms/) beschreiben wir ausführlich die Schwierigkeiten, die bei der Übersetzung von Strings mit Pluralformen auftreten können, und geben eine detaillierte Anleitung, wie diese auf der Crowdin-Plattform behandelt werden. ## An Open Issues arbeiten diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/es/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/fi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/hr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/it/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/ja/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/nl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/pt-BR/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/pt/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index 91374a85f..74a2c3648 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ adguardvpn-cli connect -l ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/sk/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/sl/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/sr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index b3ec78017..29ef94815 100644 --- a/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/tr/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ Güncellemeleri denetlemek için şunu yazın: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/vi/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription. diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md new file mode 100644 index 000000000..374457be8 --- /dev/null +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/autocomplete.md @@ -0,0 +1,14 @@ +--- +title: Command-line completion +sidebar_position: 5 +--- + +To make navigating through different and, sometimes, pretty long commands easier, you can use the command-line completion feature. + +To enable it, see the bash-completion hint that is shown after installing or updating AdGuard VPN for Linux: + +![bash-completion hint](https://cdn.adtidy.org/blog/new/6x3djbash-completion-hint.png) + +To use the feature, just start typing the command you want and hit the Tab ↹ key — the command will automatically complete with a necessary word or will show a choice of completion options. + +![bash-completion locations command](https://cdn.adtidy.org/blog/new/1g4nhVPN-CLI-autocomplete.png) diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md new file mode 100644 index 000000000..8c5078da2 --- /dev/null +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/exclusions.md @@ -0,0 +1,76 @@ +--- +title: Exclusions +sidebar_position: 7 +--- + +The _Exclusions_ feature lets you decide which domains’ traffic should be excluded from VPN routing. This is handy when you don’t need VPN to work for some websites, because it saves you the hassle of constantly turning VPN on and off. + +Just like in AdGuard VPN for other platforms, in AdGuard VPN for Linux you can use Exclusions in two modes: General (VPN is enabled for all domains except for those in the list of exclusions) and Selective (VPN is enabled only for the domains in the list of exclusions). + +:::note + +Each mode has its own list of exclusions. + +::: + +![Exclusions](https://cdn.adtidy.org/blog/new/m6pkdVPN-CLI-exclusions.png) + +### How to use + +To view all exclusion-related commands, type: + +``` +adguardvpn-cli site-exclusions -h +``` + +To add a domain to the exclusion list of the current mode, type: + +``` +adguardvpn-cli site-exclusions add %domain_name% +``` + +:::tip + +Supported input formats: `domain.com`, `sub.domain.com`, `www.domain.com`. To add two or more exclusions at once, list them comma-separated. Use double quotes for wildcards: `"*.domain.com"` + +Command example: `adguardvpn-cli site-exclusions add https://www.google.com/` + +::: + +To remove a domain from the list of exclusions, type: + +``` +adguardvpn-cli site-exclusions remove %domain_name% +``` + +To view the current exclusion list, type: + +``` +adguardvpn-cli site-exclusions show +``` + +To remove all exclusions, type: + +``` +adguardvpn-cli site-exclusions clear +``` + +To change the Exclusions mode, type: + +``` +adguardvpn-cli site-exclusions mode %mode_name% +``` + +(Or you can just check the current mode using `adguardvpn-cli site-exclusions mode`) + +where %mode_name% is `general` or `selective`. + +:::note + +The commands listed above (`add`, `remove`, `show`, `clear`) are applied to the exclusion list of the current mode. To perform a command for a specific mode, add `--for-mode %mode_name% type`, for example: + +``` +adguardvpn-cli site-exclusions add %domain_name% --for-mode %mode_name% +``` + +::: diff --git a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md index e89b38ddf..891f28163 100644 --- a/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md +++ b/i18n/zh-TW/docusaurus-plugin-content-docs/current/adguard-vpn-for-linux/login.md @@ -56,3 +56,13 @@ To check for updates, type: ``` adguardvpn-cli check-update ``` + +## Check your subscription info + +To check your current subscription information and status, type: + +``` +adguardvpn-cli license +``` + +You will see your email and subscription type. Paid users will also see the expiration date of their subscription.