gettext 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (288) hide show
  1. data/ChangeLog +194 -0
  2. data/NEWS +49 -0
  3. data/README +28 -9
  4. data/Rakefile +54 -41
  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/lib/gettext.rb +17 -4
  27. data/lib/gettext/cgi.rb +34 -19
  28. data/lib/gettext/locale.rb +3 -13
  29. data/lib/gettext/locale_default.rb +2 -2
  30. data/lib/gettext/locale_win32.rb +27 -7
  31. data/lib/gettext/mo.rb +6 -1
  32. data/lib/gettext/parser/activerecord.rb +115 -0
  33. data/lib/gettext/parser/glade.rb +3 -1
  34. data/lib/gettext/parser/ruby.rb +56 -57
  35. data/lib/gettext/poparser.rb +297 -0
  36. data/lib/gettext/rails.rb +161 -3
  37. data/lib/gettext/rgettext.rb +19 -9
  38. data/lib/gettext/rmsgfmt.rb +7 -275
  39. data/lib/gettext/rmsgmerge.rb +381 -0
  40. data/lib/gettext/string.rb +26 -0
  41. data/lib/gettext/textdomain.rb +21 -18
  42. data/lib/gettext/utils.rb +55 -0
  43. data/lib/gettext/version.rb +1 -1
  44. data/po/cs/rails.po +83 -0
  45. data/po/cs/rgettext.po +104 -0
  46. data/po/de/rails.po +79 -0
  47. data/po/de/rgettext.po +72 -21
  48. data/po/es/rails.po +80 -0
  49. data/po/es/rgettext.po +75 -19
  50. data/po/fr/rails.po +81 -0
  51. data/po/fr/rgettext.po +75 -19
  52. data/po/it/rgettext.po +68 -17
  53. data/po/ja/rails.po +78 -0
  54. data/po/ja/rgettext.po +71 -20
  55. data/po/ko/rails.po +77 -0
  56. data/po/ko/rgettext.po +74 -22
  57. data/po/nl/rails.po +80 -0
  58. data/po/nl/rgettext.po +102 -0
  59. data/po/pt_BR/rails.po +79 -0
  60. data/po/pt_BR/rgettext.po +77 -24
  61. data/po/rails.pot +80 -0
  62. data/po/rgettext.pot +63 -13
  63. data/po/sv/rgettext.po +63 -15
  64. data/samples/cgi/cookie.cgi +5 -0
  65. data/samples/cgi/helloerb1.cgi +4 -0
  66. data/samples/cgi/helloerb2.cgi +5 -0
  67. data/samples/cgi/index.cgi +5 -0
  68. data/samples/cgi/locale/cs/LC_MESSAGES/helloerb1.mo +0 -0
  69. data/samples/cgi/locale/cs/LC_MESSAGES/helloerb2.mo +0 -0
  70. data/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo +0 -0
  71. data/samples/cgi/locale/cs/LC_MESSAGES/main.mo +0 -0
  72. data/samples/cgi/locale/fr/LC_MESSAGES/main.mo +0 -0
  73. data/samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo +0 -0
  74. data/samples/cgi/locale/ko/LC_MESSAGES/helloerb2.mo +0 -0
  75. data/samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo +0 -0
  76. data/samples/cgi/locale/ko/LC_MESSAGES/main.mo +0 -0
  77. data/samples/cgi/locale/nl/LC_MESSAGES/helloerb1.mo +0 -0
  78. data/samples/cgi/locale/nl/LC_MESSAGES/helloerb2.mo +0 -0
  79. data/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo +0 -0
  80. data/samples/cgi/locale/nl/LC_MESSAGES/main.mo +0 -0
  81. data/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb1.mo +0 -0
  82. data/samples/cgi/locale/pt_BR/LC_MESSAGES/helloerb2.mo +0 -0
  83. data/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo +0 -0
  84. data/samples/cgi/locale/pt_BR/LC_MESSAGES/main.mo +0 -0
  85. data/samples/cgi/po/cs/helloerb1.po +66 -0
  86. data/samples/cgi/po/cs/helloerb2.po +52 -0
  87. data/samples/cgi/po/cs/hellolib.po +25 -0
  88. data/samples/cgi/po/cs/main.po +78 -0
  89. data/samples/cgi/po/fr/main.po +8 -8
  90. data/samples/cgi/po/ko/helloerb1.po +2 -3
  91. data/samples/cgi/po/ko/helloerb2.po +1 -2
  92. data/samples/cgi/po/ko/hellolib.po +1 -2
  93. data/samples/cgi/po/ko/main.po +2 -3
  94. data/samples/cgi/po/nl/helloerb1.po +60 -0
  95. data/samples/cgi/po/nl/helloerb2.po +52 -0
  96. data/samples/cgi/po/nl/hellolib.po +24 -0
  97. data/samples/cgi/po/nl/main.po +76 -0
  98. data/samples/cgi/po/pt_BR/helloerb1.po +59 -0
  99. data/samples/cgi/po/pt_BR/helloerb2.po +51 -0
  100. data/samples/cgi/po/pt_BR/hellolib.po +22 -0
  101. data/samples/cgi/po/pt_BR/main.po +75 -0
  102. data/samples/locale/cs/LC_MESSAGES/hello.mo +0 -0
  103. data/samples/locale/cs/LC_MESSAGES/hello2.mo +0 -0
  104. data/samples/locale/cs/LC_MESSAGES/hello_noop.mo +0 -0
  105. data/samples/locale/cs/LC_MESSAGES/hello_plural.mo +0 -0
  106. data/samples/locale/cs/LC_MESSAGES/helloglade2.mo +0 -0
  107. data/samples/locale/cs/LC_MESSAGES/hellogtk.mo +0 -0
  108. data/samples/locale/cs/LC_MESSAGES/hellotk.mo +0 -0
  109. data/samples/locale/fr/LC_MESSAGES/helloglade2.mo +0 -0
  110. data/samples/locale/ko/LC_MESSAGES/hello.mo +0 -0
  111. data/samples/locale/ko/LC_MESSAGES/hello2.mo +0 -0
  112. data/samples/locale/ko/LC_MESSAGES/hello_noop.mo +0 -0
  113. data/samples/locale/ko/LC_MESSAGES/hello_plural.mo +0 -0
  114. data/samples/locale/ko/LC_MESSAGES/helloglade2.mo +0 -0
  115. data/samples/locale/ko/LC_MESSAGES/hellogtk.mo +0 -0
  116. data/samples/locale/ko/LC_MESSAGES/hellotk.mo +0 -0
  117. data/samples/locale/nl/LC_MESSAGES/hello.mo +0 -0
  118. data/samples/locale/nl/LC_MESSAGES/hello2.mo +0 -0
  119. data/samples/locale/nl/LC_MESSAGES/hello_noop.mo +0 -0
  120. data/samples/locale/nl/LC_MESSAGES/hello_plural.mo +0 -0
  121. data/samples/locale/nl/LC_MESSAGES/helloglade2.mo +0 -0
  122. data/samples/locale/nl/LC_MESSAGES/hellogtk.mo +0 -0
  123. data/samples/locale/nl/LC_MESSAGES/hellotk.mo +0 -0
  124. data/samples/locale/pt_BR/LC_MESSAGES/hello.mo +0 -0
  125. data/samples/locale/pt_BR/LC_MESSAGES/hello2.mo +0 -0
  126. data/samples/locale/pt_BR/LC_MESSAGES/hello_noop.mo +0 -0
  127. data/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo +0 -0
  128. data/samples/locale/pt_BR/LC_MESSAGES/helloglade2.mo +0 -0
  129. data/samples/locale/pt_BR/LC_MESSAGES/hellogtk.mo +0 -0
  130. data/samples/locale/pt_BR/LC_MESSAGES/hellotk.mo +0 -0
  131. data/samples/po/cs/hello.po +23 -0
  132. data/samples/po/cs/hello2.po +31 -0
  133. data/samples/po/cs/hello_noop.po +27 -0
  134. data/samples/po/cs/hello_plural.po +26 -0
  135. data/samples/po/cs/helloglade2.po +37 -0
  136. data/samples/po/cs/hellogtk.po +23 -0
  137. data/samples/po/cs/hellotk.po +23 -0
  138. data/samples/po/fr/helloglade2.po +2 -2
  139. data/samples/po/hello.pot +1 -0
  140. data/samples/po/hello2.pot +1 -0
  141. data/samples/po/hello_noop.pot +2 -1
  142. data/samples/po/hello_plural.pot +6 -2
  143. data/samples/po/helloglade2.pot +8 -3
  144. data/samples/po/hellotk.pot +4 -0
  145. data/samples/po/ko/hello.po +1 -2
  146. data/samples/po/ko/hello2.po +1 -2
  147. data/samples/po/ko/hello_noop.po +1 -2
  148. data/samples/po/ko/hello_plural.po +1 -2
  149. data/samples/po/ko/helloglade2.po +2 -2
  150. data/samples/po/ko/hellogtk.po +1 -2
  151. data/samples/po/ko/hellotk.po +1 -2
  152. data/samples/po/nl/hello.po +24 -0
  153. data/samples/po/nl/hello2.po +32 -0
  154. data/samples/po/nl/hello_noop.po +28 -0
  155. data/samples/po/nl/hello_plural.po +26 -0
  156. data/samples/po/nl/helloglade2.po +31 -0
  157. data/samples/po/nl/hellogtk.po +24 -0
  158. data/samples/po/nl/hellotk.po +24 -0
  159. data/samples/po/pt_BR/hello.po +6 -5
  160. data/samples/po/pt_BR/hello2.po +6 -5
  161. data/samples/po/pt_BR/hello_noop.po +6 -5
  162. data/samples/po/pt_BR/hello_plural.po +6 -6
  163. data/samples/po/pt_BR/helloglade2.po +6 -5
  164. data/samples/po/pt_BR/hellogtk.po +6 -5
  165. data/samples/po/pt_BR/hellotk.po +6 -5
  166. data/samples/rails/README +21 -15
  167. data/samples/rails/Rakefile +10 -1
  168. data/samples/rails/app/controllers/application.rb +10 -18
  169. data/samples/rails/app/controllers/blog_controller.rb +1 -5
  170. data/samples/rails/app/helpers/blog_helper.rb +1 -1
  171. data/samples/rails/app/models/article.rb +15 -0
  172. data/samples/rails/app/views/blog/_form.rhtml +2 -2
  173. data/samples/rails/config/boot.rb +17 -0
  174. data/samples/rails/config/database.yml +5 -3
  175. data/samples/rails/config/environment.rb +40 -75
  176. data/samples/rails/config/environments/development.rb +12 -7
  177. data/samples/rails/config/environments/production.rb +17 -6
  178. data/samples/rails/config/environments/test.rb +8 -6
  179. data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
  180. data/samples/rails/locale/cs/LC_MESSAGES/gettext_plugin.mo +0 -0
  181. data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
  182. data/samples/rails/locale/de/LC_MESSAGES/gettext_plugin.mo +0 -0
  183. data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
  184. data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
  185. data/samples/rails/locale/es/LC_MESSAGES/gettext_plugin.mo +0 -0
  186. data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
  187. data/samples/rails/locale/fr/LC_MESSAGES/{lang_helper.mo → gettext_plugin.mo} +0 -0
  188. data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
  189. data/samples/rails/locale/ja/LC_MESSAGES/{lang_helper.mo → gettext_plugin.mo} +0 -0
  190. data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
  191. data/samples/rails/locale/ko/LC_MESSAGES/gettext_plugin.mo +0 -0
  192. data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
  193. data/samples/rails/locale/nl/LC_MESSAGES/gettext_plugin.mo +0 -0
  194. data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
  195. data/samples/rails/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo +0 -0
  196. data/samples/rails/po/blog.pot +57 -37
  197. data/samples/rails/po/cs/blog.po +116 -0
  198. data/samples/rails/po/cs/gettext_plugin.po +29 -0
  199. data/samples/rails/po/de/blog.po +70 -51
  200. data/samples/rails/po/de/{lang_helper.po → gettext_plugin.po} +4 -5
  201. data/samples/rails/po/en/blog.po +111 -0
  202. data/samples/rails/po/es/blog.po +67 -47
  203. data/samples/rails/po/es/{lang_helper.po → gettext_plugin.po} +5 -5
  204. data/samples/rails/po/fr/blog.po +65 -45
  205. data/samples/rails/po/fr/{lang_helper.po → gettext_plugin.po} +4 -4
  206. data/samples/rails/po/{lang_helper.pot → gettext_plugin.pot} +4 -4
  207. data/samples/rails/po/ja/blog.po +64 -44
  208. data/samples/rails/po/ja/{lang_helper.po → gettext_plugin.po} +4 -4
  209. data/samples/rails/po/ko/blog.po +65 -46
  210. data/samples/rails/po/ko/{lang_helper.po → gettext_plugin.po} +5 -6
  211. data/samples/rails/po/nl/blog.po +115 -0
  212. data/samples/rails/po/nl/gettext_plugin.po +28 -0
  213. data/samples/rails/po/pt_BR/blog.po +109 -0
  214. data/samples/rails/po/pt_BR/gettext_plugin.po +27 -0
  215. data/samples/rails/public/images/rails.png +0 -0
  216. data/samples/rails/public/index.html +272 -71
  217. data/samples/rails/public/javascripts/controls.js +441 -166
  218. data/samples/rails/public/javascripts/dragdrop.js +261 -279
  219. data/samples/rails/public/javascripts/effects.js +657 -277
  220. data/samples/rails/public/javascripts/prototype.js +911 -223
  221. data/samples/rails/public/robots.txt +1 -0
  222. data/samples/rails/public/stylesheets/scaffold.css +1 -1
  223. data/samples/rails/script/about +3 -0
  224. data/samples/rails/script/breakpointer +3 -4
  225. data/samples/rails/script/console +3 -23
  226. data/samples/rails/script/destroy +3 -7
  227. data/samples/rails/script/generate +3 -7
  228. data/samples/rails/script/performance/benchmarker +3 -0
  229. data/samples/rails/script/performance/profiler +3 -0
  230. data/samples/rails/script/plugin +3 -0
  231. data/samples/rails/script/process/reaper +3 -0
  232. data/samples/rails/script/process/spawner +3 -0
  233. data/samples/rails/script/process/spinner +3 -0
  234. data/samples/rails/script/runner +3 -29
  235. data/samples/rails/script/server +3 -49
  236. data/samples/rails/vendor/plugins/gettext/init.rb +19 -0
  237. data/samples/rails/vendor/{lang_helper.rb → plugins/gettext/lib/gettext_plugin.rb} +15 -11
  238. data/src/poparser.ry +171 -0
  239. data/test/gettext_runner.rb +3 -1
  240. data/test/gettext_test.rb +56 -31
  241. data/test/gettext_test_cgi.rb +12 -0
  242. data/test/gettext_test_parser.rb +3 -0
  243. data/test/gettext_test_string.rb +14 -0
  244. data/test/locale/cr/LC_MESSAGES/plural.mo +0 -0
  245. data/test/locale/da/LC_MESSAGES/plural.mo +0 -0
  246. data/test/locale/da/LC_MESSAGES/plural_error.mo +0 -0
  247. data/test/locale/fr/LC_MESSAGES/plural.mo +0 -0
  248. data/test/locale/fr/LC_MESSAGES/plural_error.mo +0 -0
  249. data/test/locale/ir/LC_MESSAGES/plural.mo +0 -0
  250. data/test/locale/la/LC_MESSAGES/plural.mo +0 -0
  251. data/test/locale/li/LC_MESSAGES/plural.mo +0 -0
  252. data/test/locale/po/LC_MESSAGES/plural.mo +0 -0
  253. data/test/locale/sl/LC_MESSAGES/plural.mo +0 -0
  254. data/test/po/cr/plural.po +3 -3
  255. data/test/po/da/plural.po +2 -2
  256. data/test/po/da/plural_error.po +2 -1
  257. data/test/po/fr/plural.po +2 -2
  258. data/test/po/fr/plural_error.po +2 -1
  259. data/test/po/ir/plural.po +3 -3
  260. data/test/po/la/plural.po +3 -3
  261. data/test/po/li/plural.po +3 -3
  262. data/test/po/po/plural.po +3 -3
  263. data/test/po/sl/plural.po +4 -4
  264. data/test/test.sh +1 -0
  265. data/test/test_rubyparser.rb +20 -0
  266. metadata +678 -551
  267. data/README.ja +0 -115
  268. data/data/locale/de/LC_MESSAGES/rmsgfmt.mo +0 -0
  269. data/data/locale/es/LC_MESSAGES/rmsgfmt.mo +0 -0
  270. data/data/locale/fr/LC_MESSAGES/rmsgfmt.mo +0 -0
  271. data/data/locale/it/LC_MESSAGES/rmsgfmt.mo +0 -0
  272. data/data/locale/ja/LC_MESSAGES/rmsgfmt.mo +0 -0
  273. data/data/locale/ko/LC_MESSAGES/rmsgfmt.mo +0 -0
  274. data/data/locale/pt_BR/LC_MESSAGES/rmsgfmt.mo +0 -0
  275. data/data/locale/sv/LC_MESSAGES/rmsgfmt.mo +0 -0
  276. data/po/de/rmsgfmt.po +0 -45
  277. data/po/es/rmsgfmt.po +0 -43
  278. data/po/fr/rmsgfmt.po +0 -43
  279. data/po/it/rmsgfmt.po +0 -44
  280. data/po/ja/rmsgfmt.po +0 -43
  281. data/po/ko/rmsgfmt.po +0 -40
  282. data/po/pt_BR/rmsgfmt.po +0 -42
  283. data/po/rmsgfmt.pot +0 -40
  284. data/po/sv/rmsgfmt.po +0 -43
  285. data/samples/rails/locale/de/LC_MESSAGES/lang_helper.mo +0 -0
  286. data/samples/rails/locale/es/LC_MESSAGES/lang_helper.mo +0 -0
  287. data/samples/rails/locale/ko/LC_MESSAGES/lang_helper.mo +0 -0
  288. data/src/rmsgfmt.ry +0 -233
@@ -10,19 +10,19 @@
10
10
  msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: 1.0\n"
13
- "POT-Creation-Date: 2005-08-27 23:23+0900\n"
13
+ "POT-Creation-Date: 2005-12-17 13:59+0900\n"
14
14
  "PO-Revision-Date: 2005-08-27 23:23+0900\n"
15
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
16
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Last-Translator: David Espada <davinci@escomposlinux.org>\n"
16
+ "Language-Team: Spanish\n"
17
17
  "MIME-Version: 1.0\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
  "Content-Transfer-Encoding: 8bit\n"
20
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
21
 
22
- #: vendor/lang_helper.rb:11
22
+ #: vendor/plugins/gettext/lib/gettext_plugin.rb:24
23
23
  msgid "Select locale"
24
24
  msgstr "Seleccione local"
25
25
 
26
- #: vendor/lang_helper.rb:19
26
+ #: vendor/plugins/gettext/lib/gettext_plugin.rb:33
27
27
  msgid "Cookie &quot;lang&quot; is set: %s"
28
28
  msgstr "Cookie &quot;lang&quot; establecida: %s"
@@ -8,8 +8,8 @@
8
8
  #
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: ruby-gettext 1.0.0\n"
12
- "POT-Creation-Date: 2005-08-29 01:45+0900\n"
11
+ "Project-Id-Version: blog 1.1.0\n"
12
+ "POT-Creation-Date: 2005-12-23 01:29+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"
@@ -18,72 +18,92 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
20
20
 
21
- #: app/controllers/blog_controller.rb:22
21
+ #: app/helpers/blog_helper.rb:43
22
+ msgid "Ruby Links"
23
+ msgstr "Liens Ruby"
24
+
25
+ #: app/helpers/blog_helper.rb:51
26
+ msgid "Old articles"
27
+ msgstr "Vieux billets"
28
+
29
+ #: app/models/article.rb:-
30
+ msgid "Article"
31
+ msgstr "Article"
32
+
33
+ #: app/models/article.rb:-
34
+ msgid "Article|Id"
35
+ msgstr "Identifiant"
36
+
37
+ #: app/models/article.rb:-
38
+ msgid "Article|Title"
39
+ msgstr "Titre"
40
+
41
+ #: app/models/article.rb:-
42
+ msgid "Article|Description"
43
+ msgstr "Description"
44
+
45
+ #: app/models/article.rb:-
46
+ msgid "Article|Lastupdate"
47
+ msgstr "DernièreMiseAJour"
48
+
49
+ #: app/controllers/blog_controller.rb:37
22
50
  msgid "Article was successfully created."
23
51
  msgstr "Le billet a été crée correctement."
24
52
 
25
- #: app/controllers/blog_controller.rb:36
53
+ #: app/controllers/blog_controller.rb:51
26
54
  msgid "Article was successfully updated."
27
55
  msgstr "Le billet a été mis-à-jour correctement."
28
56
 
29
- #: app/helpers/blog_helper.rb:31
30
- msgid "Ruby Links"
31
- msgstr "Liens Ruby"
57
+ #: app/views/blog/new.rhtml:13 app/views/blog/list.rhtml:15
58
+ msgid "New article"
59
+ msgstr "Nouvel article"
32
60
 
33
- #: app/helpers/blog_helper.rb:39
34
- msgid "Old articles"
35
- msgstr "Vieux billets"
61
+ #: app/views/blog/new.rhtml:17
62
+ msgid "Create"
63
+ msgstr "Créer"
64
+
65
+ #: app/views/blog/new.rhtml:20 app/views/blog/edit.rhtml:21
66
+ #: app/views/blog/show.rhtml:17
67
+ msgid "Back"
68
+ msgstr "Retour"
36
69
 
37
- #: app/views/blog/_form.rhtml:4
70
+ #: app/views/blog/_form.rhtml:16
38
71
  msgid "Lastupdate"
39
- msgstr "Lastupdate"
72
+ msgstr "DernièreMiseAJour"
40
73
 
41
- #: app/views/blog/_form.rhtml:6
42
- msgid "Title"
43
- msgstr "Titre"
74
+ #: app/views/blog/_form.rhtml:18
75
+ msgid "Title: Required."
76
+ msgstr "Titre: Requis."
44
77
 
45
- #: app/views/blog/_form.rhtml:9
46
- msgid "Description"
47
- msgstr "Description"
78
+ #: app/views/blog/_form.rhtml:21
79
+ msgid "Description: More than 10 characters."
80
+ msgstr "Description: Plus de 10 caractères"
81
+
82
+ #: app/views/blog/list.rhtml:13 app/views/blog/show.rhtml:13
83
+ #: app/views/layouts/blog.rhtml:14
84
+ msgid "GetText Sample Blog on RoR"
85
+ msgstr "Exemple de blog en RoR avec GetText"
86
+
87
+ #: app/views/blog/list.rhtml:18
88
+ msgid "No articles were found."
89
+ msgstr "Aucun article trouvé."
48
90
 
49
- #: app/views/blog/edit.rhtml:1
91
+ #: app/views/blog/edit.rhtml:12
50
92
  msgid "Editing article"
51
93
  msgstr "Édition du billet"
52
94
 
53
- #: app/views/blog/edit.rhtml:5 app/views/blog/show.rhtml:4
95
+ #: app/views/blog/edit.rhtml:16 app/views/blog/show.rhtml:16
54
96
  msgid "Edit"
55
97
  msgstr "Édition"
56
98
 
57
- #: app/views/blog/edit.rhtml:8
99
+ #: app/views/blog/edit.rhtml:19
58
100
  msgid "Show"
59
101
  msgstr "Affichage"
60
102
 
61
- #: app/views/blog/edit.rhtml:9
103
+ #: app/views/blog/edit.rhtml:20
62
104
  msgid "Destroy"
63
105
  msgstr "Détruire"
64
106
 
65
- #: app/views/blog/edit.rhtml:9
107
+ #: app/views/blog/edit.rhtml:20
66
108
  msgid "Are you sure?"
67
109
  msgstr "Êtes-vous sûr?"
68
-
69
- #: app/views/blog/edit.rhtml:10 app/views/blog/new.rhtml:8
70
- #: app/views/blog/show.rhtml:5
71
- msgid "Back"
72
- msgstr "Retour"
73
-
74
- #: app/views/blog/list.rhtml:1 app/views/blog/show.rhtml:1
75
- #: app/views/layouts/blog.rhtml:3
76
- msgid "GetText Sample Blog on RoR"
77
- msgstr "Exemple de blog en RoR avec GetText"
78
-
79
- #: app/views/blog/list.rhtml:3 app/views/blog/new.rhtml:1
80
- msgid "New article"
81
- msgstr "Nouvel article"
82
-
83
- #: app/views/blog/list.rhtml:6
84
- msgid "No articles were found."
85
- msgstr "Aucun article trouvé."
86
-
87
- #: app/views/blog/new.rhtml:5
88
- msgid "Create"
89
- msgstr "Créer"
@@ -8,8 +8,8 @@
8
8
  #
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: ruby-gettext 1.0.0\n"
12
- "POT-Creation-Date: 2005-08-29 01:45+0900\n"
11
+ "Project-Id-Version: gettext_plugin 1.1.0\n"
12
+ "POT-Creation-Date: 2005-12-23 01:29+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"
@@ -18,10 +18,10 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
20
20
 
21
- #: vendor/lang_helper.rb:11
21
+ #: vendor/plugins/gettext/lib/gettext_plugin.rb:24
22
22
  msgid "Select locale"
23
23
  msgstr "Sélectionnez une locale"
24
24
 
25
- #: vendor/lang_helper.rb:19
25
+ #: vendor/plugins/gettext/lib/gettext_plugin.rb:36
26
26
  msgid "Cookie &quot;lang&quot; is set: %s"
27
27
  msgstr "Le cookie &quot;lang&quot; est actif: %s"
@@ -9,8 +9,8 @@
9
9
  #, fuzzy
10
10
  msgid ""
11
11
  msgstr ""
12
- "Project-Id-Version: 1.0\n"
13
- "POT-Creation-Date: 2005-08-27 23:23+0900\n"
12
+ "Project-Id-Version: gettext_plugin 1.1.0\n"
13
+ "POT-Creation-Date: 2005-12-23 01:29+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"
@@ -19,10 +19,10 @@ msgstr ""
19
19
  "Content-Transfer-Encoding: 8bit\n"
20
20
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
21
21
 
22
- #: vendor/lang_helper.rb:11
22
+ #: vendor/plugins/gettext/lib/gettext_plugin.rb:24
23
23
  msgid "Select locale"
24
24
  msgstr ""
25
25
 
26
- #: vendor/lang_helper.rb:19
26
+ #: vendor/plugins/gettext/lib/gettext_plugin.rb:36
27
27
  msgid "Cookie &quot;lang&quot; is set: %s"
28
28
  msgstr ""
@@ -8,8 +8,8 @@
8
8
  #
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: 1.0\n"
12
- "POT-Creation-Date: 2005-08-28 00:10+0900\n"
11
+ "Project-Id-Version: blog 1.1.0\n"
12
+ "POT-Creation-Date: 2005-12-23 01:29+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"
@@ -18,72 +18,92 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
20
 
21
- #: app/controllers/blog_controller.rb:22
21
+ #: app/helpers/blog_helper.rb:43
22
+ msgid "Ruby Links"
23
+ msgstr "Ruby関連リンク"
24
+
25
+ #: app/helpers/blog_helper.rb:51
26
+ msgid "Old articles"
27
+ msgstr "過去の記事"
28
+
29
+ #: app/models/article.rb:-
30
+ msgid "Article"
31
+ msgstr "記事"
32
+
33
+ #: app/models/article.rb:-
34
+ msgid "Article|Id"
35
+ msgstr "記事"
36
+
37
+ #: app/models/article.rb:-
38
+ msgid "Article|Title"
39
+ msgstr "タイトル"
40
+
41
+ #: app/models/article.rb:-
42
+ msgid "Article|Description"
43
+ msgstr "内容"
44
+
45
+ #: app/models/article.rb:-
46
+ msgid "Article|Lastupdate"
47
+ msgstr "投稿日"
48
+
49
+ #: app/controllers/blog_controller.rb:37
22
50
  msgid "Article was successfully created."
23
51
  msgstr "記事の投稿に成功しました。"
24
52
 
25
- #: app/controllers/blog_controller.rb:36
53
+ #: app/controllers/blog_controller.rb:51
26
54
  msgid "Article was successfully updated."
27
55
  msgstr "記事の更新に成功しました。"
28
56
 
29
- #: app/helpers/blog_helper.rb:31
30
- msgid "Ruby Links"
31
- msgstr "Ruby関連リンク"
57
+ #: app/views/blog/new.rhtml:13 app/views/blog/list.rhtml:15
58
+ msgid "New article"
59
+ msgstr "新規投稿"
32
60
 
33
- #: app/helpers/blog_helper.rb:39
34
- msgid "Old articles"
35
- msgstr "過去の記事"
61
+ #: app/views/blog/new.rhtml:17
62
+ msgid "Create"
63
+ msgstr "投稿"
64
+
65
+ #: app/views/blog/new.rhtml:20 app/views/blog/edit.rhtml:21
66
+ #: app/views/blog/show.rhtml:17
67
+ msgid "Back"
68
+ msgstr "戻る"
36
69
 
37
- #: app/views/blog/_form.rhtml:4
70
+ #: app/views/blog/_form.rhtml:16
38
71
  msgid "Lastupdate"
39
72
  msgstr "投稿日"
40
73
 
41
- #: app/views/blog/_form.rhtml:6
42
- msgid "Title"
43
- msgstr "タイトル"
74
+ #: app/views/blog/_form.rhtml:18
75
+ msgid "Title: Required."
76
+ msgstr "タイトル:必須入力"
44
77
 
45
- #: app/views/blog/_form.rhtml:9
46
- msgid "Description"
47
- msgstr "内容"
78
+ #: app/views/blog/_form.rhtml:21
79
+ msgid "Description: More than 10 characters."
80
+ msgstr "内容:10文字以上"
81
+
82
+ #: app/views/blog/list.rhtml:13 app/views/blog/show.rhtml:13
83
+ #: app/views/layouts/blog.rhtml:14
84
+ msgid "GetText Sample Blog on RoR"
85
+ msgstr "GetTextサンプルブログ on RoR"
48
86
 
49
- #: app/views/blog/edit.rhtml:1
87
+ #: app/views/blog/list.rhtml:18
88
+ msgid "No articles were found."
89
+ msgstr "まだ記事がありません"
90
+
91
+ #: app/views/blog/edit.rhtml:12
50
92
  msgid "Editing article"
51
93
  msgstr "記事の編集"
52
94
 
53
- #: app/views/blog/edit.rhtml:5 app/views/blog/show.rhtml:4
95
+ #: app/views/blog/edit.rhtml:16 app/views/blog/show.rhtml:16
54
96
  msgid "Edit"
55
97
  msgstr "編集"
56
98
 
57
- #: app/views/blog/edit.rhtml:8
99
+ #: app/views/blog/edit.rhtml:19
58
100
  msgid "Show"
59
101
  msgstr "表示"
60
102
 
61
- #: app/views/blog/edit.rhtml:9
103
+ #: app/views/blog/edit.rhtml:20
62
104
  msgid "Destroy"
63
105
  msgstr "削除"
64
106
 
65
- #: app/views/blog/edit.rhtml:9
107
+ #: app/views/blog/edit.rhtml:20
66
108
  msgid "Are you sure?"
67
109
  msgstr "よろしいですか?"
68
-
69
- #: app/views/blog/edit.rhtml:10 app/views/blog/new.rhtml:8
70
- #: app/views/blog/show.rhtml:5
71
- msgid "Back"
72
- msgstr "戻る"
73
-
74
- #: app/views/blog/list.rhtml:1 app/views/blog/show.rhtml:1
75
- #: app/views/layouts/blog.rhtml:3
76
- msgid "GetText Sample Blog on RoR"
77
- msgstr "GetTextサンプルブログ on RoR"
78
-
79
- #: app/views/blog/list.rhtml:3 app/views/blog/new.rhtml:1
80
- msgid "New article"
81
- msgstr "新規投稿"
82
-
83
- #: app/views/blog/list.rhtml:6
84
- msgid "No articles were found."
85
- msgstr "まだ記事がありません"
86
-
87
- #: app/views/blog/new.rhtml:5
88
- msgid "Create"
89
- msgstr "投稿"
@@ -9,8 +9,8 @@
9
9
  #, fuzzy
10
10
  msgid ""
11
11
  msgstr ""
12
- "Project-Id-Version: PACKAGE VERSION\n"
13
- "POT-Creation-Date: 2005-08-27 23:23+0900\n"
12
+ "Project-Id-Version: gettext_plugin 1.1.0\n"
13
+ "POT-Creation-Date: 2005-12-23 01:29+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"
@@ -19,10 +19,10 @@ msgstr ""
19
19
  "Content-Transfer-Encoding: 8bit\n"
20
20
  "Plural-Forms: nplurals=1; plural=0;\n"
21
21
 
22
- #: vendor/lang_helper.rb:11
22
+ #: vendor/plugins/gettext/lib/gettext_plugin.rb:24
23
23
  msgid "Select locale"
24
24
  msgstr "ロケールの選択"
25
25
 
26
- #: vendor/lang_helper.rb:19
26
+ #: vendor/plugins/gettext/lib/gettext_plugin.rb:36
27
27
  msgid "Cookie &quot;lang&quot; is set: %s"
28
28
  msgstr "クッキーの&quot;lang&quot;に %s がセットされました。"
@@ -3,12 +3,11 @@
3
3
  #
4
4
  # This file is distributed under the same license as the Ruby-GetText-Package.
5
5
  #
6
- #, fuzzy
7
6
  msgid ""
8
7
  msgstr ""
9
8
  "Project-Id-Version: 1.0\n"
10
- "POT-Creation-Date: 2005-08-28 00:10+0900\n"
11
- "PO-Revision-Date: 2005-08-29 08:20+0900\n"
9
+ "POT-Creation-Date: 2005-12-17 13:59+0900\n"
10
+ "PO-Revision-Date: 2005-12-23 02:00+0900\n"
12
11
  "Last-Translator: Gyoung-Yoon Noh <nohmad@gmail.com>\n"
13
12
  "Language-Team: Korean\n"
14
13
  "MIME-Version: 1.0\n"
@@ -16,72 +15,92 @@ msgstr ""
16
15
  "Content-Transfer-Encoding: 8bit\n"
17
16
  "Plural-Forms: nplurals=1; plural=0;\n"
18
17
 
19
- #: app/controllers/blog_controller.rb:22
18
+ #: app/helpers/blog_helper.rb:43
19
+ msgid "Ruby Links"
20
+ msgstr "루비 링크"
21
+
22
+ #: app/helpers/blog_helper.rb:51
23
+ msgid "Old articles"
24
+ msgstr "이전 글들"
25
+
26
+ #: app/models/article.rb:-
27
+ msgid "Article"
28
+ msgstr "새 글"
29
+
30
+ #: app/models/article.rb:-
31
+ msgid "Article|Id"
32
+ msgstr ""
33
+
34
+ #: app/models/article.rb:-
35
+ msgid "Article|Title"
36
+ msgstr "제목"
37
+
38
+ #: app/models/article.rb:-
39
+ msgid "Article|Description"
40
+ msgstr "설명"
41
+
42
+ #: app/models/article.rb:-
43
+ msgid "Article|Lastupdate"
44
+ msgstr "마지막 변경"
45
+
46
+ #: app/controllers/blog_controller.rb:37
20
47
  msgid "Article was successfully created."
21
48
  msgstr "글이 성공적으로 생성되었습니다."
22
49
 
23
- #: app/controllers/blog_controller.rb:36
50
+ #: app/controllers/blog_controller.rb:51
24
51
  msgid "Article was successfully updated."
25
52
  msgstr "글이 성공적으로 갱신되었습니다."
26
53
 
27
- #: app/helpers/blog_helper.rb:31
28
- msgid "Ruby Links"
29
- msgstr ""
54
+ #: app/views/blog/new.rhtml:13 app/views/blog/list.rhtml:15
55
+ msgid "New article"
56
+ msgstr "새 글"
30
57
 
31
- #: app/helpers/blog_helper.rb:39
32
- msgid "Old articles"
33
- msgstr "이전 글들"
58
+ #: app/views/blog/new.rhtml:17
59
+ msgid "Create"
60
+ msgstr " 쓰기"
61
+
62
+ #: app/views/blog/new.rhtml:20 app/views/blog/edit.rhtml:21
63
+ #: app/views/blog/show.rhtml:17
64
+ msgid "Back"
65
+ msgstr "뒤로 가기"
34
66
 
35
- #: app/views/blog/_form.rhtml:4
67
+ #: app/views/blog/_form.rhtml:16
36
68
  msgid "Lastupdate"
37
69
  msgstr "마지막 업데이트"
38
70
 
39
- #: app/views/blog/_form.rhtml:6
40
- msgid "Title"
41
- msgstr "제목"
71
+ #: app/views/blog/_form.rhtml:18
72
+ msgid "Title: Required."
73
+ msgstr "제목이 필요합니다."
42
74
 
43
- #: app/views/blog/_form.rhtml:9
44
- msgid "Description"
45
- msgstr "설명"
75
+ #: app/views/blog/_form.rhtml:21
76
+ msgid "Description: More than 10 characters."
77
+ msgstr "설명: 10 문자 이상"
78
+
79
+ #: app/views/blog/list.rhtml:13 app/views/blog/show.rhtml:13
80
+ #: app/views/layouts/blog.rhtml:14
81
+ msgid "GetText Sample Blog on RoR"
82
+ msgstr "Ruby on Rails 위의 GetText 예제 블로그"
83
+
84
+ #: app/views/blog/list.rhtml:18
85
+ msgid "No articles were found."
86
+ msgstr "글이 없습니다."
46
87
 
47
- #: app/views/blog/edit.rhtml:1
88
+ #: app/views/blog/edit.rhtml:12
48
89
  msgid "Editing article"
49
90
  msgstr "글 편집"
50
91
 
51
- #: app/views/blog/edit.rhtml:5 app/views/blog/show.rhtml:4
92
+ #: app/views/blog/edit.rhtml:16 app/views/blog/show.rhtml:16
52
93
  msgid "Edit"
53
94
  msgstr "편집"
54
95
 
55
- #: app/views/blog/edit.rhtml:8
96
+ #: app/views/blog/edit.rhtml:19
56
97
  msgid "Show"
57
98
  msgstr "보기"
58
99
 
59
- #: app/views/blog/edit.rhtml:9
100
+ #: app/views/blog/edit.rhtml:20
60
101
  msgid "Destroy"
61
102
  msgstr "삭제"
62
103
 
63
- #: app/views/blog/edit.rhtml:9
104
+ #: app/views/blog/edit.rhtml:20
64
105
  msgid "Are you sure?"
65
- msgstr ""
66
-
67
- #: app/views/blog/edit.rhtml:10 app/views/blog/new.rhtml:8
68
- #: app/views/blog/show.rhtml:5
69
- msgid "Back"
70
- msgstr "뒤로 가기"
71
-
72
- #: app/views/blog/list.rhtml:1 app/views/blog/show.rhtml:1
73
- #: app/views/layouts/blog.rhtml:3
74
- msgid "GetText Sample Blog on RoR"
75
- msgstr "Ruby on Rails 위의 GetText 예제 블로그"
76
-
77
- #: app/views/blog/list.rhtml:3 app/views/blog/new.rhtml:1
78
- msgid "New article"
79
- msgstr "새 글"
80
-
81
- #: app/views/blog/list.rhtml:6
82
- msgid "No articles were found."
83
- msgstr "글이 없습니다."
84
-
85
- #: app/views/blog/new.rhtml:5
86
- msgid "Create"
87
- msgstr "글 쓰기"
106
+ msgstr "확실합니까?"