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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<?php
define('HLANG', true);
define('ALIGNMENT', 'Center');
require '../../langs.php';
$dictionary = read_translation_file($locale, array('donate', 'common_footer'));
$rtl = is_locale_rtl($locale);
?><!DOCTYPE html>
<html <?php echo $rtl ? 'dir="rtl"' : 'dir="ltr"'?> lang="<?php echo $locale; ?>">
<head>
<meta charset="utf-8">
<title><?php _g('Donate to Mageia')?></title>
<meta name="description" content="">
<meta name="keywords" content="<?php _g('mageia, donate, donation, donors, help'); ?>">
<meta name="author" content="Mageia">
<?php echo common_header(); ?>
<link rel="canonical" href="/<?php echo $locale; ?>/donate/">
<?php include '../../analytics.php'; ?>
<style>
h3 {margin:1.5em 0 0.3em; }
.dlinfo li { margin-bottom: 0.6em; }
</style>
<script src="//static.mageia.org/g/js/treasurer.js"></script>
</head>
<body class="donate" <?php echo $rtl ? 'style="text-align: right;"' : ''?>>
<?php echo $hsnav; ?>
<h1 id="mgnavt"><?php _g('Donate to Mageia')?></h1>
<div id="doc2" class="yui-t7" style="margin-bottom: 0px;">
<div class="yui-ge row">
<div class="yui-u first col">
<div class="para">
<h2 id="d-paypal"><?php _g('Donate via PayPal,'); ?></h2>
<?php include '../../paypal.inc.php'; echo html_paypal_form($locale); ?>
<h3 id="d-bitcoin"><?php _g('via bitcoin,'); ?></h3>
<?php echo sprintf(_r('If you want to donate <a href="http://bitcoin.org/">bitcoins</a>, the Mageia.Org bitcoin address is <b>%s</b>.'), '<a href="https://blockchain.info/address/1GYF2h69NrJ7Pp92bNPDEdLABbH1hR7rsA">1GYF2h69NrJ7Pp92bNPDEdLABbH1hR7rsA</a>'); ?>
<h3><?php _g('or via check (€ only).')?></h3>
<p><?php _g('You can send your donation by check to this address:')?></p>
<pre class="donate-coord">
<?php echo $G_coord_assos; ?>
</pre>
<p><?php _g('Use "Mageia.Org" in the "Pay to the order of..." line.');?></p>
<p class="dlinfo"><strong><?php _g('Please note that:')?></strong></p>
<ul>
<li><?php _g('Paypal withdraws a small commission for each donation (around 2%) so we get a little bit less than you send;')?></li>
<li><?php _g('conversion rates are charged to Mageia, so please use € as currency;')?></li>
<li><?php echo sprintf(_r('if you want to do an anonymous donation, please add a comment or send an email to %s.'), '<a href="mailto:treasurer@mageia.org">treasurer@mageia.org</a>')?></li>
</ul>
</div>
</div>
<div class="yui-u col">
<div class="para">
<h2 id="why"><?php _g('Why donate?'); ?></h2>
<p><?php _g('Mageia.Org is a not-for-profit association to manage the Mageia distribution. As a not-for-profit association, it can receive donations from the community to help in a lot of differents fields:')?></p>
<ul>
<li><?php _g('hardware and hosting for servers;')?></li>
<li><?php _g('domain names;')?></li>
<li><?php _g('registrations of Mageia trademark;')?></li>
<li><?php _g('goodies for spreading Mageia;')?></li>
<li><?php _g('administrative expenses;')?></li>
<li><?php _g('eventually, legal counsel and')?></li>
<li><?php _g('etc.')?></li>
</ul>
</div>
<div class="para track">
<h2 id="status"><?php _g('How to track donation?')?></h2>
<p><?php echo sprintf(_r('Currently, we received a lot of generous donations (%s, remains %s) thanks to all of our <a href="../thank-you/">donors</a>!'),
'<span id="donations_total">x</span> €', '<span id="balance">x</span> €');?></p>
<p><?php echo sprintf(_r('We believe public accountability is crucial. You can know more about how are used the funds received by reading our <a href="%s">financial reports</a>.'), '../about/reports/')?></p>
<!--
<pRE><mark>
TODO: projected funds/provisions: high level, then detailed budget.
People can choose how to distribute their donation among those:
* infrastructure:
- servers
- ...
* communication
- Web
- print
* give back to other projects/associations (April, FS projects)
* employment in mageia.org
* IP/brand
* ?
* other
</mark></pre>
-->
</div>
<div class="para questions">
<h2 id="questions"><?php _g('Questions?')?></h2>
<p><?php _g('If you have any question about donations, you can send an email to <a href="mailto:treasurer@mageia.org">treasurer@mageia.org</a>.'); ?></p>
<hr />
</div>
</div>
</div>
</div>
<?php echo common_footer($locale); ?>
<script>donate_page();</script>
</body>
</html>
|