gettext 1.1.1 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +128 -0
- data/NEWS +10 -0
- data/README +21 -23
- data/Rakefile +39 -20
- data/bin/rgettext +1 -1
- data/bin/rmsgfmt +1 -1
- data/bin/rmsgmerge +1 -1
- 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/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/sv/LC_MESSAGES/rgettext.mo +0 -0
- data/ext/gettext/extconf.rb +20 -0
- data/ext/gettext/{gettext/_locale.c → locale_system.c} +15 -19
- data/lib/gettext.rb +186 -38
- data/lib/gettext/cgi.rb +35 -69
- data/lib/gettext/container.rb +14 -5
- data/lib/gettext/erb.rb +30 -2
- data/lib/gettext/iconv.rb +19 -4
- data/lib/gettext/locale.rb +188 -39
- data/lib/gettext/locale_cgi.rb +102 -0
- data/lib/gettext/locale_object.rb +131 -0
- data/lib/gettext/locale_posix.rb +50 -0
- data/lib/gettext/locale_table_win32.rb +224 -182
- data/lib/gettext/locale_win32.rb +59 -35
- data/lib/gettext/mo.rb +2 -2
- data/lib/gettext/parser/activerecord.rb +19 -5
- data/lib/gettext/parser/erb.rb +6 -3
- data/lib/gettext/parser/glade.rb +5 -5
- data/lib/gettext/parser/ruby.rb +6 -6
- data/lib/gettext/poparser.rb +7 -6
- data/lib/gettext/rails.rb +122 -44
- data/lib/gettext/rgettext.rb +21 -8
- data/lib/gettext/rmsgfmt.rb +16 -8
- data/lib/gettext/rmsgmerge.rb +172 -50
- data/lib/gettext/string.rb +25 -3
- data/lib/gettext/textdomain.rb +89 -90
- data/lib/gettext/utils.rb +63 -3
- data/lib/gettext/version.rb +2 -2
- data/pkg/ruby-gettext-package-1.2.0/ext/gettext/extconf.rb +20 -0
- data/po/cs/rails.po +28 -28
- data/po/cs/rgettext.po +14 -14
- data/po/de/rails.po +29 -26
- data/po/de/rgettext.po +24 -17
- data/po/el/rails.po +26 -26
- data/po/el/rgettext.po +18 -15
- data/po/es/rails.po +26 -26
- data/po/es/rgettext.po +16 -16
- data/po/fr/rails.po +27 -27
- data/po/fr/rgettext.po +14 -14
- data/po/it/rgettext.po +14 -14
- data/po/ja/rails.po +24 -24
- data/po/ja/rgettext.po +14 -14
- data/po/ko/rails.po +24 -24
- data/po/ko/rgettext.po +17 -18
- data/po/nl/rails.po +27 -27
- data/po/nl/rgettext.po +18 -18
- data/po/pt_BR/rails.po +26 -26
- data/po/pt_BR/rgettext.po +14 -14
- data/po/rails.pot +26 -26
- data/po/rgettext.pot +14 -14
- data/po/sv/rgettext.po +14 -14
- data/post-setup.rb +8 -3
- data/pre-setup.rb +14 -1
- data/samples/cgi/http.rb +2 -1
- data/samples/makemo.rb +1 -1
- data/samples/rails/app/models/article.rb +15 -1
- data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/cs/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/de/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/el/LC_MESSAGES/gettext_plugin.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/es/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/fr/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ja/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ko/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/nl/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/po/blog.pot +1 -1
- data/samples/rails/po/cs/blog.po +1 -2
- data/samples/rails/po/cs/gettext_plugin.po +1 -1
- data/samples/rails/po/de/blog.po +1 -2
- data/samples/rails/po/de/gettext_plugin.po +1 -1
- data/samples/rails/po/el/blog.po +1 -1
- data/samples/rails/po/el/gettext_plugin.po +1 -1
- data/samples/rails/po/en/blog.po +1 -1
- data/samples/rails/po/es/blog.po +1 -2
- data/samples/rails/po/es/gettext_plugin.po +1 -1
- data/samples/rails/po/fr/blog.po +1 -1
- data/samples/rails/po/fr/gettext_plugin.po +1 -1
- data/samples/rails/po/gettext_plugin.pot +1 -1
- data/samples/rails/po/ja/blog.po +2 -1
- data/samples/rails/po/ja/gettext_plugin.po +1 -1
- data/samples/rails/po/ko/blog.po +1 -2
- data/samples/rails/po/ko/gettext_plugin.po +1 -1
- data/samples/rails/po/nl/blog.po +1 -3
- data/samples/rails/po/nl/gettext_plugin.po +1 -1
- data/samples/rails/po/pt_BR/blog.po +1 -1
- data/samples/rails/po/pt_BR/gettext_plugin.po +1 -1
- data/setup.rb +799 -574
- data/src/poparser.ry +6 -5
- data/test/gettext_runner.rb +3 -1
- data/test/gettext_test.rb +40 -24
- data/test/gettext_test_cgi.rb +60 -6
- data/test/gettext_test_locale.rb +136 -0
- data/test/gettext_test_parser.rb +12 -12
- data/test/locale/la/LC_MESSAGES/plural_error.mo +0 -0
- data/test/po/la/plural_error.po +21 -0
- data/test/test.bat +2 -0
- data/test/test.sh +2 -4
- data/test/{test_rubyparser_n.rb → test_rubyparser_n_.rb} +0 -0
- metadata +17 -12
- data/ext/gettext/gettext/MANIFEST +0 -3
- data/ext/gettext/gettext/extconf.rb +0 -20
- data/lib/gettext/locale_default.rb +0 -35
data/po/sv/rgettext.po
CHANGED
@@ -8,8 +8,8 @@
|
|
8
8
|
#
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
|
-
"Project-Id-Version: ruby-gettext 1.
|
12
|
-
"POT-Creation-Date:
|
11
|
+
"Project-Id-Version: ruby-gettext 1.2.0\n"
|
12
|
+
"POT-Creation-Date: 2006-02-23 00:44+0900\n"
|
13
13
|
"PO-Revision-Date: 2004-11-04 20:49+0100\n"
|
14
14
|
"Last-Translator: Nikolai Weibull\n"
|
15
15
|
"Language-Team: Swedish\n"
|
@@ -17,41 +17,41 @@ msgstr ""
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
19
19
|
|
20
|
-
#: lib/gettext/rmsgmerge.rb:
|
20
|
+
#: lib/gettext/rmsgmerge.rb:405
|
21
21
|
msgid "Usage: %s def.po ref.pot [-o output.pot]"
|
22
22
|
msgstr "Användning: %s def.po ref.pot [-o output.pot]"
|
23
23
|
|
24
|
-
#: lib/gettext/rmsgmerge.rb:
|
24
|
+
#: lib/gettext/rmsgmerge.rb:408
|
25
25
|
msgid ""
|
26
26
|
"Merges two Uniforum style .po files together. The def.po file is an existing "
|
27
27
|
"PO file with translations. The ref.pot file is the last created PO file with "
|
28
28
|
"up-to-date source references. ref.pot is generally created by rgettext."
|
29
29
|
msgstr ""
|
30
30
|
|
31
|
-
#: lib/gettext/rmsgmerge.rb:
|
31
|
+
#: lib/gettext/rmsgmerge.rb:410 lib/gettext/rgettext.rb:132
|
32
32
|
#: lib/gettext/rmsgfmt.rb:50
|
33
33
|
msgid "Specific options:"
|
34
34
|
msgstr ""
|
35
35
|
|
36
|
-
#: lib/gettext/rmsgmerge.rb:
|
36
|
+
#: lib/gettext/rmsgmerge.rb:412 lib/gettext/rgettext.rb:134
|
37
37
|
#: lib/gettext/rmsgfmt.rb:52
|
38
38
|
msgid "write output to specified file"
|
39
39
|
msgstr ""
|
40
40
|
|
41
|
-
#: lib/gettext/rmsgmerge.rb:
|
41
|
+
#: lib/gettext/rmsgmerge.rb:423 lib/gettext/rgettext.rb:143
|
42
42
|
#: lib/gettext/rmsgfmt.rb:56
|
43
43
|
msgid "display version information and exit"
|
44
44
|
msgstr ""
|
45
45
|
|
46
|
-
#: lib/gettext/rmsgmerge.rb:
|
46
|
+
#: lib/gettext/rmsgmerge.rb:448
|
47
47
|
msgid "definition po is not given."
|
48
48
|
msgstr ""
|
49
49
|
|
50
|
-
#: lib/gettext/rmsgmerge.rb:
|
50
|
+
#: lib/gettext/rmsgmerge.rb:450
|
51
51
|
msgid "reference pot is not given."
|
52
52
|
msgstr ""
|
53
53
|
|
54
|
-
#: lib/gettext/rgettext.rb:
|
54
|
+
#: lib/gettext/rgettext.rb:42
|
55
55
|
msgid "'%{klass}' is ignored."
|
56
56
|
msgstr ""
|
57
57
|
|
@@ -79,18 +79,18 @@ msgstr "Användning: %s input.po [-o output.mo]"
|
|
79
79
|
msgid "Generate binary message catalog from textual translation description."
|
80
80
|
msgstr "Generera binära meddelandekataloger från textuell översättningsdata."
|
81
81
|
|
82
|
-
#: lib/gettext/parser/activerecord.rb:
|
82
|
+
#: lib/gettext/parser/activerecord.rb:38
|
83
83
|
msgid "'%{file}' is not found."
|
84
84
|
msgstr ""
|
85
85
|
|
86
|
-
#: lib/gettext/parser/activerecord.rb:
|
86
|
+
#: lib/gettext/parser/activerecord.rb:66
|
87
87
|
msgid "Ignored '%{file}'. Solve dependencies first."
|
88
88
|
msgstr ""
|
89
89
|
|
90
|
-
#: lib/gettext/parser/activerecord.rb:
|
90
|
+
#: lib/gettext/parser/activerecord.rb:84
|
91
91
|
msgid "No database is available."
|
92
92
|
msgstr ""
|
93
93
|
|
94
|
-
#: lib/gettext/parser/glade.rb:
|
94
|
+
#: lib/gettext/parser/glade.rb:75
|
95
95
|
msgid "%s is not glade-2.0 format."
|
96
96
|
msgstr ""
|
data/post-setup.rb
CHANGED
@@ -1,12 +1,17 @@
|
|
1
1
|
=begin
|
2
2
|
post-setup.rb
|
3
3
|
|
4
|
-
Copyright (C) 2001-
|
4
|
+
Copyright (C) 2001-2006 Masao Mutoh
|
5
5
|
This program is licenced under the same licence as Ruby.
|
6
6
|
=end
|
7
7
|
|
8
8
|
$:.unshift "lib"
|
9
|
+
$:.unshift "ext/gettext"
|
9
10
|
|
10
|
-
require 'gettext/
|
11
|
+
require 'gettext/utils'
|
11
12
|
|
12
|
-
|
13
|
+
begin
|
14
|
+
GetText.create_mofiles
|
15
|
+
rescue
|
16
|
+
puts "GetText.create_mofiles failed."
|
17
|
+
end
|
data/pre-setup.rb
CHANGED
@@ -1,12 +1,25 @@
|
|
1
1
|
=begin
|
2
2
|
pre-setup.rb
|
3
3
|
|
4
|
-
Copyright(c) 2005 Masao Mutoh
|
4
|
+
Copyright(c) 2005,2006 Masao Mutoh
|
5
5
|
This program is licenced under the same licence as Ruby.
|
6
|
+
|
7
|
+
$Id: pre-setup.rb,v 1.5 2006/02/07 00:24:44 mutoh Exp $
|
6
8
|
=end
|
7
9
|
|
10
|
+
require 'fileutils'
|
11
|
+
|
8
12
|
ruby = config("ruby-path")
|
9
13
|
|
14
|
+
gettext = "#{File.join(config("siterubyver"), "gettext.rb")}"
|
15
|
+
gettext_dir = "#{File.join(config("siterubyver"), "gettext")}"
|
16
|
+
gettext_dir2 = "#{File.join(config("siterubyverarch"), "gettext")}"
|
17
|
+
locale = "#{File.join(config("siterubyverarch"), "_locale.so")}"
|
18
|
+
FileUtils.rm_f gettext if FileTest.exist?(gettext)
|
19
|
+
FileUtils.rm_rf gettext_dir if FileTest.exist?(gettext_dir)
|
20
|
+
FileUtils.rm_rf gettext_dir2 if FileTest.exist?(gettext_dir2)
|
21
|
+
FileUtils.rm_f locale if FileTest.exist?(locale)
|
22
|
+
|
10
23
|
rake = "#{ruby} #{File.join(config("bindir"), "rake")} setup"
|
11
24
|
|
12
25
|
system(rake)
|
data/samples/cgi/http.rb
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
You may redistribute it and/or modify it under the same
|
8
8
|
license terms as Ruby.
|
9
9
|
|
10
|
-
$Id: http.rb,v 1.
|
10
|
+
$Id: http.rb,v 1.2 2006/02/20 12:35:06 mutoh Exp $
|
11
11
|
=end
|
12
12
|
|
13
13
|
require 'webrick'
|
@@ -24,6 +24,7 @@ end
|
|
24
24
|
srv = WEBrick::HTTPServer.new({:BindAddress => '127.0.0.1',
|
25
25
|
:Logger => WEBrick::Log::new($stderr, WEBrick::Log::DEBUG),
|
26
26
|
:CGIInterpreter => interpreter,
|
27
|
+
# :CGIInterpreter => "ruby -d",
|
27
28
|
:Port => 10080})
|
28
29
|
|
29
30
|
['INT', 'TERM'].each { |signal|
|
data/samples/makemo.rb
CHANGED
@@ -3,7 +3,6 @@ class Article < ActiveRecord::Base
|
|
3
3
|
validates_presence_of :title
|
4
4
|
validates_length_of :description, :minimum => 10
|
5
5
|
|
6
|
-
|
7
6
|
# With your own message with L10n.
|
8
7
|
# old style(Backward compatibility).
|
9
8
|
# blog.po in RAILS_ROOT/po/*/ is used.
|
@@ -14,4 +13,19 @@ class Article < ActiveRecord::Base
|
|
14
13
|
# blog.po in RAILS_ROOT/po/*/ is used.
|
15
14
|
# validates_presence_of :title, :message => _("%{fn} can't be empty!")
|
16
15
|
# validates_length_of :description, :minimum => 10, :message => _("%{fn} is too short (min is %d characters)")
|
16
|
+
|
17
|
+
#
|
18
|
+
# you can also redefined the title/explanation of the top of the error message.
|
19
|
+
#
|
20
|
+
# def error_message_title(num, record)
|
21
|
+
# n_("%{num} error prohibited this %{record} from being saved",
|
22
|
+
# "%{num} errors prohibited this %{record} from being saved", num) %
|
23
|
+
# {:num => num, :record => record}
|
24
|
+
# end
|
25
|
+
#
|
26
|
+
# def error_message_explanation(num)
|
27
|
+
# n_("There was a problem with the following field:",
|
28
|
+
# "There were problems with the following fields:", num) % {:num => num}
|
29
|
+
# end
|
30
|
+
|
17
31
|
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/samples/rails/po/blog.pot
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
12
|
"Project-Id-Version: blog 1.1.0\n"
|
13
|
-
"POT-Creation-Date: 2006-01-
|
13
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
14
14
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
15
15
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
16
16
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
data/samples/rails/po/cs/blog.po
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: blog 1.1.0\n"
|
12
|
-
"POT-Creation-Date: 2006-01-
|
12
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-12-17 21:56+0100\n"
|
14
14
|
"Last-Translator: Karel Miarka <kajism@yahoo.com>\n"
|
15
15
|
"Language-Team: Czech\n"
|
@@ -113,4 +113,3 @@ msgstr "Smazat"
|
|
113
113
|
#: app/views/blog/edit.rhtml:20
|
114
114
|
msgid "Are you sure?"
|
115
115
|
msgstr "Jste si jist(-a)?"
|
116
|
-
|
@@ -9,7 +9,7 @@
|
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: gettext_plugin 1.1.0\n"
|
12
|
-
"POT-Creation-Date: 2006-01-
|
12
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-12-17 21:02+0100\n"
|
14
14
|
"Last-Translator: Karel Miarka <kajism@yahoo.com>\n"
|
15
15
|
"Language-Team: Czech\n"
|
data/samples/rails/po/de/blog.po
CHANGED
@@ -12,7 +12,7 @@ msgid ""
|
|
12
12
|
msgstr ""
|
13
13
|
"Project-Id-Version: blog 1.1.0\n"
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
15
|
-
"POT-Creation-Date: 2006-01-
|
15
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
16
16
|
"PO-Revision-Date: 2005-12-27 17:04W. Europe Standard Time\n"
|
17
17
|
"Last-Translator: Sasa Ebach <se@digitale-wertschoepfung.de>\n"
|
18
18
|
"Language-Team: German <gnome-de@gnome.org>\n"
|
@@ -110,4 +110,3 @@ msgstr "Löschen"
|
|
110
110
|
#: app/views/blog/edit.rhtml:20
|
111
111
|
msgid "Are you sure?"
|
112
112
|
msgstr "Sind Sie sicher?"
|
113
|
-
|
@@ -11,7 +11,7 @@ msgid ""
|
|
11
11
|
msgstr ""
|
12
12
|
"Project-Id-Version: gettext_plugin 1.1.0\n"
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
14
|
-
"POT-Creation-Date: 2006-01-
|
14
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
15
15
|
"PO-Revision-Date: 2005-08-28 22:27+0200\n"
|
16
16
|
"Last-Translator: Sven Herzberg <herzi@abi02.de>\n"
|
17
17
|
"Language-Team: German <gnome-de@gnome.org>\n"
|
data/samples/rails/po/el/blog.po
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: blog 1.1.0\n"
|
12
|
-
"POT-Creation-Date: 2006-01-
|
12
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
13
13
|
"PO-Revision-Date: 2006-01-06 19:50+0100\n"
|
14
14
|
"Last-Translator: damphyr <damphyr@gmx.net>\n"
|
15
15
|
"Language-Team: Greek\n"
|
@@ -9,7 +9,7 @@
|
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: gettext_plugin 1.1.0\n"
|
12
|
-
"POT-Creation-Date: 2006-01-
|
12
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
13
13
|
"PO-Revision-Date: 2006-01-06 19:50+0100\n"
|
14
14
|
"Last-Translator: damphyr <damphyr@gmx.net>\n"
|
15
15
|
"Language-Team: Greek\n"
|
data/samples/rails/po/en/blog.po
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
msgid ""
|
12
12
|
msgstr ""
|
13
13
|
"Project-Id-Version: blog 1.1.0\n"
|
14
|
-
"POT-Creation-Date: 2006-01-
|
14
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
15
15
|
"PO-Revision-Date: 2005-12-23 01:28+0900\n"
|
16
16
|
"Last-Translator: Masao Mutoh <mutoh@highway.ne.jp>\n"
|
17
17
|
"Language-Team: English\n"
|
data/samples/rails/po/es/blog.po
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
12
|
"Project-Id-Version: blog 1.1.0\n"
|
13
|
-
"POT-Creation-Date: 2006-01-
|
13
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
14
14
|
"PO-Revision-Date: 2005-12-27 23:14+0100\n"
|
15
15
|
"Last-Translator: David Espada <davinci@escomposlinux.org>\n"
|
16
16
|
"Language-Team: Spanish\n"
|
@@ -108,4 +108,3 @@ msgstr "Destruir"
|
|
108
108
|
#: app/views/blog/edit.rhtml:20
|
109
109
|
msgid "Are you sure?"
|
110
110
|
msgstr "¿Está seguro?"
|
111
|
-
|
@@ -10,7 +10,7 @@
|
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
12
|
"Project-Id-Version: gettext_plugin 1.1.0\n"
|
13
|
-
"POT-Creation-Date: 2006-01-
|
13
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
14
14
|
"PO-Revision-Date: 2005-08-27 23:23+0900\n"
|
15
15
|
"Last-Translator: David Espada <davinci@escomposlinux.org>\n"
|
16
16
|
"Language-Team: Spanish\n"
|
data/samples/rails/po/fr/blog.po
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: blog 1.1.0\n"
|
12
|
-
"POT-Creation-Date: 2006-01-
|
12
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-08-28 09:22+0100\n"
|
14
14
|
"Last-Translator: Laurent Sansonetti\n"
|
15
15
|
"Language-Team: French\n"
|
@@ -9,7 +9,7 @@
|
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: gettext_plugin 1.1.0\n"
|
12
|
-
"POT-Creation-Date: 2006-01-
|
12
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-08-28 09:22+0100\n"
|
14
14
|
"Last-Translator: Laurent Sansonetti\n"
|
15
15
|
"Language-Team: French\n"
|
@@ -10,7 +10,7 @@
|
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
12
|
"Project-Id-Version: gettext_plugin 1.1.0\n"
|
13
|
-
"POT-Creation-Date: 2006-01-
|
13
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
14
14
|
"PO-Revision-Date: 2005-08-27 23:23+0900\n"
|
15
15
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
16
16
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
data/samples/rails/po/ja/blog.po
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: blog 1.1.0\n"
|
12
|
-
"POT-Creation-Date: 2006-01-
|
12
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-08-26 23:02+0900\n"
|
14
14
|
"Last-Translator: Masao Mutoh <mutoh@highway.ne.jp>\n"
|
15
15
|
"Language-Team: Japanese\n"
|
@@ -107,3 +107,4 @@ msgstr "削除"
|
|
107
107
|
#: app/views/blog/edit.rhtml:20
|
108
108
|
msgid "Are you sure?"
|
109
109
|
msgstr "よろしいですか?"
|
110
|
+
|
@@ -10,7 +10,7 @@
|
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
12
|
"Project-Id-Version: gettext_plugin 1.1.0\n"
|
13
|
-
"POT-Creation-Date: 2006-01-
|
13
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
14
14
|
"PO-Revision-Date: 2005-08-27 23:23+0900\n"
|
15
15
|
"Last-Translator: Masao Mutoh <mutoh@highway.ne.jp>\n"
|
16
16
|
"Language-Team: Japanese\n"
|
data/samples/rails/po/ko/blog.po
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: blog 1.1.0\n"
|
12
|
-
"POT-Creation-Date: 2006-01-
|
12
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-12-23 02:00+0900\n"
|
14
14
|
"Last-Translator: Gyoung-Yoon Noh <nohmad@gmail.com>\n"
|
15
15
|
"Language-Team: Korean\n"
|
@@ -30,7 +30,6 @@ msgstr "이전 글들"
|
|
30
30
|
msgid "article"
|
31
31
|
msgstr "새 글"
|
32
32
|
|
33
|
-
|
34
33
|
#: app/models/article.rb:-
|
35
34
|
msgid "Article|Id"
|
36
35
|
msgstr ""
|
@@ -9,7 +9,7 @@
|
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
11
|
"Project-Id-Version: gettext_plugin 1.1.0\n"
|
12
|
-
"POT-Creation-Date: 2006-01-
|
12
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
13
13
|
"PO-Revision-Date: 2005-12-23 02:00+0900\n"
|
14
14
|
"Last-Translator: Gyoung-Yoon Noh <nohmad@gmail.com>\n"
|
15
15
|
"Language-Team: Korean <LL@li.org>\n"
|
data/samples/rails/po/nl/blog.po
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
12
|
"Project-Id-Version: blog 1.1.0\n"
|
13
|
-
"POT-Creation-Date: 2006-01-
|
13
|
+
"POT-Creation-Date: 2006-01-19 16:49+0900\n"
|
14
14
|
"PO-Revision-Date: 2005-12-19 21:44+0100\n"
|
15
15
|
"Last-Translator: Menno Jonkers <ruby-gettext@jonkers.com>\n"
|
16
16
|
"Language-Team: Dutch <ruby_gettext@jonkers.com>\n"
|
@@ -108,5 +108,3 @@ msgstr "Verwijder"
|
|
108
108
|
#: app/views/blog/edit.rhtml:20
|
109
109
|
msgid "Are you sure?"
|
110
110
|
msgstr "Weet u dit zeker?"
|
111
|
-
|
112
|
-
|