gettext 1.7.0-mswin32 → 1.8.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 (155) hide show
  1. data/ChangeLog +139 -0
  2. data/NEWS +31 -0
  3. data/README +31 -15
  4. data/Rakefile +3 -2
  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/et/LC_MESSAGES/rails.mo +0 -0
  17. data/data/locale/fr/LC_MESSAGES/rails.mo +0 -0
  18. data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
  19. data/data/locale/it/LC_MESSAGES/rails.mo +0 -0
  20. data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
  21. data/data/locale/ja/LC_MESSAGES/rails.mo +0 -0
  22. data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
  23. data/data/locale/ko/LC_MESSAGES/rails.mo +0 -0
  24. data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
  25. data/data/locale/nl/LC_MESSAGES/rails.mo +0 -0
  26. data/data/locale/nl/LC_MESSAGES/rgettext.mo +0 -0
  27. data/data/locale/pt_BR/LC_MESSAGES/rails.mo +0 -0
  28. data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
  29. data/data/locale/ru/LC_MESSAGES/rails.mo +0 -0
  30. data/data/locale/ru/LC_MESSAGES/rgettext.mo +0 -0
  31. data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
  32. data/data/locale/zh/LC_MESSAGES/rails.mo +0 -0
  33. data/data/locale/zh/LC_MESSAGES/rgettext.mo +0 -0
  34. data/data/locale/zh_TW/LC_MESSAGES/rails.mo +0 -0
  35. data/data/locale/zh_TW/LC_MESSAGES/rgettext.mo +0 -0
  36. data/lib/gettext.rb +50 -23
  37. data/lib/gettext/active_record.rb +275 -0
  38. data/lib/gettext/locale.rb +9 -2
  39. data/lib/gettext/locale_cgi.rb +5 -4
  40. data/lib/gettext/locale_object.rb +5 -4
  41. data/lib/gettext/parser/{activerecord.rb → active_record.rb} +31 -14
  42. data/lib/gettext/parser/ruby.rb +48 -44
  43. data/lib/gettext/rails.rb +111 -253
  44. data/lib/gettext/rgettext.rb +34 -6
  45. data/lib/gettext/string.rb +3 -2
  46. data/lib/gettext/textdomain.rb +3 -3
  47. data/lib/gettext/version.rb +1 -1
  48. data/po/cs/rails.po +61 -61
  49. data/po/cs/rgettext.po +37 -55
  50. data/po/de/rails.po +73 -72
  51. data/po/de/rgettext.po +39 -56
  52. data/po/el/rails.po +60 -60
  53. data/po/el/rgettext.po +26 -44
  54. data/po/es/rails.po +60 -60
  55. data/po/es/rgettext.po +28 -52
  56. data/po/et/rails.po +118 -0
  57. data/po/fr/rails.po +60 -60
  58. data/po/fr/rgettext.po +26 -46
  59. data/po/it/rails.po +68 -68
  60. data/po/it/rgettext.po +35 -53
  61. data/po/ja/rails.po +62 -61
  62. data/po/ja/rgettext.po +27 -45
  63. data/po/ko/rails.po +61 -60
  64. data/po/ko/rgettext.po +34 -54
  65. data/po/nl/rails.po +59 -60
  66. data/po/nl/rgettext.po +35 -55
  67. data/po/pt_BR/rails.po +74 -73
  68. data/po/pt_BR/rgettext.po +36 -52
  69. data/po/rails.pot +61 -61
  70. data/po/rgettext.pot +25 -43
  71. data/po/ru/rails.po +61 -62
  72. data/po/ru/rgettext.po +26 -51
  73. data/po/sv/rgettext.po +27 -44
  74. data/po/zh/rails.po +62 -60
  75. data/po/zh/rgettext.po +28 -47
  76. data/po/zh_TW/rails.po +114 -0
  77. data/po/zh_TW/rgettext.po +121 -0
  78. data/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb1.mo +0 -0
  79. data/samples/cgi/locale/zh_TW/LC_MESSAGES/helloerb2.mo +0 -0
  80. data/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo +0 -0
  81. data/samples/cgi/locale/zh_TW/LC_MESSAGES/main.mo +0 -0
  82. data/samples/cgi/po/zh_TW/helloerb1.po +67 -0
  83. data/samples/cgi/po/zh_TW/helloerb2.po +54 -0
  84. data/samples/cgi/po/zh_TW/hellolib.po +26 -0
  85. data/samples/cgi/po/zh_TW/main.po +79 -0
  86. data/samples/locale/zh_TW/LC_MESSAGES/hello.mo +0 -0
  87. data/samples/locale/zh_TW/LC_MESSAGES/hello2.mo +0 -0
  88. data/samples/locale/zh_TW/LC_MESSAGES/hello_noop.mo +0 -0
  89. data/samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo +0 -0
  90. data/samples/locale/zh_TW/LC_MESSAGES/helloglade2.mo +0 -0
  91. data/samples/locale/zh_TW/LC_MESSAGES/hellogtk.mo +0 -0
  92. data/samples/locale/zh_TW/LC_MESSAGES/hellotk.mo +0 -0
  93. data/samples/po/hellogtk.pot +1 -1
  94. data/samples/po/zh_TW/hello.po +26 -0
  95. data/samples/po/zh_TW/hello2.po +34 -0
  96. data/samples/po/zh_TW/hello_noop.po +30 -0
  97. data/samples/po/zh_TW/hello_plural.po +28 -0
  98. data/samples/po/zh_TW/helloglade2.po +40 -0
  99. data/samples/po/zh_TW/hellogtk.po +25 -0
  100. data/samples/po/zh_TW/hellotk.po +26 -0
  101. data/samples/rails/README +8 -11
  102. data/samples/rails/app/controllers/application.rb +6 -9
  103. data/samples/rails/app/views/layouts/blog.rhtml +1 -1
  104. data/samples/rails/config/database.yml +1 -1
  105. data/samples/rails/config/environment.rb +1 -0
  106. data/samples/rails/db/schema.rb +90 -0
  107. data/samples/rails/lib/tasks/gettext.rake +1 -1
  108. data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
  109. data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
  110. data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
  111. data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
  112. data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
  113. data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
  114. data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
  115. data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
  116. data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
  117. data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
  118. data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
  119. data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
  120. data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
  121. data/samples/rails/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
  122. data/samples/rails/po/blog.pot +106 -110
  123. data/samples/rails/po/cs/blog.po +110 -115
  124. data/samples/rails/po/de/blog.po +107 -112
  125. data/samples/rails/po/el/blog.po +105 -109
  126. data/samples/rails/po/en/blog.po +107 -111
  127. data/samples/rails/po/es/blog.po +105 -110
  128. data/samples/rails/po/fr/blog.po +105 -109
  129. data/samples/rails/po/it/blog.po +105 -109
  130. data/samples/rails/po/ja/blog.po +105 -109
  131. data/samples/rails/po/ko/blog.po +105 -109
  132. data/samples/rails/po/nl/blog.po +105 -110
  133. data/samples/rails/po/pt_BR/blog.po +105 -109
  134. data/samples/rails/po/ru/blog.po +105 -107
  135. data/samples/rails/po/zh/blog.po +105 -109
  136. data/samples/rails/po/zh_TW/blog.po +107 -0
  137. data/samples/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES/gettext_plugin.mo +0 -0
  138. data/samples/rails/vendor/plugins/gettext/po/zh_TW/gettext_plugin.po +30 -0
  139. data/test/Rakefile +44 -0
  140. data/test/fixtures/developer.rb +5 -0
  141. data/test/fixtures/developers.yml +21 -0
  142. data/test/fixtures/reply.rb +40 -0
  143. data/test/fixtures/topic.rb +23 -0
  144. data/test/fixtures/topics.yml +22 -0
  145. data/test/gettext_test.rb +2 -2
  146. data/test/gettext_test_active_record.rb +1479 -0
  147. data/test/gettext_test_rails.rb +2 -0
  148. data/test/locale/ja/LC_MESSAGES/active_record.mo +0 -0
  149. data/test/po/active_record.pot +295 -0
  150. data/test/po/ja/active_record.po +294 -0
  151. data/test/test.sh +1 -0
  152. data/test/test_rubyparser.rb +10 -2
  153. metadata +66 -6
  154. data/samples/rails/db/mysql.sql +0 -8
  155. data/samples/rails/db/postgresql.sql +0 -7
data/po/it/rgettext.po CHANGED
@@ -1,16 +1,16 @@
1
- #
2
- # po-file for Ruby-GetText-Package
3
- #
4
- # Copyright (C) 2004,2005 Masao Mutoh
5
- # This file is distributed under the same license as the Ruby-GetText-Package.
6
- #
7
- # Gabriele Renzi <surrender_it at yahoo.it>, 2005.
8
- # Marco Lazzeri <marco.lazzeri at gmail.com>, 2006.
9
- #
1
+ #
2
+ # po-file for Ruby-GetText-Package
3
+ #
4
+ # Copyright (C) 2004,2005 Masao Mutoh
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Gabriele Renzi <surrender_it at yahoo.it>, 2005.
8
+ # Marco Lazzeri <marco.lazzeri at gmail.com>, 2006.
9
+ #
10
10
  msgid ""
11
11
  msgstr ""
12
- "Project-Id-Version: ruby-gettext 1.6.0\n"
13
- "POT-Creation-Date: 2006-07-08 18:46+0900\n"
12
+ "Project-Id-Version: ruby-gettext 1.8.0\n"
13
+ "POT-Creation-Date: 2006-08-23 00:28+0900\n"
14
14
  "PO-Revision-Date: 2005-12-17 14:33+0900\n"
15
15
  "Last-Translator: Marco Lazzeri <marco.lazzeri at gmail.com>\n"
16
16
  "Language-Team: Italian\n"
@@ -34,17 +34,17 @@ msgstr ""
34
34
  "aggiornati al sorgente e viene creato per ultimo (solitamente viene generato "
35
35
  "da rgettext)."
36
36
 
37
- #: lib/gettext/rmsgmerge.rb:408 lib/gettext/rgettext.rb:133
37
+ #: lib/gettext/rmsgmerge.rb:408 lib/gettext/rgettext.rb:153
38
38
  #: lib/gettext/rmsgfmt.rb:51
39
39
  msgid "Specific options:"
40
40
  msgstr "Opzioni:"
41
41
 
42
- #: lib/gettext/rmsgmerge.rb:410 lib/gettext/rgettext.rb:135
42
+ #: lib/gettext/rmsgmerge.rb:410 lib/gettext/rgettext.rb:155
43
43
  #: lib/gettext/rmsgfmt.rb:53
44
44
  msgid "write output to specified file"
45
45
  msgstr "scrivi l'output sul file specificato"
46
46
 
47
- #: lib/gettext/rmsgmerge.rb:421 lib/gettext/rgettext.rb:144
47
+ #: lib/gettext/rmsgmerge.rb:421 lib/gettext/rgettext.rb:172
48
48
  #: lib/gettext/rmsgfmt.rb:57
49
49
  msgid "display version information and exit"
50
50
  msgstr "mostra la versione ed esce"
@@ -61,19 +61,27 @@ msgstr "il file .pot di riferimento non è stato specificato."
61
61
  msgid "'%{klass}' is ignored."
62
62
  msgstr "'%{klass}' ignorata."
63
63
 
64
- #: lib/gettext/rgettext.rb:129
65
- msgid "Usage: %s input.rb [-o output.pot]"
66
- msgstr "Utilizzo: %s input.po [-o output.pot]"
64
+ #: lib/gettext/rgettext.rb:149
65
+ msgid "Usage: %s input.rb [-r parser.rb] [-o output.pot]"
66
+ msgstr "Utilizzo: %s input.rb [-r parser.rb] [-o output.pot]"
67
67
 
68
- #: lib/gettext/rgettext.rb:131
68
+ #: lib/gettext/rgettext.rb:151
69
69
  msgid "Extract translatable strings from given input files."
70
70
  msgstr "Estrae le stringhe traducibili dai file in input."
71
71
 
72
- #: lib/gettext/rgettext.rb:139
72
+ #: lib/gettext/rgettext.rb:159
73
73
  msgid "File '%s' has already existed."
74
74
  msgstr "Il file '%s' è già esistente."
75
75
 
76
- #: lib/gettext/rgettext.rb:168 lib/gettext/rmsgfmt.rb:31
76
+ #: lib/gettext/rgettext.rb:164
77
+ msgid "read an option parser"
78
+ msgstr ""
79
+
80
+ #: lib/gettext/rgettext.rb:168
81
+ msgid "run in debugging mode"
82
+ msgstr ""
83
+
84
+ #: lib/gettext/rgettext.rb:196 lib/gettext/rmsgfmt.rb:31
77
85
  msgid "no input files"
78
86
  msgstr "nessun file specificato in input"
79
87
 
@@ -87,52 +95,26 @@ msgstr ""
87
95
  "Genera un catalogo binario dei messaggi dalla descrizione testuale della "
88
96
  "traduzione."
89
97
 
90
- #: lib/gettext/rails_ext.rb:21
91
- msgid ""
92
- "Called id for nil, which would mistakenly be 4 -- if you really wanted the "
93
- "id of nil, use object_id"
94
- msgstr ""
95
-
96
- #: lib/gettext/rails_ext.rb:27
97
- msgid "You have a nil object when you didn't expect it!"
98
- msgstr ""
99
-
100
- #: lib/gettext/rails_ext.rb:28
101
- msgid ""
102
- "\n"
103
- "You might have expected an instance of %{klass}."
104
- msgstr ""
105
-
106
- #: lib/gettext/rails_ext.rb:29
107
- msgid ""
108
- "\n"
109
- "The error occured while evaluating nil.%{selector}"
110
- msgstr ""
111
-
112
- #: lib/gettext/rails_ext.rb:43
113
- msgid "uninitialized constant %{const}"
114
- msgstr ""
98
+ #: lib/gettext/parser/glade.rb:74
99
+ msgid "`%{file}' is not glade-2.0 format."
100
+ msgstr "`%{file}' non è nel formato glade-2.0."
115
101
 
116
- #: lib/gettext/parser/activerecord.rb:38
102
+ #: lib/gettext/parser/active_record.rb:39
117
103
  msgid "'%{file}' is not found."
118
104
  msgstr "'%{file}' non trovato."
119
105
 
120
- #: lib/gettext/parser/activerecord.rb:66
106
+ #: lib/gettext/parser/active_record.rb:79
121
107
  msgid "Ignored '%{file}'. Solve dependencies first."
122
108
  msgstr "'%{file}' ignorato. Risolvo le dipendenze prima."
123
109
 
124
- #: lib/gettext/parser/activerecord.rb:85
110
+ #: lib/gettext/parser/active_record.rb:104
125
111
  msgid "No database is available."
126
112
  msgstr "Nessun database disponibile."
127
113
 
128
- #: lib/gettext/parser/activerecord.rb:116
114
+ #: lib/gettext/parser/active_record.rb:138
129
115
  msgid "rubygems are not found."
130
116
  msgstr "RubyGems non trovato."
131
117
 
132
- #: lib/gettext/parser/glade.rb:74
133
- msgid "`%{file}' is not glade-2.0 format."
134
- msgstr "`%{file}' non è nel formato glade-2.0."
135
-
136
118
  #: src/poparser.ry:26 src/poparser.ry:41
137
119
  msgid "Warning: fuzzy message was ignored.\n"
138
120
  msgstr ""
data/po/ja/rails.po CHANGED
@@ -2,14 +2,15 @@
2
2
  # a po-file for Ruby-GetText-Package and Ruby on Rails.
3
3
  #
4
4
  # Copyright (C) 2005,2006 Masao Mutoh
5
+ #
5
6
  # This file is distributed under the same license as the Ruby-GetText-Package.
6
7
  #
7
- # Masao Mutoh, 2005.
8
+ # Masao Mutoh, 2005,2006.
8
9
  #
9
10
  msgid ""
10
11
  msgstr ""
11
- "Project-Id-Version: ruby-gettext 1.6.0\n"
12
- "POT-Creation-Date: 2006-07-08 18:46+0900\n"
12
+ "Project-Id-Version: ruby-gettext 1.8.0\n"
13
+ "POT-Creation-Date: 2006-08-23 00:28+0900\n"
13
14
  "PO-Revision-Date: 2005-12-17 14:33+0900\n"
14
15
  "Last-Translator: Masao Mutoh\n"
15
16
  "Language-Team: Japanese\n"
@@ -18,100 +19,100 @@ msgstr ""
18
19
  "Content-Transfer-Encoding: 8bit\n"
19
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
21
 
21
- #: lib/gettext/rails.rb:281
22
- msgid "%{fn} is not included in the list"
23
- msgstr "%{fn}は一覧にありません。"
24
-
25
- #: lib/gettext/rails.rb:282
26
- msgid "%{fn} is reserved"
27
- msgstr "%{fn}は予約されています。"
28
-
29
- #: lib/gettext/rails.rb:283
30
- msgid "%{fn} is invalid"
31
- msgstr "%{fn}は不正な値です。"
32
-
33
- #: lib/gettext/rails.rb:284
34
- msgid "%{fn} doesn't match confirmation"
35
- msgstr "%{fn}は確認されませんでした。"
36
-
37
- #: lib/gettext/rails.rb:285
38
- msgid "%{fn} must be accepted"
39
- msgstr "%{fn}は許可されていません。"
40
-
41
- #: lib/gettext/rails.rb:286
42
- msgid "%{fn} can't be empty"
43
- msgstr "%{fn}を入力してください。"
44
-
45
- #: lib/gettext/rails.rb:287
46
- msgid "%{fn} can't be blank"
47
- msgstr "%{fn}を入力してください。"
48
-
49
- #: lib/gettext/rails.rb:288
50
- msgid "%{fn} is too long (max is %d characters)"
51
- msgstr "%{fn}は%d文字以下で入力してください。"
52
-
53
- #: lib/gettext/rails.rb:289
54
- msgid "%{fn} is too short (min is %d characters)"
55
- msgstr "%{fn}は%d文字以上で入力してください。"
56
-
57
- #: lib/gettext/rails.rb:290
58
- msgid "%{fn} is the wrong length (should be %d characters)"
59
- msgstr "%{fn}は%d文字にしてください。"
60
-
61
- #: lib/gettext/rails.rb:291
62
- msgid "%{fn} has already been taken"
63
- msgstr "%{fn}はすでに存在します。"
64
-
65
- #: lib/gettext/rails.rb:292
66
- msgid "%{fn} is not a number"
67
- msgstr "%{fn}は数値で入力してください。"
68
-
69
- #: lib/gettext/rails.rb:359
22
+ #: lib/gettext/rails.rb:271
70
23
  msgid "%{num} error prohibited this %{record} from being saved"
71
24
  msgid_plural "%{num} errors prohibited this %{record} from being saved"
72
25
  msgstr[0] "%{record}にエラーが発生しました。"
73
26
  msgstr[1] "%{record}に%{num}つのエラーが発生しました。"
74
27
 
75
- #: lib/gettext/rails.rb:361
28
+ #: lib/gettext/rails.rb:273
76
29
  msgid "There was a problem with the following field:"
77
30
  msgid_plural "There were problems with the following fields:"
78
31
  msgstr[0] "次の項目を確認してください。"
79
32
  msgstr[1] "次の項目を確認してください。"
80
33
 
81
- #: lib/gettext/rails.rb:403
34
+ #: lib/gettext/rails.rb:360
82
35
  msgid "less than 5 seconds"
83
36
  msgstr "5秒以内"
84
37
 
85
- #: lib/gettext/rails.rb:403
38
+ #: lib/gettext/rails.rb:360
86
39
  msgid "less than 10 seconds"
87
40
  msgstr "10秒以内"
88
41
 
89
- #: lib/gettext/rails.rb:403
42
+ #: lib/gettext/rails.rb:360
90
43
  msgid "less than 20 seconds"
91
44
  msgstr "20秒以内"
92
45
 
93
- #: lib/gettext/rails.rb:404
46
+ #: lib/gettext/rails.rb:361
94
47
  msgid "half a minute"
95
48
  msgstr "30秒前後"
96
49
 
97
- #: lib/gettext/rails.rb:404
50
+ #: lib/gettext/rails.rb:361
98
51
  msgid "less than a minute"
99
52
  msgstr "1分未満"
100
53
 
101
- #: lib/gettext/rails.rb:405
54
+ #: lib/gettext/rails.rb:362
102
55
  msgid "1 minute"
103
56
  msgid_plural "%{num} minutes"
104
57
  msgstr[0] "1分"
105
58
  msgstr[1] "%{num}分"
106
59
 
107
- #: lib/gettext/rails.rb:406
60
+ #: lib/gettext/rails.rb:363
108
61
  msgid "about 1 hour"
109
62
  msgid_plural "about %{num} hours"
110
63
  msgstr[0] "約1分"
111
64
  msgstr[1] "約%{num}分"
112
65
 
113
- #: lib/gettext/rails.rb:407
66
+ #: lib/gettext/rails.rb:364
114
67
  msgid "1 day"
115
68
  msgid_plural "%{num} days"
116
69
  msgstr[0] "1日"
117
70
  msgstr[1] "%{num}日"
71
+
72
+ #: lib/gettext/active_record.rb:166
73
+ msgid "%{fn} is not included in the list"
74
+ msgstr "%{fn}は一覧にありません。"
75
+
76
+ #: lib/gettext/active_record.rb:167
77
+ msgid "%{fn} is reserved"
78
+ msgstr "%{fn}は予約されています。"
79
+
80
+ #: lib/gettext/active_record.rb:168
81
+ msgid "%{fn} is invalid"
82
+ msgstr "%{fn}は不正な値です。"
83
+
84
+ #: lib/gettext/active_record.rb:169
85
+ msgid "%{fn} doesn't match confirmation"
86
+ msgstr "%{fn}は確認されませんでした。"
87
+
88
+ #: lib/gettext/active_record.rb:170
89
+ msgid "%{fn} must be accepted"
90
+ msgstr "%{fn}を受諾してください。"
91
+
92
+ #: lib/gettext/active_record.rb:171
93
+ msgid "%{fn} can't be empty"
94
+ msgstr "%{fn}を入力してください。"
95
+
96
+ #: lib/gettext/active_record.rb:172
97
+ msgid "%{fn} can't be blank"
98
+ msgstr "%{fn}を入力してください。"
99
+
100
+ #: lib/gettext/active_record.rb:173
101
+ msgid "%{fn} is too long (maximum is %d characters)"
102
+ msgstr "%{fn}は%d文字以内で入力してください。"
103
+
104
+ #: lib/gettext/active_record.rb:174
105
+ msgid "%{fn} is too short (minimum is %d characters)"
106
+ msgstr "%{fn}は%d文字以上で入力してください。"
107
+
108
+ #: lib/gettext/active_record.rb:175
109
+ msgid "%{fn} is the wrong length (should be %d characters)"
110
+ msgstr "%{fn}は%d文字で入力してください。"
111
+
112
+ #: lib/gettext/active_record.rb:176
113
+ msgid "%{fn} has already been taken"
114
+ msgstr "%{fn}はすでに存在します。"
115
+
116
+ #: lib/gettext/active_record.rb:177
117
+ msgid "%{fn} is not a number"
118
+ msgstr "%{fn}は数値で入力してください。"
data/po/ja/rgettext.po CHANGED
@@ -1,15 +1,15 @@
1
1
  #
2
2
  # po-file for Ruby-GetText-Package
3
3
  #
4
- # Copyright (C) 2002-2005 Masao Mutoh
4
+ # Copyright (C) 2002-2006 Masao Mutoh
5
5
  # This file is distributed under the same license as the Ruby-GetText-Package.
6
6
  #
7
7
  # Masao Mutoh, 2004 - 2006
8
8
  #
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: ruby-gettext 1.6.0\n"
12
- "POT-Creation-Date: 2006-07-08 18:46+0900\n"
11
+ "Project-Id-Version: ruby-gettext 1.8.0\n"
12
+ "POT-Creation-Date: 2006-08-23 00:28+0900\n"
13
13
  "PO-Revision-Date: 2005-12-25 00:05:30+0900\n"
14
14
  "Last-Translator: Masao Mutoh\n"
15
15
  "Language-Team: Japanese\n"
@@ -31,17 +31,17 @@ msgstr ""
31
31
  "ルです。ref.potは最新のPOファイルです。ref.potは通常rgettextから新たに生成さ"
32
32
  "れたものです。"
33
33
 
34
- #: lib/gettext/rmsgmerge.rb:408 lib/gettext/rgettext.rb:133
34
+ #: lib/gettext/rmsgmerge.rb:408 lib/gettext/rgettext.rb:153
35
35
  #: lib/gettext/rmsgfmt.rb:51
36
36
  msgid "Specific options:"
37
37
  msgstr "オプション:"
38
38
 
39
- #: lib/gettext/rmsgmerge.rb:410 lib/gettext/rgettext.rb:135
39
+ #: lib/gettext/rmsgmerge.rb:410 lib/gettext/rgettext.rb:155
40
40
  #: lib/gettext/rmsgfmt.rb:53
41
41
  msgid "write output to specified file"
42
42
  msgstr "出力ファイルを指定します"
43
43
 
44
- #: lib/gettext/rmsgmerge.rb:421 lib/gettext/rgettext.rb:144
44
+ #: lib/gettext/rmsgmerge.rb:421 lib/gettext/rgettext.rb:172
45
45
  #: lib/gettext/rmsgfmt.rb:57
46
46
  msgid "display version information and exit"
47
47
  msgstr "バージョンを表示します"
@@ -58,19 +58,27 @@ msgstr "最新の.potファイルが与えられていません。"
58
58
  msgid "'%{klass}' is ignored."
59
59
  msgstr "'%{klass}' は無視されました。"
60
60
 
61
- #: lib/gettext/rgettext.rb:129
62
- msgid "Usage: %s input.rb [-o output.pot]"
63
- msgstr "使い方: %s input.rb [-o output.pot]"
61
+ #: lib/gettext/rgettext.rb:149
62
+ msgid "Usage: %s input.rb [-r parser.rb] [-o output.pot]"
63
+ msgstr "使い方: %s input.rb [-r parser.rb] [-o output.pot]"
64
64
 
65
- #: lib/gettext/rgettext.rb:131
65
+ #: lib/gettext/rgettext.rb:151
66
66
  msgid "Extract translatable strings from given input files."
67
67
  msgstr "翻訳可能な文字列を入力ファイルから抜き出します。"
68
68
 
69
- #: lib/gettext/rgettext.rb:139
69
+ #: lib/gettext/rgettext.rb:159
70
70
  msgid "File '%s' has already existed."
71
71
  msgstr "ファイル '%s' はすでに存在します。"
72
72
 
73
- #: lib/gettext/rgettext.rb:168 lib/gettext/rmsgfmt.rb:31
73
+ #: lib/gettext/rgettext.rb:164
74
+ msgid "read an option parser"
75
+ msgstr "オプションパーサを呼び出す"
76
+
77
+ #: lib/gettext/rgettext.rb:168
78
+ msgid "run in debugging mode"
79
+ msgstr "デバッグモードで実行する"
80
+
81
+ #: lib/gettext/rgettext.rb:196 lib/gettext/rmsgfmt.rb:31
74
82
  msgid "no input files"
75
83
  msgstr "入力ファイルがありません"
76
84
 
@@ -83,52 +91,26 @@ msgid "Generate binary message catalog from textual translation description."
83
91
  msgstr ""
84
92
  "poファイルからバイナリのメッセージカタログファイル(moファイル)を生成します。"
85
93
 
86
- #: lib/gettext/rails_ext.rb:21
87
- msgid ""
88
- "Called id for nil, which would mistakenly be 4 -- if you really wanted the "
89
- "id of nil, use object_id"
90
- msgstr ""
91
-
92
- #: lib/gettext/rails_ext.rb:27
93
- msgid "You have a nil object when you didn't expect it!"
94
- msgstr ""
95
-
96
- #: lib/gettext/rails_ext.rb:28
97
- msgid ""
98
- "\n"
99
- "You might have expected an instance of %{klass}."
100
- msgstr ""
101
-
102
- #: lib/gettext/rails_ext.rb:29
103
- msgid ""
104
- "\n"
105
- "The error occured while evaluating nil.%{selector}"
106
- msgstr ""
107
-
108
- #: lib/gettext/rails_ext.rb:43
109
- msgid "uninitialized constant %{const}"
110
- msgstr ""
94
+ #: lib/gettext/parser/glade.rb:74
95
+ msgid "`%{file}' is not glade-2.0 format."
96
+ msgstr "`%{file}'はglade-2.0フォーマットではありません。"
111
97
 
112
- #: lib/gettext/parser/activerecord.rb:38
98
+ #: lib/gettext/parser/active_record.rb:39
113
99
  msgid "'%{file}' is not found."
114
100
  msgstr "'%{file}'が見つかりませんでした。"
115
101
 
116
- #: lib/gettext/parser/activerecord.rb:66
102
+ #: lib/gettext/parser/active_record.rb:79
117
103
  msgid "Ignored '%{file}'. Solve dependencies first."
118
104
  msgstr "'%{file}'は無視されました。依存関係を解決してください。"
119
105
 
120
- #: lib/gettext/parser/activerecord.rb:85
106
+ #: lib/gettext/parser/active_record.rb:104
121
107
  msgid "No database is available."
122
108
  msgstr "データベースがありません。"
123
109
 
124
- #: lib/gettext/parser/activerecord.rb:116
110
+ #: lib/gettext/parser/active_record.rb:138
125
111
  msgid "rubygems are not found."
126
112
  msgstr "rubygemsがありません。"
127
113
 
128
- #: lib/gettext/parser/glade.rb:74
129
- msgid "`%{file}' is not glade-2.0 format."
130
- msgstr "`%{file}'はglade-2.0フォーマットではありません。"
131
-
132
114
  #: src/poparser.ry:26 src/poparser.ry:41
133
115
  msgid "Warning: fuzzy message was ignored.\n"
134
116
  msgstr "Warning: fuzzyメッセージは無視されました。\n"