-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
81 lines (76 loc) · 3.78 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
layout: en
title: The ruby-gettext project
---
<div class="hero-unit">
<h1>The ruby-gettext project</h1>
<div class="row">
<div class="span5">
<h2>gettext - gettext for Ruby</h2>
<p>
<pre><code>% gem install gettext</code></pre>
</p>
<p>
<a href="http://rubydoc.info/gems/gettext/file/doc/text/news.md#{{ site.gettext_version | replace: '.', '-' }}">{{ site.gettext_version }}</a> is the latest release.
It had been released at {{ site.gettext_release_date }}.
</p>
</div>
<div class="span5">
<h2>locale - locale for Ruby</h2>
<p>
<pre><code>% gem install locale</code></pre>
</p>
<p>
<a href="http://rubydoc.info/gems/locale/file/doc/text/news.md#{{ site.locale_version | replace: '.', '-' }}">{{ site.locale_version }}</a> is the latest release.
It had been released at {{ site.locale_release_date }}.
</p>
</div>
</div>
</div>
<div class="row">
<div class="span6">
<h2>About gettext</h2>
<p>NOTE: Gettext 3.0.0 removed many deprecated APIs and improves internal APIs. We want to keep backward compatibility as much as possible but some existing codes may be broken by gettext gem API change. If your code breaks by gettext gem 3.0.0, please <a href="https://github.com/ruby-gettext/gettext/issues/new">report your problem</a>. We will fix the problem and release a new version.</p>
<p>Gettext is the localization(L10N) library and tools which is modeled after GNU gettext package.<p>
<p>This library was called as "Ruby-GetText-Package". Since 2.3.0, this library is called just "gettext". You can call this library as "gettext gem" or "Ruby gettext" to distinguish from GNU gettext.</p>
<p>The library converts the messages to localized messages properly using client-side locale information such as environment variable and CGI variable.</p>
<p>And the tools for developers support to create, use, and modify localized message files (message catalogs) easily.</p>
<h3>Resources</h3>
<dl>
<dt>Web</dt>
<dd><a href="http://ruby-gettext.github.io/">http://ruby-gettext.github.io/</a></dd>
<dt>Reference</dt>
<dd><a href="http://rubydoc.info/gems/gettext/">RubyDoc.info</a></dd>
<dt>Repository</dt>
<dd><a href="https://github.com/ruby-gettext/gettext">GitHub</a></dd>
<dt>Gem</dt>
<dd><a href="https://rubygems.org/gems/gettext">RubyGems.org</a></dd>
<dt>Commit mails</dt>
<dd><a href="https://groups.google.com/d/forum/ruby-gettext-commit">[email protected]</a></dd>
</dl>
</div>
<div class="span6">
<h2>About locale</h2>
<p>Locale is the pure Ruby library which provides basic and general purpose APIs for localization.</p>
<p>This library was called as "Ruby-Locale". Since 2.0.6, this library is called just "locale". You can call this library as "locale gem" or "Ruby Locale" to distinguish from other "locale"s.</p>
<p>This library aims to support all environments which Ruby works and all kind of programs (GUI, WWW, library, etc), and becomes the hub of other i18n/l10n libs/apps to handle major locale ID standards.</p>
<h3>Resources</h3>
<dl>
<dt>Web</dt>
<dd><a href="http://ruby-gettext.github.io/">http://ruby-gettext.github.io/</a></dd>
<dt>Reference</dt>
<dd><a href="http://rubydoc.info/gems/locale/">RubyDoc.info</a></dd>
<dt>Repository</dt>
<dd><a href="https://github.com/ruby-gettext/locale">GitHub</a></dd>
<dt>Gem</dt>
<dd><a href="https://rubygems.org/gems/locale">RubyGems.org</a></dd>
<dt>Commit mails</dt>
<dd><a href="https://groups.google.com/d/forum/ruby-gettext-commit">[email protected]</a></dd>
</dl>
</div>
</div>
<!--
Local variables:
indent-tabs-mode: nil
End:
-->