Skip to content

Commit 2b94787

Browse files
committedMar 11, 2012
Add top page
0 parents  commit 2b94787

10 files changed

+6546
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/_site/

‎_config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
markdown: rdiscount
2+
pygments: true
3+
permalink: /:categories/blog/:year/:month/:day/:title.html
4+
paginate: 5
5+
url: http://ruby-gettext.github.com

‎_layouts/en.html

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>{{page.title}}</title>
6+
<link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
7+
</head>
8+
9+
<body>
10+
<div class="navbar navbar-fixed-top">
11+
<div class="navbar-inner">
12+
<div class="container">
13+
<a class="btn btn-navbar"
14+
data-toggle="collapse" data-target=".nav-collapse">
15+
</a>
16+
<a class="brand" href="/">gettext for Ruby</a>
17+
<div class="nav-collapse">
18+
<ul class="nav">
19+
<li class="active"><a href="/">Home</a></li>
20+
<li><a href="http://rubydoc.info/gems/gettext">Reference</a></li>
21+
<li><a href="https://github.com/ruby-gettext/gettext">Repository</a></li>
22+
</ul>
23+
</div>
24+
</div>
25+
</div>
26+
</div>
27+
<div class="container">
28+
{{content}}
29+
30+
<hr>
31+
32+
<footer>
33+
<p>Copyright &copy; 2012 The ruby-gettext project</p>
34+
<p>Copyright &copy; 2003-2006 Masao Mutoh</p>
35+
<p>
36+
This document is distributed under the terms of the
37+
<a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License</a>.
38+
</p>
39+
<p>The original document was at <a href="http://www.yotabanana.com/hiki/ruby-gettext.html">Ruby-GetText-Package - YotaLab Storage</a> at 2012-03-11.</p>
40+
</footer>
41+
</div>
42+
43+
<script src="/bootstrap/js/bootstrap.min.js"></script>
44+
</body>
45+
</html>
46+
<!--
47+
Local variables:
48+
indent-tabs-mode: nil
49+
End:
50+
-->

‎bootstrap/css/bootstrap.css

+4,067
Large diffs are not rendered by default.

‎bootstrap/css/bootstrap.min.css

+643
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
4.25 KB
Loading
4.25 KB
Loading

‎bootstrap/js/bootstrap.js

+1,731
Large diffs are not rendered by default.

‎bootstrap/js/bootstrap.min.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎index.html

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
layout: en
3+
title: gettext for Ruby
4+
---
5+
<div class="hero-unit">
6+
<h1>gettext for Ruby</h1>
7+
<p>
8+
<pre><code>% gem install gettext</code></pre>
9+
</p>
10+
<p>
11+
<a href="http://rubydoc.info/gems/gettext/file/news.md#2-2-0">2.2.0</a> is the latest release.
12+
It had been released at 2012-03-11.
13+
</p>
14+
</div>
15+
16+
<div class="row">
17+
<div class="span5">
18+
<h2>About</h2>
19+
<p>Gettext gem is a Localization(L10n) Library and Tools which is modeled after GNU gettext package.<p>
20+
<p>The library converts the messages to localized messages properly using client-side locale information(environment variable or CGI variable).</p>
21+
<p>And the tools for developers support to create, use, and modify localized message files(message catalogs) easily.</p>
22+
</div>
23+
24+
<div class="span5">
25+
<h2>Resources</h2>
26+
<dl>
27+
<dt>Web</dt>
28+
<dd><a href="http://ruby-gettext.github.com/">http://ruby-gettext.github.com/</a></dd>
29+
<dt>Reference</dt>
30+
<dd><a href="http://rubydoc.info/gems/gettext/">RubyDoc.info</a></dd>
31+
<dt>Repository</dt>
32+
<dd><a href="https://github.com/ruby-gettext/gettext">GitHub</a></dd>
33+
<dt>Gem</dt>
34+
<dd><a href="https://rubygems.org/gems/gettext">RubyGems.org</a></dd>
35+
</dl>
36+
</div>
37+
</div>
38+
<!--
39+
Local variables:
40+
indent-tabs-mode: nil
41+
End:
42+
-->

0 commit comments

Comments
 (0)
Please sign in to comment.