aboutsummaryrefslogtreecommitdiffstats
path: root/en/about/license/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'en/about/license/index.php')
-rw-r--r--en/about/license/index.php55
1 files changed, 0 insertions, 55 deletions
diff --git a/en/about/license/index.php b/en/about/license/index.php
deleted file mode 100644
index eb9b086dd..000000000
--- a/en/about/license/index.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-
-define('HLANG', true);
-require '../../../langs.php';
-
-$dictionary = read_translation_file($locale, 'about/license');
-
-require('license.php');
-$prepared_license_strings = read_license_from_vcs($locale);
-
-// Note to translators: _r('Note to translators! PLEASE READ THIS LINE! YOU DON\'T NEED TO TRANSLATE IT! Please translate license in your po file "http://gitweb.mageia.org/software/drakx/tree/perl-install/share/po/" first. Check wiki for details.')
-?>
-<!DOCTYPE html>
-<html lang="<?php echo $locale; ?>">
-<head>
- <meta charset="utf-8">
- <title><?php _g('Mageia license')?></title>
- <link rel="stylesheet" href="/g/style/all.css">
- <style>
- .para { text-align: left; float: left; display: block; }
- hr { margin-top: 2em; }
- </style>
- <?php include '../../../analytics.php'; ?>
-</head>
-<body class="about">
- <?php echo $hsnav; ?>
- <h1 id="mgnavtitle"><?php _g('Mageia license')?></h1>
- <div id="doc" class="yui-t7">
- <div id="bd" role="main" class="para">
- <section>
- <?php
- echo '<div id="preamble">';
- // _('An introduction text ... (summarizing, explaining the core principles, and why this license was chosen).');
- echo '<p>' . sprintf(_r('You can get more information about our licensing policy %shere</a>.'),
- '<a href="https://wiki.mageia.org/en/Licensing_policy">') . '</p>';
- $unofficial_translation = array_shift($prepared_license_strings);
- $patents_warning = array_pop($prepared_license_strings);
- if($locale != 'en') {
- echo sprintf('<%s>' . $unofficial_translation[0] . '</%s>' . PHP_EOL, $unofficial_translation[1], $unofficial_translation[1]);
- }
- echo '</div><br>';
-
- foreach($prepared_license_strings as $string) {
- echo sprintf('<%s>' . $string[0] . '</%s>' . PHP_EOL, $string[1], $string[1]);
- }
-
- _g('Warning about patents', null, 'h2');
- $patents = str_replace('http://www.mp3licensing.com', '<a href="http://www.mp3licensing.com">www.mp3licensing.com</a>', $patents_warning[0]);
- echo '<p>' . $patents . '</p>' . PHP_EOL;
- ?>
- </section>
- </div>
- </div>
-</body>
-</html>