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
103
104
105
|
<?php
define('HLANG', true);
require '../../langs.php';
include 'locales.php';
$_t = i18n::get_strings($_t, $locale, $i18n_fallback_rules);
?><!DOCTYPE html>
<html dir="ltr" lang="<?php echo $locale; ?>">
<head>
<meta charset="utf-8">
<title><?php _e('Donate to Mageia')?></title>
<meta name="description" content="">
<meta name="keywords" content="<?php _e('mageia, donate, donation, donors, help'); ?>">
<meta name="author" content="Mageia">
<link rel="stylesheet" type="text/css" href="/g/style/all.css">
<?php include '../../analytics.php'; ?>
</head>
<body class="contribute donate">
<?php echo $hsnav; ?>
<h1 id="mgnavt"><?php _e('Donate to Mageia')?></h1>
<div id="doc" class="yui-t7">
<div id="bd" role="main">
<div class="yui-g">
<div class="para donate" style="padding-top: 2em;">
<div style="float: right; border: 1px solid #aaa; padding: 0 0 1em 0; margin: 0 0 2em 1em;">
<ul>
<li><a href="#why"><?php _e('Why donate?');?></a></li>
<li><a href="#status"><?php _e('Donation Tracks');?></a></li>
<li><a href="#d-paypal"><?php _e('Donate');?></a> (<?php _e('PayPal, bank, check');?>)</li>
<li><a href="/en/thank-you/#fund"><?php _e('Thank you!');?></a></li>
</ul>
</div>
<h2 id="why"><?php _e('Why donate?'); ?></h2>
<p><?php _e('why_donate_txt')?></p>
<ul><?php foreach (_t('why_donate_items') as $e)
echo sprintf('<li>%s</li>', $e);
?>
</ul>
<hr />
<h2 id="status"><?php _e('How to track donation?')?></h2>
<p><?php echo sprintf(_t('how_to_track_txt'),
$g_donate_amount, $g_amount_remain, '/en/about/reports/' . date('Y') . '/')?></p>
<!--
<hr />
<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>
<div class="yui-g"><div class="para">
<h2 id="d-paypal"><?php _e('Donate via PayPal,'); ?></h2>
<?php include '../../paypal.inc.php'; echo html_paypal_form($locale); ?>
</div></div>
<div class="yui-g">
<div class="yui-u first"><div class="para" style="padding-right: 0;">
<h3><?php _e('via bank transfer,'); ?></h3>
<p><?php _e('using the following Bank Identifier Code (IBAN-BIC):') ?></p>
<pre class="donate-coord">
<u><?php _e('In favor of:'); ?></u>
<?php echo $G_coord_assos; ?>
<u><?php _e('Bank Account:') ?></u>
<?php echo $G_coord_assos_bank; ?>
</pre>
</div></div>
<div class="yui-u"><div class="para">
<h3><?php _e('or via check (€ only).')?></h3>
<p><?php _e('You can send your donation by check to this address:')?></p>
<pre class="donate-coord">
<?php echo $G_coord_assos; ?>
</pre>
<p><?php _e('Use "Mageia.Org" in the "Pay to the order of..." line.');?></p>
</div><div class="para">
<p><strong><?php _e('Please note that:')?></strong></p>
<ul>
<li><?php _e('Paypal withdraws a small commission for each donation (around 2%) so we get a little bit less than you send;')?></li>
<li><?php _e('conversion rates are charged to Mageia, so please use € as currency;')?></li>
<li><?php _e('if you want to do an anonymous donation, please add a comment.')?></li>
</ul>
</div></div>
</div>
</div>
</div>
</body>
</html>
|