diff options
author | Romain d'Alverny <rda@mageia.org> | 2013-03-10 22:35:18 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2013-03-10 22:35:18 +0000 |
commit | 86f11ca07b01cbda36e7a941eda8c9415f5dc623 (patch) | |
tree | 4856982a6a08fb8bbdd0a1f9ae52ca0c568de1c5 /ur/donate | |
parent | 668ee915f5286e3ca00199e1ba33da9fd8af80cf (diff) | |
download | www-86f11ca07b01cbda36e7a941eda8c9415f5dc623.tar www-86f11ca07b01cbda36e7a941eda8c9415f5dc623.tar.gz www-86f11ca07b01cbda36e7a941eda8c9415f5dc623.tar.bz2 www-86f11ca07b01cbda36e7a941eda8c9415f5dc623.tar.xz www-86f11ca07b01cbda36e7a941eda8c9415f5dc623.zip |
add urdu
Diffstat (limited to 'ur/donate')
-rw-r--r-- | ur/donate/index.php | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/ur/donate/index.php b/ur/donate/index.php new file mode 100644 index 000000000..2b5f98f6d --- /dev/null +++ b/ur/donate/index.php @@ -0,0 +1,106 @@ +<?php +define('HLANG', true); +require '../../langs.php'; +_lang_load($locale, 'donate'); + +?><!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"> + <link rel="canonical" href="/<?php echo $locale; ?>/donate/"> + <?php include '../../analytics.php'; ?> + <style> + .para { text-align: left; float: left; width: 400px; display: block; } + .donoptions { width: 400px; float: left; display: block; } + #options { list-style: none; padding: 0; margin: 0; } + #options > li { list-style: none; padding: 0; margin: 0 0 4em 0; } + .dlinfo li { margin-bottom: 0.6em; } + </style> +</head> +<body class="contribute donate"> + <?php echo $hsnav; ?> + <h1 id="mgnavt"><?php _e('Donate to Mageia')?></h1> + + <div class="para donoptions"> + <ul id="options"> + <li><h2 id="d-paypal"><?php _e('Donate via PayPal,'); ?></h2> + <?php include '../../paypal.inc.php'; echo html_paypal_form($locale); ?> + </li> + <li><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> + </li> + <li><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> + </li> + <li class="dlinfo"> + <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> + </li> + </ul> + </div> + <div class="para whydonate"> + <h2 id="why"><?php _e('Why donate?'); ?></h2> + <p><?php _e('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 _e('hardware and hosting for servers;')?></li> + <li><?php _e('domain names;')?></li> + <li><?php _e('registrations of Mageia trademark;')?></li> + <li><?php _e('goodies for spreading Mageia;')?></li> + <li><?php _e('administrative expenses;')?></li> + <li><?php _e('eventually, legal counsel and')?></li> + <li><?php _e('etc.')?></li> + </ul> + </div> + <div class="para track"> + <h2 id="status"><?php _e('How to track donation?')?></h2> + <p><?php echo sprintf(_t('Currently, we received a lot of generous donations (%s, remains %s) thanks to all of our <a href="../thank-you/">donors</a>!'), + $g_donate_amount, $g_amount_remain);?></p> + <p><?php echo sprintf(_t('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/' . 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> +--> + +</body> +</html> |