]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/credits.cgi
Update French translation
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / credits.cgi
CommitLineData
ac1cfefa 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
977a52e6 5# Copyright (C) 2011 IPFire Team <info@ipfire.org> #
70df8302
MT
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
ac1cfefa
MT
21
22use strict;
23
24# enable only the following on debugging purpose
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
27
986e08d9 28require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31
32&Header::showhttpheaders();
33
34&Header::openpage($Lang::tr{'credits'}, 1, '');
35
36&Header::openbigbox('100%', 'center');
37
41b72de4
MT
38&Header::openbox('100%', 'left', $Lang::tr{'donation'});
39
40print <<END
41<p>$Lang::tr{'donation-text'}</p>
41b72de4 42
d6b4566d 43<div align="center">
7f7b7b24 44 <a href="https://www.ipfire.org/donate">
fb874f2e
MT
45 <strong>$Lang::tr{'donation'}</strong>
46 </a>
d6b4566d 47</div>
41b72de4
MT
48END
49;
50&Header::closebox();
51
4b74791b 52&Header::openbox('100%', 'left',);
ac1cfefa
MT
53
54print <<END
fb874f2e
MT
55<br>
56<center>
7f7b7b24 57 $Lang::tr{'visit us at'}: <b><a href='https://www.ipfire.org/' target="_blank">https://www.ipfire.org/</a></b>
fb874f2e 58</center>
4b74791b 59<br><br>
872a05ee 60
6feea5f7 61<p>
1fb7f56e
MT
62 <!-- CONTRIBUTORS -->
63Michael Tremer,
64Arne Fitzenreiter,
1fb7f56e 65Stefan Schantl,
28864e98 66Christian Schmidt,
89445161 67Alexander Marx,
3bc001db 68Matthias Fischer,
1fb7f56e 69Peter Müller,
87bee81c 70Jan Paul Tücking,
3bc001db 71Erik Kapfer,
b2896abb 72Jonatan Schlag,
f9e4f4dc 73Dirk Wagner,
f9b7bc92 74Marcel Lorenz,
1fb7f56e
MT
75Alf Høgemark,
76Ben Schweikert,
77Peter Pfeiffer,
78Daniel Glanzmann,
1fb7f56e 79Daniel Weismüller,
f23b944e 80Heiner Schmeling,
b2896abb 81Stephan Feddersen,
96253783 82Timo Eissler,
1fb7f56e
MT
83Jan Lentfer,
84Marcus Scholz,
85Ersan Yildirim,
87bee81c 86Stéphane Pautrel,
28864e98 87Joern-Ingo Weigert,
b2896abb 88Alexander Koch,
e2338aa7 89Wolfgang Apolinarski,
28864e98 90Adolf Belka,
f6a1d9e9 91Alfred Haas,
1fb7f56e
MT
92Lars Schuhmacher,
93Rene Zingel,
94Sascha Kilian,
1fb7f56e 95Ronald Wiesinger,
171512b7
MT
96Florian Bührle,
97Bernhard Bitsch,
1fb7f56e
MT
98Justin Luth,
99Michael Eitelwein,
c3f99697 100Alex Koch,
1fb7f56e
MT
101Dominik Hassler,
102Larsen,
f6a1d9e9 103Gabriel Rolland,
28864e98 104Marcel Follert,
f23b944e 105Tim FitzGeorge,
1fb7f56e
MT
106Anton D. Seliverstov,
107Bernhard Bittner,
108David Kleuker,
109Hans Horsten,
110Jakub Ratajczak,
111Jorrit de Jonge,
1ee8c673 112Jörn-Ingo Weigert,
1fb7f56e 113Przemek Zdroik,
c3f99697 114Ramax Lo,
4b4b29b3 115Alexander Rudolf Gruber,
1fb7f56e
MT
116Andrew Bellows,
117Axel Gembe,
118Bernhard Held,
119Christoph Anderegg,
120Daniel Aleksandersen,
121Douglas Duckworth,
122Eberhard Beilharz,
123Ersan Yildirim Ersan,
124Gerd Hoerst,
125H. Horsten,
126Heino Gutschmidt,
127Jan Behrens,
128Jochen Kauz,
129Julian McConnell,
1fb7f56e
MT
130Kay-Michael Köhler,
131Kim Wölfel,
132Logan Schmidt,
89445161 133Markus Untersee,
28864e98 134Mathew McBride,
1fb7f56e 135Nico Prenzel,
145343d5 136Oliver Fuhrer,
1fb7f56e
MT
137Osmar Gonzalez,
138Paul T. Simmons,
f6a1d9e9 139Rob Brewer,
1fb7f56e
MT
140Robert Möker,
141Stefan Ernst,
142Stefan Ferstl,
143Thomas Ebert,
144Timmothy Wilson,
145Umberto Parma
146 <!-- END -->
ac1cfefa 147</p>
ac1cfefa
MT
148END
149;
e383179b
MT
150&Header::closebox();
151
ac1cfefa
MT
152&Header::closebigbox();
153
154&Header::closepage();