Forked from
gajim / website
779 commits behind the upstream repository.
-
Yann Leboulanger authoredYann Leboulanger authored
dev.php 3.80 KiB
<?php
require_once ("Design.php");
Entete (_("Gajim, a Jabber client"), "GAJIM");
print (" <h1>");
print _(" Our Room");
print (" </h1>");
print _(" Our room is")." <a href=\"xmpp:gajim@conference.gajim.org?join\">gajim@conference.gajim.org</a> "._("You are welcome to join and communicate with us.");
print (" <br/>");
print (" <h1>");
print _(" Mailing List");
print (" </h1>");
print _(" You may also want to subscribe to our mailing list (low-traffic): ")."<a href=\"mailto:gajim-devel-subscribe@gajim.org\">gajim-devel-subscribe@gajim.org</a>, "._("or by visiting")." <a href=\"http://lists.gajim.org\">http://lists.gajim.org</a>.";
print _(" List archives are available ")."<a href=\"http://www.lagaule.org/pipermail/gajim-devel/\">"._("here")."</a>.";
print (" <br/>");
print (" <h1>");
print _(" Repository");
print (" </h1>");
print _("To checkout hg do")." <em>hg clone http://hg.gajim.org/gajim gajim</em>";
print (" <br/>");
print _(" You can also")." <a href=\"http://trac.gajim.org/browser/\">"._("browse Mercurial repository")."</a>.";
print (" <br/>");
print (" <h1>");
print _(" How you can help");
print (" </h1>");
print _(" Here are some")." <a href=\"http://trac.gajim.org\">"._("wiki pages")."</a> "._("to track bugs and plan the development of Gajim.\n");
print (" <br/>\n");
print _(" You can help us make Gajim even better by:\n");
print (" <ul>\n");
print (" <li>\n");
print _(" Coding: contact us on our mailing list or in our room gajim@conference.gajim.org \n");
print (" </li>\n");
print (" <li>\n");
print _(" Submitting a translation: see")." <a href=\"http://trac.gajim.org/wiki/DevTranslate\">"._("DevTranslate page")."</a>.\n";
print (" </li>\n");
print (" <li>\n");
print _(" Bug reporting: in case you find a bug, do not hesitate to")." <a href=\"http://trac.gajim.org/newticket\">"._("report it")."</a>.\n";
print (" </li>\n");
print (" <li>\n");
print _(" Donating: ")."\n";
print ('<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<fieldset style="border:0;">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="hidden" name="hosted_button_id" value="ASTY4K884QP26"/>
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" style="border:0;" name="submit" alt="PayPal - The safer, easier way to pay online!"/>
<img alt="" style="border:0;" src="https://www.paypal.com/fr_FR/i/scr/pixel.gif" width="1" height="1"/>
</fieldset>
</form>');
print ('<a class="FlattrButton" style="display:none;" href="http://gajim.org"></a>');
print (" </li>\n");
print (" </ul>\n");
print (" <h1>");
print _(" Translations status");
print (" </h1>");
$f_lang = fopen("stats_lang", 'r');
$f1 = fopen("stats_po_0.15.4", 'r');
$f2 = fopen("stats_po_0.16", 'r');
$f3 = fopen("stats_po_svn", 'r');
print ("<table class=\"translation-status\">");
print ("<tr><th>Language</th><th colspan=\"2\">0.15.4 Version</th><th colspan=\"2\">0.16 Version</th><th colspan=\"2\">HG version</th></tr>");
$data = fgets($f_lang);
do {
print ("<tr>");
print ($data);
$data = fgets($f1);
print ($data);
$data = fgets($f2);
print ($data);
$data = fgets($f3);
print ($data);
print ("</tr>");
$data = fgets($f_lang);
} while (!feof($f_lang));
print ("</table>");
fclose($f_lang);
fclose($f1);
fclose($f2);
fclose($f3);
print (" <h1>");
print _(" Authors");
print (" </h1>");
print _(" Project is composed of:");
print (" <ul>");
print (" <li>");
printf(_("%s (%s)"), "Denis Fomin", "Dicson");
print ("</li>\n");
print (" <li>");
printf(_("%s (%s)"), "Yann Leboulanger", "Asterix");
print ("</li>\n");
print (" </ul>");
print (" <br/>");
print _(" We also want to thank")." <a href=\"http://trac.gajim.org/browser/THANKS\">"._("these people")."</a>.\n";
print (" <br/>");
PiedDePage();
?>