gettext 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +113 -0
- data/NEWS +17 -1
- data/README +56 -46
- data/Rakefile +6 -2
- data/data/locale/cs/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/cs/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/de/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/de/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/el/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/el/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/es/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/it/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/zh/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/zh/LC_MESSAGES/rgettext.mo +0 -0
- data/ext/gettext/locale_system.c +3 -3
- data/lib/gettext.rb +149 -98
- data/lib/gettext/container.rb +3 -23
- data/lib/gettext/erb.rb +2 -2
- data/lib/gettext/locale_posix.rb +37 -5
- data/lib/gettext/locale_win32.rb +2 -1
- data/lib/gettext/mo.rb +6 -4
- data/lib/gettext/parser/activerecord.rb +7 -3
- data/lib/gettext/poparser.rb +2 -2
- data/lib/gettext/rails.rb +131 -112
- data/lib/gettext/rgettext.rb +3 -1
- data/lib/gettext/rmsgfmt.rb +3 -1
- data/lib/gettext/rmsgmerge.rb +3 -1
- data/lib/gettext/textdomain.rb +14 -8
- data/lib/gettext/textdomainmanager.rb +103 -0
- data/lib/gettext/version.rb +1 -1
- data/po/cs/rails.po +16 -16
- data/po/cs/rgettext.po +7 -3
- data/po/de/rails.po +16 -16
- data/po/de/rgettext.po +7 -3
- data/po/el/rails.po +16 -16
- data/po/el/rgettext.po +7 -3
- data/po/es/rails.po +16 -16
- data/po/es/rgettext.po +7 -3
- data/po/fr/rails.po +16 -16
- data/po/fr/rgettext.po +7 -3
- data/po/it/rails.po +79 -0
- data/po/it/rgettext.po +42 -32
- data/po/ja/rails.po +20 -18
- data/po/ja/rgettext.po +7 -3
- data/po/ko/rails.po +16 -16
- data/po/ko/rgettext.po +7 -3
- data/po/nl/rails.po +16 -16
- data/po/nl/rgettext.po +7 -3
- data/po/pt_BR/rails.po +16 -16
- data/po/pt_BR/rgettext.po +7 -3
- data/po/rails.pot +16 -16
- data/po/rgettext.pot +7 -3
- data/po/ru/rails.po +18 -18
- data/po/ru/rgettext.po +13 -9
- data/po/sv/rgettext.po +7 -3
- data/po/zh/rails.po +78 -0
- data/po/zh/rgettext.po +104 -0
- data/pre-setup.rb +1 -4
- data/samples/cgi/helloerb.rhtml +1 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/zh/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/po/zh/helloerb1.po +60 -0
- data/samples/cgi/po/zh/helloerb2.po +52 -0
- data/samples/cgi/po/zh/hellolib.po +24 -0
- data/samples/cgi/po/zh/main.po +80 -0
- data/samples/hello.rb +28 -5
- data/samples/hello2.rb +13 -6
- data/samples/hello_noop.rb +20 -8
- data/samples/hello_plural.rb +16 -6
- data/samples/hello_textdomain.rb +13 -4
- data/samples/hellogtk.rb +5 -4
- data/samples/hellogtk2.rb +5 -6
- data/samples/locale/cs/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/cs/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/de/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/el/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/es/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/fr/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/it/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ja/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ko/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/nl/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ru/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/sv/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/zh/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/po/cs/hello2.po +4 -4
- data/samples/po/cs/hello_plural.po +5 -5
- data/samples/po/de/hello2.po +4 -4
- data/samples/po/de/hello_plural.po +9 -6
- data/samples/po/el/hello2.po +4 -4
- data/samples/po/el/hello_plural.po +3 -3
- data/samples/po/es/hello2.po +4 -4
- data/samples/po/es/hello_plural.po +6 -6
- data/samples/po/fr/hello2.po +4 -4
- data/samples/po/fr/hello_plural.po +3 -3
- data/samples/po/hello2.pot +2 -2
- data/samples/po/hello_plural.pot +1 -1
- data/samples/po/it/hello2.po +4 -4
- data/samples/po/it/hello_plural.po +4 -5
- data/samples/po/ja/hello2.po +4 -4
- data/samples/po/ja/hello_plural.po +4 -5
- data/samples/po/ko/hello2.po +4 -4
- data/samples/po/ko/hello_plural.po +10 -7
- data/samples/po/nl/hello2.po +4 -4
- data/samples/po/nl/hello_plural.po +6 -7
- data/samples/po/pt_BR/hello2.po +4 -4
- data/samples/po/pt_BR/hello_plural.po +6 -6
- data/samples/po/ru/hello2.po +4 -4
- data/samples/po/ru/hello_plural.po +10 -7
- data/samples/po/sv/hello2.po +4 -4
- data/samples/po/sv/hello_plural.po +4 -4
- data/samples/po/zh/hello.po +23 -0
- data/samples/po/zh/hello2.po +31 -0
- data/samples/po/zh/hello_noop.po +27 -0
- data/samples/po/zh/hello_plural.po +25 -0
- data/samples/po/zh/helloglade2.po +31 -0
- data/samples/po/zh/hellogtk.po +23 -0
- data/samples/po/zh/hellotk.po +23 -0
- data/samples/rails/README +2 -2
- data/samples/rails/lib/tasks/gettext.rake +0 -3
- data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/po/blog.pot +1 -1
- data/samples/rails/po/cs/blog.po +1 -1
- data/samples/rails/po/de/blog.po +1 -1
- data/samples/rails/po/el/blog.po +1 -1
- data/samples/rails/po/en/blog.po +3 -3
- data/samples/rails/po/es/blog.po +1 -1
- data/samples/rails/po/fr/blog.po +1 -1
- data/samples/rails/po/it/blog.po +109 -0
- data/samples/rails/po/ja/blog.po +1 -14
- data/samples/rails/po/ko/blog.po +2 -2
- data/samples/rails/po/nl/blog.po +1 -1
- data/samples/rails/po/pt_BR/blog.po +1 -1
- data/samples/rails/po/ru/blog.po +1 -2
- data/samples/rails/po/zh/blog.po +109 -0
- data/samples/rails/vendor/plugins/gettext/README +17 -0
- data/samples/rails/vendor/plugins/gettext/Rakefile +17 -0
- data/samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb +16 -35
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/cs/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/de/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/el/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/es/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/fr/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/ja/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/ko/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/nl/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/pt_BR/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{locale → vendor/plugins/gettext/locale}/ru/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/{po → vendor/plugins/gettext/po}/cs/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/de/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/el/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/es/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/fr/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/gettext_plugin.pot +4 -4
- data/samples/rails/vendor/plugins/gettext/po/it/gettext_plugin.po +27 -0
- data/samples/rails/{po → vendor/plugins/gettext/po}/ja/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/ko/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/nl/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/pt_BR/gettext_plugin.po +4 -4
- data/samples/rails/{po → vendor/plugins/gettext/po}/ru/gettext_plugin.po +4 -5
- data/samples/rails/vendor/plugins/gettext/po/zh/gettext_plugin.po +27 -0
- data/test/gettext_test.rb +18 -14
- data/test/gettext_test_multi_textdomain.rb +49 -0
- data/test/locale/fr/LC_MESSAGES/test6.mo +0 -0
- data/test/locale/ja/LC_MESSAGES/test6.mo +0 -0
- data/test/po/fr/test6.po +23 -0
- data/test/po/ja/test6.po +23 -0
- data/test/test.sh +3 -1
- data/test/testlib1.rb +0 -5
- data/test/testlib5.rb +70 -0
- data/test/testlib6.rb +19 -0
- metadata +128 -26
- data/COPYING.ja +0 -51
- data/po/it/messages.mo +0 -0
- data/samples/cgi/po/it/messages.mo +0 -0
|
Binary file
|
|
Binary file
|
data/test/po/fr/test6.po
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
4
|
+
#
|
|
5
|
+
#, fuzzy
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
|
+
"POT-Creation-Date: 2002-01-01 02:24:56+0900\n"
|
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
13
|
+
"MIME-Version: 1.0\n"
|
|
14
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
|
16
|
+
|
|
17
|
+
#: testlib1.rb:10
|
|
18
|
+
msgid "language"
|
|
19
|
+
msgstr "french"
|
|
20
|
+
|
|
21
|
+
#: testlib1.rb:14
|
|
22
|
+
msgid "one is %d."
|
|
23
|
+
msgstr "DON'T USE THIS"
|
data/test/po/ja/test6.po
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR ORGANIZATION
|
|
3
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
4
|
+
#
|
|
5
|
+
#, fuzzy
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
|
+
"POT-Creation-Date: 2002-01-01 02:24:56+0900\n"
|
|
10
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
13
|
+
"MIME-Version: 1.0\n"
|
|
14
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
15
|
+
"Content-Transfer-Encoding: ENCODING\n"
|
|
16
|
+
|
|
17
|
+
#: testlib1.rb:10
|
|
18
|
+
msgid "language"
|
|
19
|
+
msgstr "japanese"
|
|
20
|
+
|
|
21
|
+
#: testlib1.rb:14
|
|
22
|
+
msgid "one is %d."
|
|
23
|
+
msgstr "ONE IS %d."
|
data/test/test.sh
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
2
|
|
|
3
3
|
export LC_ALL="ja_JP.eucJP";
|
|
4
|
-
|
|
4
|
+
export LANG="ja_JP.eucJP";
|
|
5
|
+
ruby -I../lib -I../ext/gettext gettext_runner.rb $1
|
|
6
|
+
ruby -I../lib -I../ext/gettext gettext_test_multi_textdomain.rb
|
|
5
7
|
ruby -I../lib -I../ext/gettext gettext_test_cgi.rb
|
|
6
8
|
ruby -I../lib -I../ext/gettext gettext_test_rails.rb
|
data/test/testlib1.rb
CHANGED
|
@@ -2,7 +2,6 @@ require 'gettext'
|
|
|
2
2
|
|
|
3
3
|
class TestLib1
|
|
4
4
|
include GetText
|
|
5
|
-
alias :__setlocale :setlocale
|
|
6
5
|
def initialize
|
|
7
6
|
bindtextdomain("test1", "locale")
|
|
8
7
|
end
|
|
@@ -13,8 +12,4 @@ class TestLib1
|
|
|
13
12
|
def test_formatted_string
|
|
14
13
|
_("one is %d.") % 1
|
|
15
14
|
end
|
|
16
|
-
|
|
17
|
-
def setlocale(locale)
|
|
18
|
-
__setlocale(locale)
|
|
19
|
-
end
|
|
20
15
|
end
|
data/test/testlib5.rb
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
class TestLib5
|
|
2
|
+
include GetText
|
|
3
|
+
def initialize
|
|
4
|
+
bindtextdomain("test1", "locale")
|
|
5
|
+
bindtextdomain("test2", "locale")
|
|
6
|
+
end
|
|
7
|
+
def test
|
|
8
|
+
_("language")
|
|
9
|
+
end
|
|
10
|
+
def test2
|
|
11
|
+
_("LANGUAGE")
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
class TestLib6 < TestLib5
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
module TestLib7
|
|
19
|
+
include GetText
|
|
20
|
+
bindtextdomain("test1", "locale")
|
|
21
|
+
|
|
22
|
+
module_function
|
|
23
|
+
def test
|
|
24
|
+
_("language")
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
class TestLib8
|
|
28
|
+
include GetText
|
|
29
|
+
def test
|
|
30
|
+
_("language")
|
|
31
|
+
end
|
|
32
|
+
# Doesn't translate
|
|
33
|
+
def test2
|
|
34
|
+
_("LANGUAGE")
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
class TestLib9
|
|
39
|
+
include GetText
|
|
40
|
+
def initialize
|
|
41
|
+
bindtextdomain("test2", "locale")
|
|
42
|
+
end
|
|
43
|
+
def test
|
|
44
|
+
_("language")
|
|
45
|
+
end
|
|
46
|
+
def test2
|
|
47
|
+
_("LANGUAGE")
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
class TestLib10
|
|
53
|
+
include GetText
|
|
54
|
+
def initialize
|
|
55
|
+
bindtextdomain("test1", "locale")
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
def test
|
|
59
|
+
eval("_(\"language\")")
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
class TestLib11
|
|
64
|
+
include GetText
|
|
65
|
+
bindtextdomain("test1", "locale")
|
|
66
|
+
|
|
67
|
+
def test
|
|
68
|
+
_("language")
|
|
69
|
+
end
|
|
70
|
+
end
|
data/test/testlib6.rb
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
require 'gettext'
|
|
2
|
+
|
|
3
|
+
class TestLib6
|
|
4
|
+
include GetText
|
|
5
|
+
def initialize
|
|
6
|
+
bindtextdomain("test6", "locale")
|
|
7
|
+
end
|
|
8
|
+
def test
|
|
9
|
+
_("language")
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def test_formatted_string
|
|
13
|
+
_("one is %d.") % 1
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def setlocale(lang)
|
|
17
|
+
set_locale(lang, true)
|
|
18
|
+
end
|
|
19
|
+
end
|
metadata
CHANGED
|
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: gettext
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 1.
|
|
7
|
-
date: 2006-
|
|
6
|
+
version: 1.6.0
|
|
7
|
+
date: 2006-06-09 00:00:00 +09:00
|
|
8
8
|
summary: Ruby-GetText-Package is a libary and tools to localize messages.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
@@ -28,7 +28,6 @@ cert_chain:
|
|
|
28
28
|
authors:
|
|
29
29
|
- Masao Mutoh
|
|
30
30
|
files:
|
|
31
|
-
- COPYING.ja
|
|
32
31
|
- README
|
|
33
32
|
- data
|
|
34
33
|
- src
|
|
@@ -57,6 +56,7 @@ files:
|
|
|
57
56
|
- data/locale/nl
|
|
58
57
|
- data/locale/it
|
|
59
58
|
- data/locale/el
|
|
59
|
+
- data/locale/zh
|
|
60
60
|
- data/locale/fr
|
|
61
61
|
- data/locale/de/LC_MESSAGES
|
|
62
62
|
- data/locale/de/LC_MESSAGES/rails.mo
|
|
@@ -85,10 +85,14 @@ files:
|
|
|
85
85
|
- data/locale/nl/LC_MESSAGES/rails.mo
|
|
86
86
|
- data/locale/nl/LC_MESSAGES/rgettext.mo
|
|
87
87
|
- data/locale/it/LC_MESSAGES
|
|
88
|
+
- data/locale/it/LC_MESSAGES/rails.mo
|
|
88
89
|
- data/locale/it/LC_MESSAGES/rgettext.mo
|
|
89
90
|
- data/locale/el/LC_MESSAGES
|
|
90
91
|
- data/locale/el/LC_MESSAGES/rails.mo
|
|
91
92
|
- data/locale/el/LC_MESSAGES/rgettext.mo
|
|
93
|
+
- data/locale/zh/LC_MESSAGES
|
|
94
|
+
- data/locale/zh/LC_MESSAGES/rails.mo
|
|
95
|
+
- data/locale/zh/LC_MESSAGES/rgettext.mo
|
|
92
96
|
- data/locale/fr/LC_MESSAGES
|
|
93
97
|
- data/locale/fr/LC_MESSAGES/rails.mo
|
|
94
98
|
- data/locale/fr/LC_MESSAGES/rgettext.mo
|
|
@@ -112,6 +116,7 @@ files:
|
|
|
112
116
|
- samples/rails/README
|
|
113
117
|
- samples/rails/config
|
|
114
118
|
- samples/rails/script
|
|
119
|
+
- samples/rails/log
|
|
115
120
|
- samples/rails/db
|
|
116
121
|
- samples/rails/po
|
|
117
122
|
- samples/rails/lib
|
|
@@ -154,32 +159,25 @@ files:
|
|
|
154
159
|
- samples/rails/po/es
|
|
155
160
|
- samples/rails/po/ru
|
|
156
161
|
- samples/rails/po/nl
|
|
157
|
-
- samples/rails/po/
|
|
162
|
+
- samples/rails/po/it
|
|
158
163
|
- samples/rails/po/blog.pot
|
|
159
164
|
- samples/rails/po/el
|
|
165
|
+
- samples/rails/po/zh
|
|
160
166
|
- samples/rails/po/en
|
|
161
167
|
- samples/rails/po/fr
|
|
162
168
|
- samples/rails/po/de/blog.po
|
|
163
|
-
- samples/rails/po/de/gettext_plugin.po
|
|
164
169
|
- samples/rails/po/ko/blog.po
|
|
165
|
-
- samples/rails/po/ko/gettext_plugin.po
|
|
166
170
|
- samples/rails/po/ja/blog.po
|
|
167
|
-
- samples/rails/po/ja/gettext_plugin.po
|
|
168
171
|
- samples/rails/po/pt_BR/blog.po
|
|
169
|
-
- samples/rails/po/pt_BR/gettext_plugin.po
|
|
170
172
|
- samples/rails/po/cs/blog.po
|
|
171
|
-
- samples/rails/po/cs/gettext_plugin.po
|
|
172
173
|
- samples/rails/po/es/blog.po
|
|
173
|
-
- samples/rails/po/es/gettext_plugin.po
|
|
174
174
|
- samples/rails/po/ru/blog.po
|
|
175
|
-
- samples/rails/po/ru/gettext_plugin.po
|
|
176
175
|
- samples/rails/po/nl/blog.po
|
|
177
|
-
- samples/rails/po/
|
|
176
|
+
- samples/rails/po/it/blog.po
|
|
178
177
|
- samples/rails/po/el/blog.po
|
|
179
|
-
- samples/rails/po/
|
|
178
|
+
- samples/rails/po/zh/blog.po
|
|
180
179
|
- samples/rails/po/en/blog.po
|
|
181
180
|
- samples/rails/po/fr/blog.po
|
|
182
|
-
- samples/rails/po/fr/gettext_plugin.po
|
|
183
181
|
- samples/rails/lib/tasks
|
|
184
182
|
- samples/rails/lib/tasks/gettext.rake
|
|
185
183
|
- samples/rails/public/stylesheets
|
|
@@ -218,10 +216,13 @@ files:
|
|
|
218
216
|
- samples/rails/app/controllers/blog_controller.rb
|
|
219
217
|
- samples/rails/app/controllers/application.rb
|
|
220
218
|
- samples/rails/test/unit
|
|
219
|
+
- samples/rails/test/mocks
|
|
221
220
|
- samples/rails/test/functional
|
|
222
221
|
- samples/rails/test/test_helper.rb
|
|
223
222
|
- samples/rails/test/fixtures
|
|
224
223
|
- samples/rails/test/unit/article_test.rb
|
|
224
|
+
- samples/rails/test/mocks/development
|
|
225
|
+
- samples/rails/test/mocks/test
|
|
225
226
|
- samples/rails/test/functional/blog_controller_test.rb
|
|
226
227
|
- samples/rails/test/fixtures/articles.yml
|
|
227
228
|
- samples/rails/locale/de
|
|
@@ -232,46 +233,108 @@ files:
|
|
|
232
233
|
- samples/rails/locale/es
|
|
233
234
|
- samples/rails/locale/ru
|
|
234
235
|
- samples/rails/locale/nl
|
|
236
|
+
- samples/rails/locale/it
|
|
235
237
|
- samples/rails/locale/el
|
|
238
|
+
- samples/rails/locale/zh
|
|
236
239
|
- samples/rails/locale/en
|
|
237
240
|
- samples/rails/locale/fr
|
|
238
241
|
- samples/rails/locale/de/LC_MESSAGES
|
|
239
242
|
- samples/rails/locale/de/LC_MESSAGES/blog.mo
|
|
240
|
-
- samples/rails/locale/de/LC_MESSAGES/gettext_plugin.mo
|
|
241
243
|
- samples/rails/locale/ko/LC_MESSAGES
|
|
242
244
|
- samples/rails/locale/ko/LC_MESSAGES/blog.mo
|
|
243
|
-
- samples/rails/locale/ko/LC_MESSAGES/gettext_plugin.mo
|
|
244
245
|
- samples/rails/locale/ja/LC_MESSAGES
|
|
245
246
|
- samples/rails/locale/ja/LC_MESSAGES/blog.mo
|
|
246
|
-
- samples/rails/locale/ja/LC_MESSAGES/gettext_plugin.mo
|
|
247
247
|
- samples/rails/locale/pt_BR/LC_MESSAGES
|
|
248
248
|
- samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo
|
|
249
|
-
- samples/rails/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo
|
|
250
249
|
- samples/rails/locale/cs/LC_MESSAGES
|
|
251
250
|
- samples/rails/locale/cs/LC_MESSAGES/blog.mo
|
|
252
|
-
- samples/rails/locale/cs/LC_MESSAGES/gettext_plugin.mo
|
|
253
251
|
- samples/rails/locale/es/LC_MESSAGES
|
|
254
252
|
- samples/rails/locale/es/LC_MESSAGES/blog.mo
|
|
255
|
-
- samples/rails/locale/es/LC_MESSAGES/gettext_plugin.mo
|
|
256
253
|
- samples/rails/locale/ru/LC_MESSAGES
|
|
257
254
|
- samples/rails/locale/ru/LC_MESSAGES/blog.mo
|
|
258
|
-
- samples/rails/locale/ru/LC_MESSAGES/gettext_plugin.mo
|
|
259
255
|
- samples/rails/locale/nl/LC_MESSAGES
|
|
260
256
|
- samples/rails/locale/nl/LC_MESSAGES/blog.mo
|
|
261
|
-
- samples/rails/locale/
|
|
257
|
+
- samples/rails/locale/it/LC_MESSAGES
|
|
258
|
+
- samples/rails/locale/it/LC_MESSAGES/blog.mo
|
|
262
259
|
- samples/rails/locale/el/LC_MESSAGES
|
|
263
260
|
- samples/rails/locale/el/LC_MESSAGES/blog.mo
|
|
264
|
-
- samples/rails/locale/
|
|
261
|
+
- samples/rails/locale/zh/LC_MESSAGES
|
|
262
|
+
- samples/rails/locale/zh/LC_MESSAGES/blog.mo
|
|
265
263
|
- samples/rails/locale/en/LC_MESSAGES
|
|
266
264
|
- samples/rails/locale/en/LC_MESSAGES/blog.mo
|
|
267
265
|
- samples/rails/locale/fr/LC_MESSAGES
|
|
268
266
|
- samples/rails/locale/fr/LC_MESSAGES/blog.mo
|
|
269
|
-
- samples/rails/locale/fr/LC_MESSAGES/gettext_plugin.mo
|
|
270
267
|
- samples/rails/vendor/plugins
|
|
271
268
|
- samples/rails/vendor/plugins/gettext
|
|
269
|
+
- samples/rails/vendor/plugins/gettext/README
|
|
270
|
+
- samples/rails/vendor/plugins/gettext/po
|
|
272
271
|
- samples/rails/vendor/plugins/gettext/lib
|
|
272
|
+
- samples/rails/vendor/plugins/gettext/Rakefile
|
|
273
273
|
- samples/rails/vendor/plugins/gettext/init.rb
|
|
274
|
+
- samples/rails/vendor/plugins/gettext/locale
|
|
275
|
+
- samples/rails/vendor/plugins/gettext/po/de
|
|
276
|
+
- samples/rails/vendor/plugins/gettext/po/ko
|
|
277
|
+
- samples/rails/vendor/plugins/gettext/po/ja
|
|
278
|
+
- samples/rails/vendor/plugins/gettext/po/pt_BR
|
|
279
|
+
- samples/rails/vendor/plugins/gettext/po/cs
|
|
280
|
+
- samples/rails/vendor/plugins/gettext/po/es
|
|
281
|
+
- samples/rails/vendor/plugins/gettext/po/ru
|
|
282
|
+
- samples/rails/vendor/plugins/gettext/po/nl
|
|
283
|
+
- samples/rails/vendor/plugins/gettext/po/it
|
|
284
|
+
- samples/rails/vendor/plugins/gettext/po/gettext_plugin.pot
|
|
285
|
+
- samples/rails/vendor/plugins/gettext/po/el
|
|
286
|
+
- samples/rails/vendor/plugins/gettext/po/zh
|
|
287
|
+
- samples/rails/vendor/plugins/gettext/po/en
|
|
288
|
+
- samples/rails/vendor/plugins/gettext/po/fr
|
|
289
|
+
- samples/rails/vendor/plugins/gettext/po/de/gettext_plugin.po
|
|
290
|
+
- samples/rails/vendor/plugins/gettext/po/ko/gettext_plugin.po
|
|
291
|
+
- samples/rails/vendor/plugins/gettext/po/ja/gettext_plugin.po
|
|
292
|
+
- samples/rails/vendor/plugins/gettext/po/pt_BR/gettext_plugin.po
|
|
293
|
+
- samples/rails/vendor/plugins/gettext/po/cs/gettext_plugin.po
|
|
294
|
+
- samples/rails/vendor/plugins/gettext/po/es/gettext_plugin.po
|
|
295
|
+
- samples/rails/vendor/plugins/gettext/po/ru/gettext_plugin.po
|
|
296
|
+
- samples/rails/vendor/plugins/gettext/po/nl/gettext_plugin.po
|
|
297
|
+
- samples/rails/vendor/plugins/gettext/po/it/gettext_plugin.po
|
|
298
|
+
- samples/rails/vendor/plugins/gettext/po/el/gettext_plugin.po
|
|
299
|
+
- samples/rails/vendor/plugins/gettext/po/zh/gettext_plugin.po
|
|
300
|
+
- samples/rails/vendor/plugins/gettext/po/fr/gettext_plugin.po
|
|
274
301
|
- samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb
|
|
302
|
+
- samples/rails/vendor/plugins/gettext/locale/de
|
|
303
|
+
- samples/rails/vendor/plugins/gettext/locale/ko
|
|
304
|
+
- samples/rails/vendor/plugins/gettext/locale/ja
|
|
305
|
+
- samples/rails/vendor/plugins/gettext/locale/pt_BR
|
|
306
|
+
- samples/rails/vendor/plugins/gettext/locale/cs
|
|
307
|
+
- samples/rails/vendor/plugins/gettext/locale/es
|
|
308
|
+
- samples/rails/vendor/plugins/gettext/locale/ru
|
|
309
|
+
- samples/rails/vendor/plugins/gettext/locale/nl
|
|
310
|
+
- samples/rails/vendor/plugins/gettext/locale/it
|
|
311
|
+
- samples/rails/vendor/plugins/gettext/locale/el
|
|
312
|
+
- samples/rails/vendor/plugins/gettext/locale/zh
|
|
313
|
+
- samples/rails/vendor/plugins/gettext/locale/fr
|
|
314
|
+
- samples/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES
|
|
315
|
+
- samples/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES/gettext_plugin.mo
|
|
316
|
+
- samples/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES
|
|
317
|
+
- samples/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES/gettext_plugin.mo
|
|
318
|
+
- samples/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES
|
|
319
|
+
- samples/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES/gettext_plugin.mo
|
|
320
|
+
- samples/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES
|
|
321
|
+
- samples/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo
|
|
322
|
+
- samples/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES
|
|
323
|
+
- samples/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES/gettext_plugin.mo
|
|
324
|
+
- samples/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES
|
|
325
|
+
- samples/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES/gettext_plugin.mo
|
|
326
|
+
- samples/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES
|
|
327
|
+
- samples/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES/gettext_plugin.mo
|
|
328
|
+
- samples/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES
|
|
329
|
+
- samples/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES/gettext_plugin.mo
|
|
330
|
+
- samples/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES
|
|
331
|
+
- samples/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES/gettext_plugin.mo
|
|
332
|
+
- samples/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES
|
|
333
|
+
- samples/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES/gettext_plugin.mo
|
|
334
|
+
- samples/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES
|
|
335
|
+
- samples/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES/gettext_plugin.mo
|
|
336
|
+
- samples/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES
|
|
337
|
+
- samples/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES/gettext_plugin.mo
|
|
275
338
|
- samples/cgi/README
|
|
276
339
|
- samples/cgi/ruby.bat
|
|
277
340
|
- samples/cgi/other.rhtml
|
|
@@ -299,6 +362,7 @@ files:
|
|
|
299
362
|
- samples/cgi/po/nl
|
|
300
363
|
- samples/cgi/po/it
|
|
301
364
|
- samples/cgi/po/el
|
|
365
|
+
- samples/cgi/po/zh
|
|
302
366
|
- samples/cgi/po/helloerb1.pot
|
|
303
367
|
- samples/cgi/po/fr
|
|
304
368
|
- samples/cgi/po/de/helloerb2.po
|
|
@@ -333,7 +397,6 @@ files:
|
|
|
333
397
|
- samples/cgi/po/nl/main.po
|
|
334
398
|
- samples/cgi/po/nl/helloerb1.po
|
|
335
399
|
- samples/cgi/po/nl/hellolib.po
|
|
336
|
-
- samples/cgi/po/it/messages.mo
|
|
337
400
|
- samples/cgi/po/it/helloerb2.po
|
|
338
401
|
- samples/cgi/po/it/main.po
|
|
339
402
|
- samples/cgi/po/it/helloerb1.po
|
|
@@ -342,6 +405,10 @@ files:
|
|
|
342
405
|
- samples/cgi/po/el/main.po
|
|
343
406
|
- samples/cgi/po/el/helloerb1.po
|
|
344
407
|
- samples/cgi/po/el/hellolib.po
|
|
408
|
+
- samples/cgi/po/zh/helloerb2.po
|
|
409
|
+
- samples/cgi/po/zh/main.po
|
|
410
|
+
- samples/cgi/po/zh/helloerb1.po
|
|
411
|
+
- samples/cgi/po/zh/hellolib.po
|
|
345
412
|
- samples/cgi/po/fr/helloerb2.po
|
|
346
413
|
- samples/cgi/po/fr/main.po
|
|
347
414
|
- samples/cgi/po/fr/helloerb1.po
|
|
@@ -356,6 +423,7 @@ files:
|
|
|
356
423
|
- samples/cgi/locale/nl
|
|
357
424
|
- samples/cgi/locale/it
|
|
358
425
|
- samples/cgi/locale/el
|
|
426
|
+
- samples/cgi/locale/zh
|
|
359
427
|
- samples/cgi/locale/fr
|
|
360
428
|
- samples/cgi/locale/de/LC_MESSAGES
|
|
361
429
|
- samples/cgi/locale/de/LC_MESSAGES/helloerb1.mo
|
|
@@ -407,6 +475,11 @@ files:
|
|
|
407
475
|
- samples/cgi/locale/el/LC_MESSAGES/hellolib.mo
|
|
408
476
|
- samples/cgi/locale/el/LC_MESSAGES/main.mo
|
|
409
477
|
- samples/cgi/locale/el/LC_MESSAGES/helloerb2.mo
|
|
478
|
+
- samples/cgi/locale/zh/LC_MESSAGES
|
|
479
|
+
- samples/cgi/locale/zh/LC_MESSAGES/helloerb1.mo
|
|
480
|
+
- samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo
|
|
481
|
+
- samples/cgi/locale/zh/LC_MESSAGES/main.mo
|
|
482
|
+
- samples/cgi/locale/zh/LC_MESSAGES/helloerb2.mo
|
|
410
483
|
- samples/cgi/locale/fr/LC_MESSAGES
|
|
411
484
|
- samples/cgi/locale/fr/LC_MESSAGES/helloerb1.mo
|
|
412
485
|
- samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo
|
|
@@ -427,6 +500,7 @@ files:
|
|
|
427
500
|
- samples/po/it
|
|
428
501
|
- samples/po/el
|
|
429
502
|
- samples/po/hellotk.pot
|
|
503
|
+
- samples/po/zh
|
|
430
504
|
- samples/po/hello_noop.pot
|
|
431
505
|
- samples/po/helloglade2.pot
|
|
432
506
|
- samples/po/hello2.pot
|
|
@@ -508,6 +582,13 @@ files:
|
|
|
508
582
|
- samples/po/el/hello_noop.po
|
|
509
583
|
- samples/po/el/hello.po
|
|
510
584
|
- samples/po/el/hello_plural.po
|
|
585
|
+
- samples/po/zh/hellotk.po
|
|
586
|
+
- samples/po/zh/hellogtk.po
|
|
587
|
+
- samples/po/zh/hello2.po
|
|
588
|
+
- samples/po/zh/helloglade2.po
|
|
589
|
+
- samples/po/zh/hello_noop.po
|
|
590
|
+
- samples/po/zh/hello.po
|
|
591
|
+
- samples/po/zh/hello_plural.po
|
|
511
592
|
- samples/po/fr/hellotk.po
|
|
512
593
|
- samples/po/fr/hellogtk.po
|
|
513
594
|
- samples/po/fr/hello2.po
|
|
@@ -526,6 +607,7 @@ files:
|
|
|
526
607
|
- samples/locale/nl
|
|
527
608
|
- samples/locale/it
|
|
528
609
|
- samples/locale/el
|
|
610
|
+
- samples/locale/zh
|
|
529
611
|
- samples/locale/fr
|
|
530
612
|
- samples/locale/de/LC_MESSAGES
|
|
531
613
|
- samples/locale/de/LC_MESSAGES/helloglade2.mo
|
|
@@ -615,6 +697,14 @@ files:
|
|
|
615
697
|
- samples/locale/el/LC_MESSAGES/hello_plural.mo
|
|
616
698
|
- samples/locale/el/LC_MESSAGES/hello_noop.mo
|
|
617
699
|
- samples/locale/el/LC_MESSAGES/hellogtk.mo
|
|
700
|
+
- samples/locale/zh/LC_MESSAGES
|
|
701
|
+
- samples/locale/zh/LC_MESSAGES/helloglade2.mo
|
|
702
|
+
- samples/locale/zh/LC_MESSAGES/hello.mo
|
|
703
|
+
- samples/locale/zh/LC_MESSAGES/hello2.mo
|
|
704
|
+
- samples/locale/zh/LC_MESSAGES/hellotk.mo
|
|
705
|
+
- samples/locale/zh/LC_MESSAGES/hello_plural.mo
|
|
706
|
+
- samples/locale/zh/LC_MESSAGES/hello_noop.mo
|
|
707
|
+
- samples/locale/zh/LC_MESSAGES/hellogtk.mo
|
|
618
708
|
- samples/locale/fr/LC_MESSAGES
|
|
619
709
|
- samples/locale/fr/LC_MESSAGES/helloglade2.mo
|
|
620
710
|
- samples/locale/fr/LC_MESSAGES/hello.mo
|
|
@@ -625,6 +715,7 @@ files:
|
|
|
625
715
|
- samples/locale/fr/LC_MESSAGES/hellogtk.mo
|
|
626
716
|
- ext/gettext
|
|
627
717
|
- ext/gettext/extconf.rb
|
|
718
|
+
- ext/gettext/gettext
|
|
628
719
|
- ext/gettext/locale_system.c
|
|
629
720
|
- po/rgettext.pot
|
|
630
721
|
- po/de
|
|
@@ -638,6 +729,7 @@ files:
|
|
|
638
729
|
- po/nl
|
|
639
730
|
- po/it
|
|
640
731
|
- po/el
|
|
732
|
+
- po/zh
|
|
641
733
|
- po/rails.pot
|
|
642
734
|
- po/fr
|
|
643
735
|
- po/de/rgettext.po
|
|
@@ -657,10 +749,12 @@ files:
|
|
|
657
749
|
- po/ru/rails.po
|
|
658
750
|
- po/nl/rgettext.po
|
|
659
751
|
- po/nl/rails.po
|
|
660
|
-
- po/it/messages.mo
|
|
661
752
|
- po/it/rgettext.po
|
|
753
|
+
- po/it/rails.po
|
|
662
754
|
- po/el/rgettext.po
|
|
663
755
|
- po/el/rails.po
|
|
756
|
+
- po/zh/rgettext.po
|
|
757
|
+
- po/zh/rails.po
|
|
664
758
|
- po/fr/rgettext.po
|
|
665
759
|
- po/fr/rails.po
|
|
666
760
|
- lib/gettext
|
|
@@ -670,6 +764,7 @@ files:
|
|
|
670
764
|
- lib/gettext/locale_posix.rb
|
|
671
765
|
- lib/gettext/poparser.rb
|
|
672
766
|
- lib/gettext/string.rb
|
|
767
|
+
- lib/gettext/textdomainmanager.rb
|
|
673
768
|
- lib/gettext/container.rb
|
|
674
769
|
- lib/gettext/textdomain.rb
|
|
675
770
|
- lib/gettext/locale_cgi.rb
|
|
@@ -692,6 +787,7 @@ files:
|
|
|
692
787
|
- lib/gettext/parser/erb.rb
|
|
693
788
|
- test/gettext_runner.rb
|
|
694
789
|
- test/gettext_test_parser.rb
|
|
790
|
+
- test/gettext_test_multi_textdomain.rb
|
|
695
791
|
- test/README
|
|
696
792
|
- test/testlib1.rb
|
|
697
793
|
- test/test_gladeparser.glade
|
|
@@ -706,6 +802,7 @@ files:
|
|
|
706
802
|
- test/gettext_test_locale.rb
|
|
707
803
|
- test/test_rubyparser_n_.rb
|
|
708
804
|
- test/gettext_test_string.rb
|
|
805
|
+
- test/testlib6.rb
|
|
709
806
|
- test/po
|
|
710
807
|
- test/test_rubyparser.rb
|
|
711
808
|
- test/test_erb.rxml
|
|
@@ -713,6 +810,7 @@ files:
|
|
|
713
810
|
- test/gettext_test_cgi.rb
|
|
714
811
|
- test/gettext_test_rails.rb
|
|
715
812
|
- test/testlib4.rb
|
|
813
|
+
- test/testlib5.rb
|
|
716
814
|
- test/po/la
|
|
717
815
|
- test/po/ja
|
|
718
816
|
- test/po/cr
|
|
@@ -724,6 +822,7 @@ files:
|
|
|
724
822
|
- test/po/fr
|
|
725
823
|
- test/po/la/plural_error.po
|
|
726
824
|
- test/po/la/plural.po
|
|
825
|
+
- test/po/ja/test6.po
|
|
727
826
|
- test/po/ja/plural_error.po
|
|
728
827
|
- test/po/ja/plural.po
|
|
729
828
|
- test/po/ja/test_sgettext.po
|
|
@@ -737,6 +836,7 @@ files:
|
|
|
737
836
|
- test/po/da/plural_error.po
|
|
738
837
|
- test/po/da/plural.po
|
|
739
838
|
- test/po/sl/plural.po
|
|
839
|
+
- test/po/fr/test6.po
|
|
740
840
|
- test/po/fr/plural_error.po
|
|
741
841
|
- test/po/fr/plural.po
|
|
742
842
|
- test/po/fr/test1.po
|
|
@@ -757,6 +857,7 @@ files:
|
|
|
757
857
|
- test/locale/ja/LC_MESSAGES/test_rubyparser.mo
|
|
758
858
|
- test/locale/ja/LC_MESSAGES/test1.mo
|
|
759
859
|
- test/locale/ja/LC_MESSAGES/test_sgettext.mo
|
|
860
|
+
- test/locale/ja/LC_MESSAGES/test6.mo
|
|
760
861
|
- test/locale/ja/LC_MESSAGES/plural_error.mo
|
|
761
862
|
- test/locale/ja/LC_MESSAGES/test2.mo
|
|
762
863
|
- test/locale/ja/LC_MESSAGES/plural.mo
|
|
@@ -775,6 +876,7 @@ files:
|
|
|
775
876
|
- test/locale/sl/LC_MESSAGES/plural.mo
|
|
776
877
|
- test/locale/fr/LC_MESSAGES
|
|
777
878
|
- test/locale/fr/LC_MESSAGES/test1.mo
|
|
879
|
+
- test/locale/fr/LC_MESSAGES/test6.mo
|
|
778
880
|
- test/locale/fr/LC_MESSAGES/plural_error.mo
|
|
779
881
|
- test/locale/fr/LC_MESSAGES/test2.mo
|
|
780
882
|
- test/locale/fr/LC_MESSAGES/plural.mo
|