gettext 1.1.1-mswin32 → 1.2.0-mswin32

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.
Files changed (157) hide show
  1. data/ChangeLog +128 -0
  2. data/NEWS +10 -0
  3. data/README +21 -23
  4. data/Rakefile +40 -21
  5. data/bin/rgettext +1 -1
  6. data/bin/rmsgfmt +1 -1
  7. data/bin/rmsgmerge +1 -1
  8. data/data/locale/cs/LC_MESSAGES/rails.mo +0 -0
  9. data/data/locale/cs/LC_MESSAGES/rgettext.mo +0 -0
  10. data/data/locale/de/LC_MESSAGES/rails.mo +0 -0
  11. data/data/locale/de/LC_MESSAGES/rgettext.mo +0 -0
  12. data/data/locale/el/LC_MESSAGES/rails.mo +0 -0
  13. data/data/locale/el/LC_MESSAGES/rgettext.mo +0 -0
  14. data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
  15. data/data/locale/es/LC_MESSAGES/rgettext.mo +0 -0
  16. data/data/locale/fr/LC_MESSAGES/rails.mo +0 -0
  17. data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
  18. data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
  19. data/data/locale/ja/LC_MESSAGES/rails.mo +0 -0
  20. data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
  21. data/data/locale/ko/LC_MESSAGES/rails.mo +0 -0
  22. data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
  23. data/data/locale/nl/LC_MESSAGES/rails.mo +0 -0
  24. data/data/locale/nl/LC_MESSAGES/rgettext.mo +0 -0
  25. data/data/locale/pt_BR/LC_MESSAGES/rails.mo +0 -0
  26. data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
  27. data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
  28. data/ext/gettext/{gettext/Makefile → Makefile} +3 -3
  29. data/ext/gettext/extconf.rb +20 -0
  30. data/ext/gettext/locale_system-i386-mswin32.def +2 -0
  31. data/ext/gettext/{gettext/_locale.c → locale_system.c} +15 -19
  32. data/ext/gettext/locale_system.exp +0 -0
  33. data/ext/gettext/locale_system.lib +0 -0
  34. data/ext/gettext/locale_system.obj +0 -0
  35. data/ext/gettext/{gettext/_locale.pdb → locale_system.pdb} +0 -0
  36. data/ext/gettext/locale_system.so +0 -0
  37. data/ext/gettext/mkmf.log +10 -0
  38. data/ext/gettext/{gettext/vc70.pdb → vc70.pdb} +0 -0
  39. data/lib/gettext.rb +186 -38
  40. data/lib/gettext/cgi.rb +35 -69
  41. data/lib/gettext/container.rb +14 -5
  42. data/lib/gettext/erb.rb +30 -2
  43. data/lib/gettext/iconv.rb +19 -4
  44. data/lib/gettext/locale.rb +188 -39
  45. data/lib/gettext/locale_cgi.rb +102 -0
  46. data/lib/gettext/locale_object.rb +131 -0
  47. data/lib/gettext/locale_posix.rb +50 -0
  48. data/lib/gettext/locale_table_win32.rb +224 -182
  49. data/lib/gettext/locale_win32.rb +59 -35
  50. data/lib/gettext/mo.rb +2 -2
  51. data/lib/gettext/parser/activerecord.rb +19 -5
  52. data/lib/gettext/parser/erb.rb +6 -3
  53. data/lib/gettext/parser/glade.rb +5 -5
  54. data/lib/gettext/parser/ruby.rb +6 -6
  55. data/lib/gettext/poparser.rb +298 -297
  56. data/lib/gettext/rails.rb +122 -44
  57. data/lib/gettext/rgettext.rb +21 -8
  58. data/lib/gettext/rmsgfmt.rb +16 -8
  59. data/lib/gettext/rmsgmerge.rb +172 -50
  60. data/lib/gettext/string.rb +25 -3
  61. data/lib/gettext/textdomain.rb +89 -90
  62. data/lib/gettext/utils.rb +63 -3
  63. data/lib/gettext/version.rb +2 -2
  64. data/lib/locale_system.so +0 -0
  65. data/po/cs/rails.po +28 -28
  66. data/po/cs/rgettext.po +14 -14
  67. data/po/de/rails.po +29 -26
  68. data/po/de/rgettext.po +24 -17
  69. data/po/el/rails.po +26 -26
  70. data/po/el/rgettext.po +18 -15
  71. data/po/es/rails.po +26 -26
  72. data/po/es/rgettext.po +16 -16
  73. data/po/fr/rails.po +27 -27
  74. data/po/fr/rgettext.po +14 -14
  75. data/po/it/rgettext.po +14 -14
  76. data/po/ja/rails.po +24 -24
  77. data/po/ja/rgettext.po +14 -14
  78. data/po/ko/rails.po +24 -24
  79. data/po/ko/rgettext.po +17 -18
  80. data/po/nl/rails.po +27 -27
  81. data/po/nl/rgettext.po +18 -18
  82. data/po/pt_BR/rails.po +26 -26
  83. data/po/pt_BR/rgettext.po +14 -14
  84. data/po/rails.pot +26 -26
  85. data/po/rgettext.pot +14 -14
  86. data/po/sv/rgettext.po +14 -14
  87. data/post-setup.rb +8 -3
  88. data/pre-setup.rb +14 -1
  89. data/samples/cgi/http.rb +2 -1
  90. data/samples/makemo.rb +1 -1
  91. data/samples/rails/app/models/article.rb +15 -1
  92. data/samples/rails/config/database.yml +1 -1
  93. data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
  94. data/samples/rails/locale/cs/LC_MESSAGES/gettext_plugin.mo +0 -0
  95. data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
  96. data/samples/rails/locale/de/LC_MESSAGES/gettext_plugin.mo +0 -0
  97. data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
  98. data/samples/rails/locale/el/LC_MESSAGES/gettext_plugin.mo +0 -0
  99. data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
  100. data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
  101. data/samples/rails/locale/es/LC_MESSAGES/gettext_plugin.mo +0 -0
  102. data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
  103. data/samples/rails/locale/fr/LC_MESSAGES/gettext_plugin.mo +0 -0
  104. data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
  105. data/samples/rails/locale/ja/LC_MESSAGES/gettext_plugin.mo +0 -0
  106. data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
  107. data/samples/rails/locale/ko/LC_MESSAGES/gettext_plugin.mo +0 -0
  108. data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
  109. data/samples/rails/locale/nl/LC_MESSAGES/gettext_plugin.mo +0 -0
  110. data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
  111. data/samples/rails/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo +0 -0
  112. data/samples/rails/po/blog.pot +1 -1
  113. data/samples/rails/po/cs/blog.po +1 -2
  114. data/samples/rails/po/cs/gettext_plugin.po +1 -1
  115. data/samples/rails/po/de/blog.po +1 -2
  116. data/samples/rails/po/de/gettext_plugin.po +1 -1
  117. data/samples/rails/po/el/blog.po +1 -1
  118. data/samples/rails/po/el/gettext_plugin.po +1 -1
  119. data/samples/rails/po/en/blog.po +1 -1
  120. data/samples/rails/po/es/blog.po +1 -2
  121. data/samples/rails/po/es/gettext_plugin.po +1 -1
  122. data/samples/rails/po/fr/blog.po +1 -1
  123. data/samples/rails/po/fr/gettext_plugin.po +1 -1
  124. data/samples/rails/po/gettext_plugin.pot +1 -1
  125. data/samples/rails/po/ja/blog.po +2 -1
  126. data/samples/rails/po/ja/gettext_plugin.po +1 -1
  127. data/samples/rails/po/ko/blog.po +1 -2
  128. data/samples/rails/po/ko/gettext_plugin.po +1 -1
  129. data/samples/rails/po/nl/blog.po +1 -3
  130. data/samples/rails/po/nl/gettext_plugin.po +1 -1
  131. data/samples/rails/po/pt_BR/blog.po +1 -1
  132. data/samples/rails/po/pt_BR/gettext_plugin.po +1 -1
  133. data/setup.rb +799 -574
  134. data/src/poparser.ry +6 -5
  135. data/test/gettext_runner.rb +3 -1
  136. data/test/gettext_test.rb +40 -24
  137. data/test/gettext_test_cgi.rb +60 -6
  138. data/test/gettext_test_locale.rb +136 -0
  139. data/test/gettext_test_parser.rb +12 -12
  140. data/test/locale/la/LC_MESSAGES/plural_error.mo +0 -0
  141. data/test/po/la/plural_error.po +21 -0
  142. data/test/test.bat +2 -0
  143. data/test/test.sh +2 -4
  144. data/test/test_rubyparser_n_.rb +64 -0
  145. metadata +24 -21
  146. data/ext/gettext/gettext/MANIFEST +0 -3
  147. data/ext/gettext/gettext/_locale-i386-mswin32.def +0 -2
  148. data/ext/gettext/gettext/_locale.exp +0 -0
  149. data/ext/gettext/gettext/_locale.lib +0 -0
  150. data/ext/gettext/gettext/_locale.obj +0 -0
  151. data/ext/gettext/gettext/_locale.so +0 -0
  152. data/ext/gettext/gettext/extconf.rb +0 -20
  153. data/ext/gettext/gettext/mkmf.log +0 -16
  154. data/lib/_locale.so +0 -0
  155. data/lib/gettext/locale_default.rb +0 -35
  156. data/po/it/messages.mo +0 -0
  157. data/samples/cgi/po/it/messages.mo +0 -0
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.1.0\n"
12
- "POT-Creation-Date: 2005-12-20 03:03+0900\n"
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:300
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:302
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:304 lib/gettext/rgettext.rb:132
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:306 lib/gettext/rgettext.rb:134
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:315 lib/gettext/rgettext.rb:143
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:336
46
+ #: lib/gettext/rmsgmerge.rb:448
47
47
  msgid "definition po is not given."
48
48
  msgstr ""
49
49
 
50
- #: lib/gettext/rmsgmerge.rb:338
50
+ #: lib/gettext/rmsgmerge.rb:450
51
51
  msgid "reference pot is not given."
52
52
  msgstr ""
53
53
 
54
- #: lib/gettext/rgettext.rb:43
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:27
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:72
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
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:74
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-2004 MUTOH Masao <mutoh@highway.ne.jp>
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/rmsgfmt'
11
+ require 'gettext/utils'
11
12
 
12
- GetText.create_mofiles
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.1.1.1 2005/08/13 02:38:08 mutoh Exp $
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
@@ -1,3 +1,3 @@
1
- require 'gettext/rmsgfmt'
1
+ require 'gettext/utils'
2
2
 
3
3
  GetText.create_mofiles(true, "po", "locale")
@@ -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
@@ -6,7 +6,7 @@ development:
6
6
  host: localhost
7
7
  encoding: utf8
8
8
  username: root
9
- password:
9
+ password: muto987m
10
10
 
11
11
  #development:
12
12
  # adapter: postgresql
@@ -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-11 00:45+0900\n"
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"
@@ -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-11 00:45+0900\n"
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-11 00:45+0900\n"
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"
@@ -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-11 00:45+0900\n"
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-11 00:45+0900\n"
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"
@@ -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-11 00:45+0900\n"
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-11 00:45+0900\n"
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"
@@ -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-11 00:45+0900\n"
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"
@@ -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-11 00:45+0900\n"
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-11 00:45+0900\n"
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"
@@ -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-11 00:45+0900\n"
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-11 00:45+0900\n"
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-11 00:45+0900\n"
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"
@@ -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-11 00:45+0900\n"
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-11 00:45+0900\n"
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"
@@ -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-11 00:45+0900\n"
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-11 00:45+0900\n"
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"
@@ -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-11 00:45+0900\n"
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
-