blob: e5d82920a5e09b41a91486e4c37d107472543ed2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php
define('HLANG', true);
require '../../../langs.php';
_lang_load($locale, 'about/license');
require('license.php');
$prepared_license_strings = read_license_from_vcs($locale);
// Note to translators: _t('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 _e('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 _e('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(_t('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]);
}
_h('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>
|