diff options
author | Marek Laane <bald@smail.ee> | 2014-10-12 10:54:11 +0300 |
---|---|---|
committer | Marek Laane <bald@smail.ee> | 2014-10-12 10:54:11 +0300 |
commit | a0b2d09125d7911656fe4cb286f20643c4432281 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /donators.inc.php | |
parent | e32d8242187534c387106ff344201c42ff6afb44 (diff) | |
download | www-a0b2d09125d7911656fe4cb286f20643c4432281.tar www-a0b2d09125d7911656fe4cb286f20643c4432281.tar.gz www-a0b2d09125d7911656fe4cb286f20643c4432281.tar.bz2 www-a0b2d09125d7911656fe4cb286f20643c4432281.tar.xz www-a0b2d09125d7911656fe4cb286f20643c4432281.zip |
Updated Estonian translation
Diffstat (limited to 'donators.inc.php')
-rw-r--r-- | donators.inc.php | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/donators.inc.php b/donators.inc.php deleted file mode 100644 index 458b1710c..000000000 --- a/donators.inc.php +++ /dev/null @@ -1,52 +0,0 @@ -<?php -/** -*/ - -$orgs = array( - array('http://www.mandrivafr.org/', 'AUFML'), - array('http://dedibox.fr/', 'Dédibox'), - array('http://www.gandi.net/', 'Gandi.net'), - array('http://www.kazar.net/', 'Kazar.net'), - array('http://www.lost-oasis.net/', 'Lost-Oasis'), - array('http://www.mageialinux-online.org/', 'MLO'), - array('http://nfrance.fr/', 'NFrance'), - array('http://www.spreadshirt.com/', 'Spreadshirt'), - array('http://zarb.org/', 'zarb.org'), - - // see mirrors.mageia.org - array('http://www.upmc.fr/', 'Université Pierre et Marie Curie'), - array('http://www.ibiblio.org/', 'The Public\'s Library and Digital Archive'), - array('http://www.mandrivauser.de', 'Mandrivauser.de'), - array('http://www.hs-esslingen.de/', 'Hochschule Esslingen'), - array('http://uni-erlangen.de/', 'Universität Erlangen-Nürnberg'), - // mageia.supp.name? - // fundawang.lcuc.org.cn? - // ftp.LinuxCabal.org? - // mageia.nautile.nc? -); - - -/** -*/ -function html_people_list($people) -{ - $html = '<ul class="ty-ppl-list">'; - foreach ($people as $p) - $html .= sprintf('<li>%s</li>', $p); - $html .= '</ul>'; - - return $html; -} - -/** -*/ -function html_orgs_list($orgs) -{ - $html = '<ul class="ty-ppl-list twocol">'; - foreach ($orgs as $o) - $html .= sprintf('<li><a href="%s">%s</a> %s</li>', $o[0], $o[1], @$o[2]); - $html .= '</ul>'; - - return $html; -} - |