Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix broken link #127

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions adguard-mail.com/privacy/app.html.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AdGuard Mail Privacy Policy

*August 23, 2024*
*December 4, 2024*

---

Expand All @@ -20,7 +20,7 @@ AdGuard Mail applications are available on multiple platforms: iOS, Android, mac

### User registration and authorization

Registration and authorization for AdGuard Mail are managed through the AdGuard web-based authentication service at [auth.adguard.com](https://auth.adguard.com/). The privacy policy governing the AdGuard website and related sites is outlined in the document available at [adguard.com/privacy/website.html](https://adguard.com/privacy/website.html).
Registration and authorization for AdGuard Mail are managed through the AdGuard web-based authentication service at [auth.adguard.com](https://auth.adguard.com/). The privacy policy governing the AdGuard website and related sites is outlined in the document available at [adguard.com/privacy/website.html](https://adguard.com/website-privacy.html).

When you register or log in to AdGuard Mail or other AdGuard services, you will be directed to [auth.adguard.com](https://auth.adguard.com), where you may be required to provide your login credentials (email and password). Upon successful authorization, an OAuth access token is issued to the app.

Expand Down
2 changes: 1 addition & 1 deletion build-resx.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require('path');
const {create} = require('xmlbuilder2');

const basePath = 'crowdin';
const outputFilename = 'docs.resx';
const outputFilename = 'docs.en.resx';
const filesToProcessExt = '.html.md'

const mappings = {
Expand Down
5 changes: 3 additions & 2 deletions crowdin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ base_path: './crowdin'
preserve_hierarchy: true

files:
- source: '**/docs.resx'
translation: '**/%two_letters_code%/%original_file_name%'
- source: '**/docs.en.resx'
dest: '**/docs.resx'
translation: '**/docs.%two_letters_code%.resx'
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
"scripts": {
"lint": "markdownlint .",
"build:resx": "node build-resx.js",
"crowdin:upload": "crowdin upload",
"crowdin:upload:dryrun": "crowdin upload --dryrun"
"crowdin:upload:sources": "crowdin upload sources",
"crowdin:upload:translations": "crowdin upload translations -l en --auto-approve-imported --import-eq-suggestions",
"crowdin:upload": "npm run crowdin:upload:sources && npm run crowdin:upload:translations",
"crowdin:upload:dryrun": "crowdin upload sources --dryrun && crowdin upload translations -l en --auto-approve-imported --import-eq-suggestions --dryrun"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@crowdin/cli": "4.4.0",
"@crowdin/cli": "4.4.1",
"markdownlint": "0.36.1",
"markdownlint-cli": "0.43.0",
"xmlbuilder2": "3.1.1"
Expand Down
Loading