gettext 1.0.0-mswin32 → 1.1.0-mswin32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (301) hide show
  1. data/ChangeLog +193 -0
  2. data/NEWS +51 -1
  3. data/README +29 -11
  4. data/Rakefile +70 -56
  5. data/bin/rgettext +2 -0
  6. data/bin/rmsgfmt +2 -0
  7. data/bin/rmsgmerge +24 -0
  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/es/LC_MESSAGES/rails.mo +0 -0
  13. data/data/locale/es/LC_MESSAGES/rgettext.mo +0 -0
  14. data/data/locale/fr/LC_MESSAGES/rails.mo +0 -0
  15. data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
  16. data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
  17. data/data/locale/ja/LC_MESSAGES/rails.mo +0 -0
  18. data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
  19. data/data/locale/ko/LC_MESSAGES/rails.mo +0 -0
  20. data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
  21. data/data/locale/nl/LC_MESSAGES/rails.mo +0 -0
  22. data/data/locale/nl/LC_MESSAGES/rgettext.mo +0 -0
  23. data/data/locale/pt_BR/LC_MESSAGES/rails.mo +0 -0
  24. data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
  25. data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
  26. data/ext/gettext/gettext/_locale.BAK +86 -0
  27. data/ext/gettext/gettext/_locale.c +1 -1
  28. data/ext/gettext/gettext/_locale.exp +0 -0
  29. data/ext/gettext/gettext/_locale.lib +0 -0
  30. data/ext/gettext/gettext/_locale.obj +0 -0
  31. data/ext/gettext/gettext/_locale.pdb +0 -0
  32. data/ext/gettext/gettext/_locale.so +0 -0
  33. data/ext/gettext/gettext/mkmf.log +4 -4
  34. data/ext/gettext/gettext/vc70.pdb +0 -0
  35. data/lib/_locale.so +0 -0
  36. data/lib/gettext.rb +17 -4
  37. data/lib/gettext/cgi.rb +34 -19
  38. data/lib/gettext/locale.rb +3 -13
  39. data/lib/gettext/locale_default.rb +2 -2
  40. data/lib/gettext/locale_win32.rb +27 -7
  41. data/lib/gettext/mo.rb +6 -1
  42. data/lib/gettext/parser/activerecord.rb +115 -0
  43. data/lib/gettext/parser/glade.rb +3 -1
  44. data/lib/gettext/parser/ruby.rb +56 -57
  45. data/lib/gettext/poparser.rb +297 -0
  46. data/lib/gettext/rails.rb +161 -3
  47. data/lib/gettext/rgettext.rb +19 -9
  48. data/lib/gettext/rmsgfmt.rb +95 -363
  49. data/lib/gettext/rmsgmerge.rb +381 -0
  50. data/lib/gettext/string.rb +26 -0
  51. data/lib/gettext/textdomain.rb +21 -18
  52. data/lib/gettext/utils.rb +55 -0
  53. data/lib/gettext/version.rb +1 -1
  54. data/po/cs/rails.po +83 -0
  55. data/po/cs/rgettext.po +104 -0
  56. data/po/de/rails.po +79 -0
  57. data/po/de/rgettext.po +72 -21
  58. data/po/es/rails.po +80 -0
  59. data/po/es/rgettext.po +75 -19
  60. data/po/fr/rails.po +81 -0
  61. data/po/fr/rgettext.po +75 -19
  62. data/po/it/rgettext.po +68 -17
  63. data/po/ja/rails.po +78 -0
  64. data/po/ja/rgettext.po +71 -20
  65. data/po/ko/rails.po +77 -0
  66. data/po/ko/rgettext.po +74 -22
  67. data/po/nl/rails.po +80 -0
  68. data/po/nl/rgettext.po +102 -0
  69. data/po/pt_BR/rails.po +79 -0
  70. data/po/pt_BR/rgettext.po +77 -24
  71. data/po/rails.pot +80 -0
  72. data/po/rgettext.pot +63 -13
  73. data/po/sv/rgettext.po +63 -15
  74. data/samples/cgi/cookie.cgi +5 -0
  75. data/samples/cgi/helloerb1.cgi +4 -0
  76. data/samples/cgi/helloerb2.cgi +5 -0
  77. data/samples/cgi/index.cgi +5 -0
  78. data/samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo +0 -0
  79. data/samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo +0 -0
  80. data/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo +0 -0
  81. data/samples/cgi/locale/cs/LC_MESSAGES/main.mo +0 -0
  82. data/samples/cgi/locale/fr/LC_MESSAGES/main.mo +0 -0
  83. data/samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo +0 -0
  84. data/samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo +0 -0
  85. data/samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo +0 -0
  86. data/samples/cgi/locale/ko/LC_MESSAGES/main.mo +0 -0
  87. data/samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo +0 -0
  88. data/samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo +0 -0
  89. data/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo +0 -0
  90. data/samples/cgi/locale/nl/LC_MESSAGES/main.mo +0 -0
  91. data/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo +0 -0
  92. data/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo +0 -0
  93. data/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo +0 -0
  94. data/samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo +0 -0
  95. data/samples/cgi/po/cs/helloerb1.po +66 -0
  96. data/samples/cgi/po/cs/helloerb2.po +52 -0
  97. data/samples/cgi/po/cs/hellolib.po +25 -0
  98. data/samples/cgi/po/cs/main.po +78 -0
  99. data/samples/cgi/po/fr/main.po +8 -8
  100. data/samples/cgi/po/ko/helloerb1.po +2 -3
  101. data/samples/cgi/po/ko/helloerb2.po +1 -2
  102. data/samples/cgi/po/ko/hellolib.po +1 -2
  103. data/samples/cgi/po/ko/main.po +2 -3
  104. data/samples/cgi/po/nl/helloerb1.po +60 -0
  105. data/samples/cgi/po/nl/helloerb2.po +52 -0
  106. data/samples/cgi/po/nl/hellolib.po +24 -0
  107. data/samples/cgi/po/nl/main.po +76 -0
  108. data/samples/cgi/po/pt_BR/helloerb1.po +59 -0
  109. data/samples/cgi/po/pt_BR/helloerb2.po +51 -0
  110. data/samples/cgi/po/pt_BR/hellolib.po +22 -0
  111. data/samples/cgi/po/pt_BR/main.po +75 -0
  112. data/samples/locale/cs/LC_MESSAGES/hello.mo +0 -0
  113. data/samples/locale/cs/LC_MESSAGES/hello2.mo +0 -0
  114. data/samples/locale/cs/LC_MESSAGES/hello_noop.mo +0 -0
  115. data/samples/locale/cs/LC_MESSAGES/hello_plural.mo +0 -0
  116. data/samples/locale/cs/LC_MESSAGES/helloglade2.mo +0 -0
  117. data/samples/locale/cs/LC_MESSAGES/hellogtk.mo +0 -0
  118. data/samples/locale/cs/LC_MESSAGES/hellotk.mo +0 -0
  119. data/samples/locale/fr/LC_MESSAGES/helloglade2.mo +0 -0
  120. data/samples/locale/ko/LC_MESSAGES/hello.mo +0 -0
  121. data/samples/locale/ko/LC_MESSAGES/hello2.mo +0 -0
  122. data/samples/locale/ko/LC_MESSAGES/hello_noop.mo +0 -0
  123. data/samples/locale/ko/LC_MESSAGES/hello_plural.mo +0 -0
  124. data/samples/locale/ko/LC_MESSAGES/helloglade2.mo +0 -0
  125. data/samples/locale/ko/LC_MESSAGES/hellogtk.mo +0 -0
  126. data/samples/locale/ko/LC_MESSAGES/hellotk.mo +0 -0
  127. data/samples/locale/nl/LC_MESSAGES/hello.mo +0 -0
  128. data/samples/locale/nl/LC_MESSAGES/hello2.mo +0 -0
  129. data/samples/locale/nl/LC_MESSAGES/hello_noop.mo +0 -0
  130. data/samples/locale/nl/LC_MESSAGES/hello_plural.mo +0 -0
  131. data/samples/locale/nl/LC_MESSAGES/helloglade2.mo +0 -0
  132. data/samples/locale/nl/LC_MESSAGES/hellogtk.mo +0 -0
  133. data/samples/locale/nl/LC_MESSAGES/hellotk.mo +0 -0
  134. data/samples/locale/pt_BR/LC_MESSAGES/hello.mo +0 -0
  135. data/samples/locale/pt_BR/LC_MESSAGES/hello2.mo +0 -0
  136. data/samples/locale/pt_BR/LC_MESSAGES/hello_noop.mo +0 -0
  137. data/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo +0 -0
  138. data/samples/locale/pt_BR/LC_MESSAGES/helloglade2.mo +0 -0
  139. data/samples/locale/pt_BR/LC_MESSAGES/hellogtk.mo +0 -0
  140. data/samples/locale/pt_BR/LC_MESSAGES/hellotk.mo +0 -0
  141. data/samples/po/cs/hello.po +23 -0
  142. data/samples/po/cs/hello2.po +31 -0
  143. data/samples/po/cs/hello_noop.po +27 -0
  144. data/samples/po/cs/hello_plural.po +26 -0
  145. data/samples/po/cs/helloglade2.po +37 -0
  146. data/samples/po/cs/hellogtk.po +23 -0
  147. data/samples/po/cs/hellotk.po +23 -0
  148. data/samples/po/fr/helloglade2.po +2 -2
  149. data/samples/po/hello.pot +1 -0
  150. data/samples/po/hello2.pot +1 -0
  151. data/samples/po/hello_noop.pot +2 -1
  152. data/samples/po/hello_plural.pot +6 -2
  153. data/samples/po/helloglade2.pot +8 -3
  154. data/samples/po/hellotk.pot +4 -0
  155. data/samples/po/ko/hello.po +1 -2
  156. data/samples/po/ko/hello2.po +1 -2
  157. data/samples/po/ko/hello_noop.po +1 -2
  158. data/samples/po/ko/hello_plural.po +1 -2
  159. data/samples/po/ko/helloglade2.po +2 -2
  160. data/samples/po/ko/hellogtk.po +1 -2
  161. data/samples/po/ko/hellotk.po +1 -2
  162. data/samples/po/nl/hello.po +24 -0
  163. data/samples/po/nl/hello2.po +32 -0
  164. data/samples/po/nl/hello_noop.po +28 -0
  165. data/samples/po/nl/hello_plural.po +26 -0
  166. data/samples/po/nl/helloglade2.po +31 -0
  167. data/samples/po/nl/hellogtk.po +24 -0
  168. data/samples/po/nl/hellotk.po +24 -0
  169. data/samples/po/pt_BR/hello.po +6 -5
  170. data/samples/po/pt_BR/hello2.po +6 -5
  171. data/samples/po/pt_BR/hello_noop.po +6 -5
  172. data/samples/po/pt_BR/hello_plural.po +6 -6
  173. data/samples/po/pt_BR/helloglade2.po +6 -5
  174. data/samples/po/pt_BR/hellogtk.po +6 -5
  175. data/samples/po/pt_BR/hellotk.po +6 -5
  176. data/samples/rails/README +21 -15
  177. data/samples/rails/Rakefile +10 -1
  178. data/samples/rails/app/controllers/application.rb +10 -18
  179. data/samples/rails/app/controllers/blog_controller.rb +1 -5
  180. data/samples/rails/app/helpers/blog_helper.rb +1 -1
  181. data/samples/rails/app/models/article.rb +15 -0
  182. data/samples/rails/app/views/blog/_form.rhtml +2 -2
  183. data/samples/rails/config/boot.rb +17 -0
  184. data/samples/rails/config/database.yml +6 -4
  185. data/samples/rails/config/environment.rb +40 -75
  186. data/samples/rails/config/environments/development.rb +12 -7
  187. data/samples/rails/config/environments/production.rb +17 -6
  188. data/samples/rails/config/environments/test.rb +8 -6
  189. data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
  190. data/samples/rails/locale/cs/LC_MESSAGES/gettext_plugin.mo +0 -0
  191. data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
  192. data/samples/rails/locale/de/LC_MESSAGES/gettext_plugin.mo +0 -0
  193. data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
  194. data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
  195. data/samples/rails/locale/es/LC_MESSAGES/gettext_plugin.mo +0 -0
  196. data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
  197. data/samples/rails/locale/fr/LC_MESSAGES/{lang_helper.mo → gettext_plugin.mo} +0 -0
  198. data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
  199. data/samples/rails/locale/ja/LC_MESSAGES/{lang_helper.mo → gettext_plugin.mo} +0 -0
  200. data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
  201. data/samples/rails/locale/ko/LC_MESSAGES/gettext_plugin.mo +0 -0
  202. data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
  203. data/samples/rails/locale/nl/LC_MESSAGES/gettext_plugin.mo +0 -0
  204. data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
  205. data/samples/rails/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo +0 -0
  206. data/samples/rails/po/blog.pot +57 -37
  207. data/samples/rails/po/cs/blog.po +116 -0
  208. data/samples/rails/po/cs/gettext_plugin.po +29 -0
  209. data/samples/rails/po/de/blog.po +70 -51
  210. data/samples/rails/po/de/{lang_helper.po → gettext_plugin.po} +4 -5
  211. data/samples/rails/po/en/blog.po +111 -0
  212. data/samples/rails/po/es/blog.po +67 -47
  213. data/samples/rails/po/es/{lang_helper.po → gettext_plugin.po} +5 -5
  214. data/samples/rails/po/fr/blog.po +65 -45
  215. data/samples/rails/po/fr/{lang_helper.po → gettext_plugin.po} +4 -4
  216. data/samples/rails/po/{lang_helper.pot → gettext_plugin.pot} +4 -4
  217. data/samples/rails/po/ja/blog.po +64 -44
  218. data/samples/rails/po/ja/{lang_helper.po → gettext_plugin.po} +4 -4
  219. data/samples/rails/po/ko/blog.po +65 -46
  220. data/samples/rails/po/ko/{lang_helper.po → gettext_plugin.po} +5 -6
  221. data/samples/rails/po/nl/blog.po +115 -0
  222. data/samples/rails/po/nl/gettext_plugin.po +28 -0
  223. data/samples/rails/po/pt_BR/blog.po +109 -0
  224. data/samples/rails/po/pt_BR/gettext_plugin.po +27 -0
  225. data/samples/rails/public/images/rails.png +0 -0
  226. data/samples/rails/public/index.html +272 -71
  227. data/samples/rails/public/javascripts/controls.js +441 -166
  228. data/samples/rails/public/javascripts/dragdrop.js +261 -279
  229. data/samples/rails/public/javascripts/effects.js +657 -277
  230. data/samples/rails/public/javascripts/prototype.js +911 -223
  231. data/samples/rails/public/robots.txt +1 -0
  232. data/samples/rails/public/stylesheets/scaffold.css +1 -1
  233. data/samples/rails/script/about +3 -0
  234. data/samples/rails/script/breakpointer +3 -4
  235. data/samples/rails/script/console +3 -23
  236. data/samples/rails/script/destroy +3 -7
  237. data/samples/rails/script/generate +3 -7
  238. data/samples/rails/script/performance/benchmarker +3 -0
  239. data/samples/rails/script/performance/profiler +3 -0
  240. data/samples/rails/script/plugin +3 -0
  241. data/samples/rails/script/process/reaper +3 -0
  242. data/samples/rails/script/process/spawner +3 -0
  243. data/samples/rails/script/process/spinner +3 -0
  244. data/samples/rails/script/runner +3 -29
  245. data/samples/rails/script/server +3 -49
  246. data/samples/rails/vendor/plugins/gettext/init.rb +19 -0
  247. data/samples/rails/vendor/{lang_helper.rb → plugins/gettext/lib/gettext_plugin.rb} +15 -11
  248. data/src/poparser.ry +171 -0
  249. data/test/gettext_runner.rb +3 -1
  250. data/test/gettext_test.rb +56 -31
  251. data/test/gettext_test_cgi.rb +12 -0
  252. data/test/gettext_test_parser.rb +3 -0
  253. data/test/gettext_test_string.rb +14 -0
  254. data/test/locale/cr/LC_MESSAGES/plural.mo +0 -0
  255. data/test/locale/da/LC_MESSAGES/plural.mo +0 -0
  256. data/test/locale/da/LC_MESSAGES/plural_error.mo +0 -0
  257. data/test/locale/fr/LC_MESSAGES/plural.mo +0 -0
  258. data/test/locale/fr/LC_MESSAGES/plural_error.mo +0 -0
  259. data/test/locale/ir/LC_MESSAGES/plural.mo +0 -0
  260. data/test/locale/la/LC_MESSAGES/plural.mo +0 -0
  261. data/test/locale/li/LC_MESSAGES/plural.mo +0 -0
  262. data/test/locale/po/LC_MESSAGES/plural.mo +0 -0
  263. data/test/locale/sl/LC_MESSAGES/plural.mo +0 -0
  264. data/test/po/cr/plural.po +3 -3
  265. data/test/po/da/plural.po +2 -2
  266. data/test/po/da/plural_error.po +2 -1
  267. data/test/po/fr/plural.po +2 -2
  268. data/test/po/fr/plural_error.po +2 -1
  269. data/test/po/ir/plural.po +3 -3
  270. data/test/po/la/plural.po +3 -3
  271. data/test/po/li/plural.po +3 -3
  272. data/test/po/po/plural.po +3 -3
  273. data/test/po/sl/plural.po +4 -4
  274. data/test/test.sh +1 -0
  275. data/test/test_rubyparser.rb +20 -0
  276. data/test/{test_rubyparser_n.rb → test_rubyparser_N.rb} +0 -0
  277. metadata +163 -43
  278. data/README.ja +0 -115
  279. data/data/locale/de/LC_MESSAGES/rmsgfmt.mo +0 -0
  280. data/data/locale/es/LC_MESSAGES/rmsgfmt.mo +0 -0
  281. data/data/locale/fr/LC_MESSAGES/rmsgfmt.mo +0 -0
  282. data/data/locale/it/LC_MESSAGES/rmsgfmt.mo +0 -0
  283. data/data/locale/ja/LC_MESSAGES/rmsgfmt.mo +0 -0
  284. data/data/locale/ko/LC_MESSAGES/rmsgfmt.mo +0 -0
  285. data/data/locale/pt_BR/LC_MESSAGES/rmsgfmt.mo +0 -0
  286. data/data/locale/sv/LC_MESSAGES/rmsgfmt.mo +0 -0
  287. data/gettext-1.0.0-mswin32.gem +0 -0
  288. data/po/de/rmsgfmt.po +0 -45
  289. data/po/es/rmsgfmt.po +0 -43
  290. data/po/fr/rmsgfmt.po +0 -43
  291. data/po/it/rmsgfmt.po +0 -44
  292. data/po/ja/rmsgfmt.po +0 -43
  293. data/po/ko/rmsgfmt.po +0 -40
  294. data/po/pt_BR/rmsgfmt.po +0 -42
  295. data/po/rmsgfmt.pot +0 -40
  296. data/po/sv/rmsgfmt.po +0 -43
  297. data/samples/rails/locale/de/LC_MESSAGES/lang_helper.mo +0 -0
  298. data/samples/rails/locale/es/LC_MESSAGES/lang_helper.mo +0 -0
  299. data/samples/rails/locale/ko/LC_MESSAGES/lang_helper.mo +0 -0
  300. data/samples/rails/log/development.log +0 -378
  301. data/src/rmsgfmt.ry +0 -233
data/po/ja/rails.po ADDED
@@ -0,0 +1,78 @@
1
+ #
2
+ # a po-file for Ruby-GetText-Package and Ruby on Rails.
3
+ #
4
+ # Copyright (C) 2005 Masao Mutoh
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Masao Mutoh, 2005.
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: ruby-gettext 1.1.0\n"
13
+ "POT-Creation-Date: 2005-12-20 03:03+0900\n"
14
+ "PO-Revision-Date: 2005-12-17 14:33+0900\n"
15
+ "Last-Translator: Masao Mutoh\n"
16
+ "Language-Team: Japanese\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Plural-Forms: nplurals=1; plural=0;\n"
21
+
22
+ #: lib/gettext/rails.rb:100
23
+ msgid "%{fn} is not included in the list"
24
+ msgstr "%{fn}は一覧にありません。"
25
+
26
+ #: lib/gettext/rails.rb:101
27
+ msgid "%{fn} is reserved"
28
+ msgstr "%{fn}は予約されています。"
29
+
30
+ #: lib/gettext/rails.rb:102
31
+ msgid "%{fn} is invalid"
32
+ msgstr "%{fn}は不正な値です。"
33
+
34
+ #: lib/gettext/rails.rb:103
35
+ msgid "%{fn} doesn't match confirmation"
36
+ msgstr "%{fn}は確認されませんでした。"
37
+
38
+ #: lib/gettext/rails.rb:104
39
+ msgid "%{fn} must be accepted"
40
+ msgstr "%{fn}は許可されていません。"
41
+
42
+ #: lib/gettext/rails.rb:105
43
+ msgid "%{fn} can't be empty"
44
+ msgstr "%{fn}を入力してください。"
45
+
46
+ #: lib/gettext/rails.rb:106
47
+ msgid "%{fn} can't be blank"
48
+ msgstr "%{fn}を入力してください。"
49
+
50
+ #: lib/gettext/rails.rb:107
51
+ msgid "%{fn} is too long (max is %d characters)"
52
+ msgstr "%{fn}は%d文字以下で入力してください。"
53
+
54
+ #: lib/gettext/rails.rb:108
55
+ msgid "%{fn} is too short (min is %d characters)"
56
+ msgstr "%{fn}は%d文字以上で入力してください。"
57
+
58
+ #: lib/gettext/rails.rb:109
59
+ msgid "%{fn} is the wrong length (should be %d characters)"
60
+ msgstr "%{fn}は%d文字にしてください。"
61
+
62
+ #: lib/gettext/rails.rb:110
63
+ msgid "%{fn} has already been taken"
64
+ msgstr "%{fn}はすでに存在します。"
65
+
66
+ #: lib/gettext/rails.rb:111
67
+ msgid "%{fn} is not a number"
68
+ msgstr "%{fn}は数値で入力してください。"
69
+
70
+ #: lib/gettext/rails.rb:176
71
+ msgid "%{num} error prohibited this %{record} from being saved"
72
+ msgid_plural "%{num} errors prohibited this %{record} from being saved"
73
+ msgstr[0] "%{record}に%{num}つのエラーが発生しました。"
74
+
75
+ #: lib/gettext/rails.rb:179
76
+ msgid "There were problems with the following field:"
77
+ msgid_plural "There were problems with the following fields:"
78
+ msgstr[0] "次の項目を確認してください。"
data/po/ja/rgettext.po CHANGED
@@ -1,49 +1,100 @@
1
1
  #
2
- # po-file for rgettext
2
+ # po-file for Ruby-GetText-Package
3
3
  #
4
- # Copyright (C) Yasushi SHOJI, Masao Mutoh
5
- # Yasushi SHOJI, 2001.
6
- # Masao Mutoh, 2001-2005.
4
+ # Copyright (C) 2002-2005 Masao Mutoh
7
5
  # This file is distributed under the same license as the Ruby-GetText-Package.
8
6
  #
9
7
  # Masao Mutoh, 2004, 2005
10
8
  #
11
9
  msgid ""
12
10
  msgstr ""
13
- "Project-Id-Version: rgettext 1.0.0\n"
14
- "POT-Creation-Date: 2005-08-29 02:00+0900\n"
15
- "PO-Revision-Date: 2002-10-22 22:41:34+0900\n"
11
+ "Project-Id-Version: ruby-gettext 1.1.0\n"
12
+ "POT-Creation-Date: 2005-12-20 03:03+0900\n"
13
+ "PO-Revision-Date: 2005-12-25 00:05:30+0900\n"
16
14
  "Last-Translator: Masao Mutoh\n"
17
15
  "Language-Team: Japanese\n"
18
16
  "MIME-Version: 1.0\n"
19
17
  "Content-Type: text/plain; charset=UTF-8\n"
20
18
  "Content-Transfer-Encoding: 8bit\n"
21
19
 
22
- #: lib/gettext/rgettext.rb:118
23
- msgid "Usage: %s input.rb [-o output.pot]"
24
- msgstr "使い方: %s input.rb [-o output.pot]"
20
+ #: lib/gettext/rmsgmerge.rb:300
21
+ msgid "Usage: %s def.po ref.pot [-o output.pot]"
22
+ msgstr "使い方: %s def.po ref.pot [-o output.pot]"
25
23
 
26
- #: lib/gettext/rgettext.rb:120
27
- msgid "Extract translatable strings from given input files."
28
- msgstr "翻訳可能な文字列を入力ファイルから抜き出します。"
24
+ #: lib/gettext/rmsgmerge.rb:302
25
+ msgid ""
26
+ "Merges two Uniforum style .po files together. The def.po file is an existing "
27
+ "PO file with translations. The ref.pot file is the last created PO file with "
28
+ "up-to-date source references. ref.pot is generally created by rgettext."
29
+ msgstr ""
30
+ "2つの.poファイルをマージします。def.poファイルはすでにある翻訳済みのPOファイ"
31
+ "ルです。ref.potは最新のPOファイルです。ref.potは通常rgettextから新たに生成さ"
32
+ "れたものです。"
29
33
 
30
- #: lib/gettext/rgettext.rb:122
34
+ #: lib/gettext/rmsgmerge.rb:304 lib/gettext/rgettext.rb:132
35
+ #: lib/gettext/rmsgfmt.rb:50
31
36
  msgid "Specific options:"
32
37
  msgstr "オプション:"
33
38
 
34
- #: lib/gettext/rgettext.rb:124
39
+ #: lib/gettext/rmsgmerge.rb:306 lib/gettext/rgettext.rb:134
40
+ #: lib/gettext/rmsgfmt.rb:52
35
41
  msgid "write output to specified file"
36
42
  msgstr "出力ファイルを指定します"
37
43
 
44
+ #: lib/gettext/rmsgmerge.rb:315 lib/gettext/rgettext.rb:143
45
+ #: lib/gettext/rmsgfmt.rb:56
46
+ msgid "display version information and exit"
47
+ msgstr "バージョンを表示します"
48
+
49
+ #: lib/gettext/rmsgmerge.rb:336
50
+ msgid "definition po is not given."
51
+ msgstr "翻訳済みの.poファイルが与えられていません。"
52
+
53
+ #: lib/gettext/rmsgmerge.rb:338
54
+ msgid "reference pot is not given."
55
+ msgstr "最新の.potファイルが与えられていません。"
56
+
57
+ #: lib/gettext/rgettext.rb:43
58
+ msgid "'%{klass}' is ignored."
59
+ msgstr "'%{klass}' は無視されました。"
60
+
38
61
  #: lib/gettext/rgettext.rb:128
62
+ msgid "Usage: %s input.rb [-o output.pot]"
63
+ msgstr "使い方: %s input.rb [-o output.pot]"
64
+
65
+ #: lib/gettext/rgettext.rb:130
66
+ msgid "Extract translatable strings from given input files."
67
+ msgstr "翻訳可能な文字列を入力ファイルから抜き出します。"
68
+
69
+ #: lib/gettext/rgettext.rb:138
39
70
  msgid "File '%s' has already existed."
40
71
  msgstr "ファイル '%s' はすでに存在します。"
41
72
 
42
- #: lib/gettext/rgettext.rb:133
43
- msgid "display version information and exit"
44
- msgstr "バージョンを表示します"
45
-
46
- #: lib/gettext/rgettext.rb:156
73
+ #: lib/gettext/rgettext.rb:166 lib/gettext/rmsgfmt.rb:30
47
74
  msgid "no input files"
48
75
  msgstr "入力ファイルがありません"
49
76
 
77
+ #: lib/gettext/rmsgfmt.rb:46
78
+ msgid "Usage: %s input.po [-o output.mo]"
79
+ msgstr "使い方: %s input.po [-o output.mo]"
80
+
81
+ #: lib/gettext/rmsgfmt.rb:48
82
+ msgid "Generate binary message catalog from textual translation description."
83
+ msgstr ""
84
+ "poファイルからバイナリのメッセージカタログファイル(moファイル)を生成します。"
85
+
86
+ #: lib/gettext/parser/activerecord.rb:27
87
+ msgid "'%{file}' is not found."
88
+ msgstr "'%{file}'が見つかりませんでした。"
89
+
90
+ #: lib/gettext/parser/activerecord.rb:72
91
+ msgid "Ignored '%{file}'. Solve dependencies first."
92
+ msgstr "'%{file}'は無視されました。依存関係を解決してください。"
93
+
94
+ #: lib/gettext/parser/activerecord.rb:90
95
+ msgid "No database is available."
96
+ msgstr "データベースがありません。"
97
+
98
+ #: lib/gettext/parser/glade.rb:74
99
+ msgid "%s is not glade-2.0 format."
100
+ msgstr "%sはglade-2.0フォーマットではありません。"
data/po/ko/rails.po ADDED
@@ -0,0 +1,77 @@
1
+ #
2
+ # a po-file for Ruby-GetText-Package and Ruby on Rails.
3
+ #
4
+ # Copyright (C) 2005 Masao Mutoh
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
8
+ #
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: ruby-gettext 1.1.0\n"
12
+ "POT-Creation-Date: 2005-12-17 14:56+0900\n"
13
+ "PO-Revision-Date: 2005-12-23 02:00+0900\n"
14
+ "Last-Translator: Gyoung-Yoon Noh <nohmad@gmail.com>\n"
15
+ "Language-Team: Korean\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
+
21
+ #: lib/gettext/rails.rb:100
22
+ msgid "%{fn} is not included in the list"
23
+ msgstr "%{fn}은 이 목록에 포함되어 있지 않습니다"
24
+
25
+ #: lib/gettext/rails.rb:101
26
+ msgid "%{fn} is reserved"
27
+ msgstr "%{fn}은 예약되어 있습니다"
28
+
29
+ #: lib/gettext/rails.rb:102
30
+ msgid "%{fn} is invalid"
31
+ msgstr "%{fn}은 유효하지 않습니다"
32
+
33
+ #: lib/gettext/rails.rb:103
34
+ msgid "%{fn} doesn't match confirmation"
35
+ msgstr "%{fn}이 확인된 부분과 일치하지 않습니다"
36
+
37
+ #: lib/gettext/rails.rb:104
38
+ msgid "%{fn} must be accepted"
39
+ msgstr "%{fn}은 반드시 받아들여져야 합니다"
40
+
41
+ #: lib/gettext/rails.rb:105
42
+ msgid "%{fn} can't be empty"
43
+ msgstr "%{fn} 값이 비어 있지 않아야 합니다"
44
+
45
+ #: lib/gettext/rails.rb:106
46
+ msgid "%{fn} can't be blank"
47
+ msgstr "%{fn}은 공란이 아니어야 합니다"
48
+
49
+ #: lib/gettext/rails.rb:107
50
+ msgid "%{fn} is too long (max is %d characters)"
51
+ msgstr "%{fn}은 최대 허용 문자 수인 %d를 초과했습니다"
52
+
53
+ #: lib/gettext/rails.rb:108
54
+ msgid "%{fn} is too short (min is %d characters)"
55
+ msgstr "%{fn}은 최소 허용 문자 수인 %d 미만입니다"
56
+
57
+ #: lib/gettext/rails.rb:109
58
+ msgid "%{fn} is the wrong length (should be %d characters)"
59
+ msgstr "%{fn}의 문자 수가 잘못되었습니다. %d 문자여야 합니다"
60
+
61
+ #: lib/gettext/rails.rb:110
62
+ msgid "%{fn} has already been taken"
63
+ msgstr "%{fn}은 이미 받아들여졌습니다"
64
+
65
+ #: lib/gettext/rails.rb:111
66
+ msgid "%{fn} is not a number"
67
+ msgstr "%{fn}은 숫자가 아닙니다"
68
+
69
+ #: lib/gettext/rails.rb:176
70
+ msgid "%{num} error prohibited this %{record} from being saved"
71
+ msgid_plural "%{num} errors prohibited this %{record} from being saved"
72
+ msgstr[0] "%{num} 에러로 인해 %{record}이(가) 저장되지 않았습니다"
73
+
74
+ #: lib/gettext/rails.rb:179
75
+ msgid "There were problems with the following field:"
76
+ msgid_plural "There were problems with the following fields:"
77
+ msgstr[0] "다음 항목에 문제가 있습니다:"
data/po/ko/rgettext.po CHANGED
@@ -1,46 +1,98 @@
1
1
  #
2
- # po-file for rgettext
2
+ # po-file for Ruby-GetText-Package
3
3
  #
4
- # Copyright (C) Yasushi SHOJI, Masao Mutoh
5
- # Yasushi SHOJI, 2001.
6
- # Masao Mutoh, 2001-2004.
4
+ # Copyright (C) 2002-2004 Masao Mutoh
7
5
  # This file is distributed under the same license as the Ruby-GetText-Package.
8
6
  #
9
7
  msgid ""
10
8
  msgstr ""
11
- "Project-Id-Version: rgettext-1.0.0\n"
12
- "POT-Creation-Date: 2005-08-29 01:45+0900\n"
13
- "PO-Revision-Date: 2005-08-29 08:35+0900\n"
9
+ "Project-Id-Version: ruby-gettext 1.1.0\n"
10
+ "POT-Creation-Date: 2005-12-17 14:56+0900\n"
11
+ "PO-Revision-Date: 2005-12-23 02:00+0900\n"
14
12
  "Last-Translator: Gyoung-Yoon Noh <nohmad@gmail.com>\n"
15
13
  "Language-Team: Korean\n"
16
14
  "MIME-Version: 1.0\n"
17
15
  "Content-Type: text/plain; charset=UTF-8\n"
18
16
  "Content-Transfer-Encoding: 8bit\n"
19
17
 
20
- #: lib/gettext/rgettext.rb:118
21
- msgid "Usage: %s input.rb [-o output.pot]"
22
- msgstr "사용법: %s input.rb [-o output.pot]"
18
+ #: lib/gettext/rmsgmerge.rb:300
19
+ msgid "Usage: %s def.po ref.pot [-o output.pot]"
20
+ msgstr "사용법: %s def.po ref.pot [-o output.pot]"
23
21
 
24
- #: lib/gettext/rgettext.rb:120
25
- msgid "Extract translatable strings from given input files."
26
- msgstr "주어진 입력 파일들로부터 번역할 있는 문자열을 추출합니다."
22
+ #: lib/gettext/rmsgmerge.rb:302
23
+ msgid ""
24
+ "Merges two Uniforum style .po files together. The def.po file is an existing "
25
+ "PO file with translations. The ref.pot file is the last created PO file with "
26
+ "up-to-date source references. ref.pot is generally created by rgettext."
27
+ msgstr ""
28
+ "2개의 유니포럼 스타일의 .po 파일들을 서로 병합합니다. def.po 파일은 번역을 "
29
+ "가진 존재하는 PO 파일입니다. ref.pot 파일은 최신의 소스 참조를 가진 "
30
+ "마지막으로 생성된 PO 파일입니다. ref.pot는 일반적으로 rgettext에 의해 "
31
+ "생성됩니다."
27
32
 
28
- #: lib/gettext/rgettext.rb:122
33
+ #: lib/gettext/rmsgmerge.rb:304 lib/gettext/rgettext.rb:132
34
+ #: lib/gettext/rmsgfmt.rb:50
29
35
  msgid "Specific options:"
30
36
  msgstr "특별한 옵션들:"
31
37
 
32
- #: lib/gettext/rgettext.rb:124
38
+ #: lib/gettext/rmsgmerge.rb:306 lib/gettext/rgettext.rb:134
39
+ #: lib/gettext/rmsgfmt.rb:52
33
40
  msgid "write output to specified file"
34
- msgstr "지정한 파일에 출력 내용을 저장합니다."
41
+ msgstr "지정한 파일에 출력 내용을 저장합니다"
42
+
43
+ #: lib/gettext/rmsgmerge.rb:315 lib/gettext/rgettext.rb:143
44
+ #: lib/gettext/rmsgfmt.rb:56
45
+ msgid "display version information and exit"
46
+ msgstr "버전 정보를 표시하고 빠져나갑니다"
47
+
48
+ #: lib/gettext/rmsgmerge.rb:336
49
+ msgid "definition po is not given."
50
+ msgstr "po 정의가 주어지지 않았습니다."
51
+
52
+ #: lib/gettext/rmsgmerge.rb:338
53
+ msgid "reference pot is not given."
54
+ msgstr "참조할 pot 파일이 주어지지 않았습니다."
55
+
56
+ #: lib/gettext/rgettext.rb:43
57
+ msgid "'%{klass}' is ignored."
58
+ msgstr "'%{klass}'가 무시되었습니다."
35
59
 
36
60
  #: lib/gettext/rgettext.rb:128
61
+ msgid "Usage: %s input.rb [-o output.pot]"
62
+ msgstr "사용법: %s input.rb [-o output.pot]"
63
+
64
+ #: lib/gettext/rgettext.rb:130
65
+ msgid "Extract translatable strings from given input files."
66
+ msgstr "주어진 입력 파일들로부터 번역할 수 있는 문자열을 추출합니다."
67
+
68
+ #: lib/gettext/rgettext.rb:138
37
69
  msgid "File '%s' has already existed."
38
70
  msgstr "'%s' 파일이 이미 존재합니다."
39
71
 
40
- #: lib/gettext/rgettext.rb:133
41
- msgid "display version information and exit"
42
- msgstr "버전 정보를 표시하고 빠져나갑니다."
43
-
44
- #: lib/gettext/rgettext.rb:156
72
+ #: lib/gettext/rgettext.rb:166 lib/gettext/rmsgfmt.rb:30
45
73
  msgid "no input files"
46
- msgstr "입력 파일이 없습니다."
74
+ msgstr "입력 파일이 없습니다"
75
+
76
+ #: lib/gettext/rmsgfmt.rb:46
77
+ msgid "Usage: %s input.po [-o output.mo]"
78
+ msgstr "사용법: %s input.po [-o output.mo]"
79
+
80
+ #: lib/gettext/rmsgfmt.rb:48
81
+ msgid "Generate binary message catalog from textual translation description."
82
+ msgstr "텍스트로 된 번역 설명으로부터 이진 메시지 목록을 생성합니다."
83
+
84
+ #: lib/gettext/parser/activerecord.rb:27
85
+ msgid "'%{file}' is not found."
86
+ msgstr "'%{file}'이 발견되지 않았습니다."
87
+
88
+ #: lib/gettext/parser/activerecord.rb:72
89
+ msgid "Ignored '%{file}'. Solve dependencies first."
90
+ msgstr "'%{file}'이 무시되었습니다. 먼저 의존성을 해결하십시요."
91
+
92
+ #: lib/gettext/parser/activerecord.rb:90
93
+ msgid "No database is available."
94
+ msgstr "사용할 수 있는 데이터베이스가 없습니다."
95
+
96
+ #: lib/gettext/parser/glade.rb:74
97
+ msgid "%s is not glade-2.0 format."
98
+ msgstr "%s는 glade-2.0 형식이 아닙니다."
data/po/nl/rails.po ADDED
@@ -0,0 +1,80 @@
1
+ #
2
+ # a po-file for Ruby-GetText-Package and Ruby on Rails.
3
+ #
4
+ # Copyright (C) 2005 Masao Mutoh
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Menno Jonkers <ruby-gettext@jonkers.com>, 2005.
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: ruby-gettext-package 1.1.0\n"
13
+ "POT-Creation-Date: 2001-12-24 01:30:54+0900\n"
14
+ "PO-Revision-Date: 2005-12-19 21:44+0100\n"
15
+ "Last-Translator: Menno Jonkers <ruby-gettext@jonkers.com>\n"
16
+ "Language-Team: Dutch <ruby_gettext@jonkers.com>\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=utf-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
21
+
22
+ #: lib/gettext/rails.rb:100
23
+ msgid "%{fn} is not included in the list"
24
+ msgstr "%{fn} komt niet voor in de lijst"
25
+
26
+ #: lib/gettext/rails.rb:101
27
+ msgid "%{fn} is reserved"
28
+ msgstr "%{fn} is gereserveerd"
29
+
30
+ #: lib/gettext/rails.rb:102
31
+ msgid "%{fn} is invalid"
32
+ msgstr "%{fn} is ongeldig"
33
+
34
+ #: lib/gettext/rails.rb:103
35
+ msgid "%{fn} doesn't match confirmation"
36
+ msgstr "%{fn} komt niet overeen met de bevestiging"
37
+
38
+ #: lib/gettext/rails.rb:104
39
+ msgid "%{fn} must be accepted"
40
+ msgstr "%{fn} moet geaccepteerd worden"
41
+
42
+ #: lib/gettext/rails.rb:105
43
+ msgid "%{fn} can't be empty"
44
+ msgstr "%{fn} mag niet leeg zijn"
45
+
46
+ #: lib/gettext/rails.rb:106
47
+ msgid "%{fn} can't be blank"
48
+ msgstr "%{fn} mag niet leeg zijn"
49
+
50
+ #: lib/gettext/rails.rb:107
51
+ msgid "%{fn} is too long (max is %d characters)"
52
+ msgstr "%{fn} is te lang (maximum is %d tekens)"
53
+
54
+ #: lib/gettext/rails.rb:108
55
+ msgid "%{fn} is too short (min is %d characters)"
56
+ msgstr "%{fn} is te kort (minimum is %d tekens)"
57
+
58
+ #: lib/gettext/rails.rb:109
59
+ msgid "%{fn} is the wrong length (should be %d characters)"
60
+ msgstr "%{fn} heeft een onjuiste lengte (dit moet %d tekens zijn)"
61
+
62
+ #: lib/gettext/rails.rb:110
63
+ msgid "%{fn} has already been taken"
64
+ msgstr "%{fn} is al in gebruik"
65
+
66
+ #: lib/gettext/rails.rb:111
67
+ msgid "%{fn} is not a number"
68
+ msgstr "%{fn} is geen getal"
69
+
70
+ #: lib/gettext/rails.rb:176
71
+ msgid "%{num} error prohibited this %{record} from being saved"
72
+ msgid_plural "%{num} errors prohibited this %{record} from being saved"
73
+ msgstr[0] "door %(num) fout kon dit %{record} niet worden opgeslagen"
74
+ msgstr[1] "door %{num} fouten kon dit %{record} niet worden opgeslagen"
75
+
76
+ #: lib/gettext/rails.rb:179
77
+ msgid "There were problems with the following field:"
78
+ msgid_plural "There were problems with the following fields:"
79
+ msgstr[0] "Er waren problemen met het volgende veld:"
80
+ msgstr[1] "Er waren problemen met de volgende velden:"