diff options
Diffstat (limited to 'en')
-rw-r--r-- | en/about/policies/index.php | 5 | ||||
-rw-r--r-- | en/about/policies/privacy/index.php | 49 |
2 files changed, 50 insertions, 4 deletions
diff --git a/en/about/policies/index.php b/en/about/policies/index.php index e243ffa6c..dcd83023a 100644 --- a/en/about/policies/index.php +++ b/en/about/policies/index.php @@ -1,3 +1,4 @@ <?php -header('Location: https://wiki.mageia.org/en/Policies'); -die; + +require_once '../../../langs.inc.php'; +relocate($langs, 'about/policies/privacy/'); diff --git a/en/about/policies/privacy/index.php b/en/about/policies/privacy/index.php index 45d7dbb5f..2b6653e5c 100644 --- a/en/about/policies/privacy/index.php +++ b/en/about/policies/privacy/index.php @@ -1,3 +1,48 @@ <?php -header('Location: https://wiki.mageia.org/en/Privacy_policy'); -die; +define('HLANG', true); +define('ALIGNMENT', 'Center'); +require '../../../../langs.php'; + +$dictionary = read_translation_file($locale, "about/policies/privacy"); + +?><!DOCTYPE html> +<html lang="<?php echo $locale; ?>" dir="ltr"> +<head> + <meta charset="utf-8"> + <title><?php _g('Privacy policy')?></title> + <meta name="description" content="<?php _g('Privacy policy')?>"> + <link rel="stylesheet" href="/g/style/all.css" type="text/css"> + <?php include '../../../../analytics.php'; ?> +</head> +<body class="about"> + <?php echo $hsnav; ?> + <h1 id="mgnavt"><?php _g('Policies')?></h1> + <div id="doc" class="yui-t7"> + <div id="bd" role="main"> + <div class="yui-g"> + <div class="para donate" style="padding-top: 2em;"> + <?php +_g('Privacy policy', null, 'h2'); + +echo '<p>'; +_g("Collected data is needed to authenticate and use Mageia's online resources.", null, ' '); +_g("Mageia.Org has declared the collection of that data to an independent administrative authority %s (reference number 1749459 v 0).", array('<a href="https://www.cnil.fr/">CNIL</a>'), ' '); +echo '</p><p>'; +_g("In compliance with %sArticles 39%s and following of the French Data Protection Act no. 78-17 of 6 January 1978, as amended by Act no. 2004-801 of 6 August 2004, you are entitled to access and modify your personal data.", +array('<a href="https://www.legifrance.gouv.fr/affichCodeArticle.do?idArticle=LEGIARTI000023378275&cidTexte=LEGITEXT000006069577">', '</a>')); +echo '</p><p>'; +_g("You can review and modify the personal information you previously provided by logging in at %s and making any necessary changes.", array('<a href="https://identity.mageia.org">identity.mageia.org</a>'), ' '); +_g("All fields except the user ID can be altered."); +echo '</p>'; +_g("If you wish to obtain or modify data not available through %s, or if you have any queries, please contact the Board of the Mageia.Org association at %s.", array('<a href="https://identity.mageia.org">identity.mageia.org</a>', '<a href="mailto:board@group.mageia.org">board@group.mageia.org</a>'), 'p'); + +_g('More details', null, 'h2'); +_g('Some explanation and less formal informations about privacy policy are available in our <a href="%s">wiki</a>.', +_r('https://wiki.mageia.org/en/Privacy_policy'), 'p'); +?> + </div> + </div> + </div> + </div> +</body> +</html> |