summaryrefslogtreecommitdiffstats
path: root/site/github
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-05-24 13:12:45 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-05-24 13:12:45 (EDT)
commiteb73ed07b217743bf7a2c589f112657d60dd3cbb (patch)
tree407703ee430d8bae83e8c7714833bc95131184de /site/github
parent8908f6083ebbf3abab90bb291c4c8d15ee80f409 (diff)
downloadlibreboot.org-eb73ed07b217743bf7a2c589f112657d60dd3cbb.zip
libreboot.org-eb73ed07b217743bf7a2c589f112657d60dd3cbb.tar.gz
libreboot.org-eb73ed07b217743bf7a2c589f112657d60dd3cbb.tar.bz2
switch to gettext() - TODO: i18n
Diffstat (limited to 'site/github')
-rw-r--r--site/github/index.php73
1 files changed, 27 insertions, 46 deletions
diff --git a/site/github/index.php b/site/github/index.php
index 560aac7..e3fddb3 100644
--- a/site/github/index.php
+++ b/site/github/index.php
@@ -28,7 +28,7 @@
<link rel="stylesheet" type="text/css" href="../css/main.css" />
- <title>Please do not use GitHub!</title>
+ <title><?php echo gettext("Please do not use GitHub!"); ?></title>
</head>
@@ -38,85 +38,71 @@
<div id="libreboot" class="section intro">
- <h1>Please do not use GitHub!</h1>
+ <h1><?php echo gettext("Please do not use GitHub!"); ?></h1>
<p>
- Please do not use GitHub to host libreboot.
- Libreboot is a free software project, so this is only a request, and not a restriction on the software.
+ <?php echo gettext("Please do not use GitHub to host libreboot."); ?>
+ <?php echo gettext("Libreboot is a free software project, so this is only a request, and not a restriction on the software."); ?>
</p>
<p>
- <a href="../gitorious/">Don't use gitorious, either.</a>
+ <a href="../gitorious/"><?php echo gettext("Don't use gitorious, either."); ?></a>
+ </p>
+ <p>
+ <a href="../download/#git"><?php echo gettext("Back to download page"); ?></a>
</p>
</div>
<div class="section">
- <h2>What's wrong with GitHub?</h2>
+ <h2><?php echo gettext("What's wrong with GitHub?"); ?></h2>
<ul>
<li>
- GitHub itself is proprietary software (Tim reasons it's for business
+ <?php echo gettext("GitHub itself is proprietary software (Tim reasons it's for business"); ?>
[<a href="http://tom.preston-werner.com/2011/11/22/open-source-everything.html">1</a>])
</li>
<li>
- A patch[<a href="https://github.com/github/choosealicense.com/pull/177">2</a>] to
- <a href="http://choosealicense.com">choose a license</a> was received with some hostility.
+ <?php echo gettext("A patch[<a href=\"https://github.com/github/choosealicense.com/pull/177\">2</a>] to <a href=\"http://choosealicense.com\">choose a license</a> was received with some hostility."); ?>
+ </li>
+ <li>
+ <?php echo gettext("Tim really likes to talk about freedom, but makes the following claims about the GPLv2/3:"); ?>
</li>
- <li>Tim really likes to talk about freedom, but makes the following claims about the GPLv2/3:</li>
</ul>
<blockquote>
<p>
- ...The GPL is not focused on freedom. It's too long.
- Too many restrictions. -- Tom Preston-Werner OSCON2013
+ <?php echo gettext("...The GPL is not focused on freedom. It's too long. Too many restrictions. -- Tom Preston-Werner OSCON2013"); ?>
</p>
</blockquote>
- <p>or how about:</p>
+ <p><?php echo gettext("or how about:"); ?></p>
<blockquote>
<p>
- Notice that everything we keep closed has specific business value
- that could be compromised by giving it away to our competitors.
- -- Tom Preston-Werner's
- <a href="http://tom.preston-werner.com/2011/11/22/open-source-everything.html">blog</a>
+ <?php echo gettext("Notice that everything we keep closed has specific business value that could be compromised by giving it away to our competitors. -- Tom Preston-Werner's <a href=\"http://tom.preston-werner.com/2011/11/22/open-source-everything.html\">blog</a>"); ?>
</p>
</blockquote>
<p>
- GitHub simply uses Free Software for its own benefit, releasing source code under a free license
- only when suited to it's business goals; they are quite happy to violate the rights of their users, for profit.
+ <?php echo gettext("GitHub simply uses Free Software for its own benefit, releasing source code under a free license only when suited to it's business goals; they are quite happy to violate the rights of their users, for profit."); ?>
</p>
<p>
- By contrast, the libreboot project adheres strictly to the goals of the Free Software movement, which
- seeks to eliminate proprietary software to the point where all software is free.
+ <?php echo gettext("By contrast, the libreboot project adheres strictly to the goals of the Free Software movement, which seeks to eliminate proprietary software to the point where all software is free."); ?>
</p>
<p>
- The opinions expressed by Tom Preston-Werner of GitHub are incompatible with those of
- the libreboot project. Users and developers of
- <em><a href="http://www.gnu.org/philosophy/free-sw.html">free software</a></em>
- are strongly advised not to use GitHub, for any of their projects.
+ <?php echo gettext("The opinions expressed by Tom Preston-Werner of GitHub are incompatible with those of
+ the libreboot project. Users and developers of <em><a href=\"http://www.gnu.org/philosophy/free-sw.html\">free software</a></em> are strongly advised not to use GitHub, for any of their projects."); ?>
</p>
</div>
-
- <div class="section">
- <ul>
- <li>
- <a href="http://git-scm.com/doc">Host your own repositories</a>. This is exactly what libreboot does,
- hosted on a machine that is <i>running</i> libreboot! You can use a frontend like
- <a href="http://git-scm.com/book/en/v2/Git-on-the-Server-GitWeb">gitweb</a>
- for easy viewing by others. For code review, you can use an IRC channel, mailing lists and other
- methods that allow mass collaboration.
- </li>
- <li>
- Jason Self lists a few replacements on this page:
- <a href="http://jxself.org/goodbye-gitorious.shtml">http://jxself.org/goodbye-gitorious.shtml</a>
- </li>
- </ul>
+ <?php
+ include_once "../common/snippets/where-share.php";
+ ?>
+
+ <div class="section">
<p>
[<a href="http://tom.preston-werner.com/2011/11/22/open-source-everything.html">1</a>]
@@ -138,12 +124,7 @@
<div class="section">
<p>
- This text on this page was adapted from
- <a href="http://librecmc.org/librecmc/wiki?name=github">http://librecmc.org/librecmc/wiki?name=github</a>,
- licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a> like the original.
- </p>
- <p>
- <a href="..">Back to home page</a>
+ <?php echo gettext("This text on this page was adapted from <a href=\"http://librecmc.org/librecmc/wiki?name=github\">http://librecmc.org/librecmc/wiki?name=github</a>, licensed under <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA 4.0</a> like the original."); ?>
</p>
</div>