gettext 1.10.0 → 1.90.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (327) hide show
  1. data/ChangeLog +156 -2
  2. data/NEWS +28 -0
  3. data/README +128 -138
  4. data/Rakefile +83 -43
  5. data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
  6. data/data/locale/hu/LC_MESSAGES/rails.mo +0 -0
  7. data/data/locale/hu/LC_MESSAGES/rgettext.mo +0 -0
  8. data/data/locale/ua/LC_MESSAGES/rails.mo +0 -0
  9. data/data/locale/ua/LC_MESSAGES/rgettext.mo +0 -0
  10. data/doc/classes/ActiveRecord/Base.html +360 -0
  11. data/doc/classes/ActiveRecord/ConnectionAdapters/Column.html +182 -0
  12. data/doc/classes/ActiveRecord/Migration.html +118 -0
  13. data/doc/classes/GetText.html +1790 -0
  14. data/doc/classes/GetText/ActiveRecordParser.html +236 -0
  15. data/doc/classes/GetText/Container.html +119 -0
  16. data/doc/classes/GetText/ErbContainer.html +223 -0
  17. data/doc/classes/GetText/ErbParser.html +156 -0
  18. data/doc/classes/GetText/GladeParser.html +133 -0
  19. data/doc/classes/GetText/NoboundTextDomainError.html +119 -0
  20. data/doc/classes/GetText/PoParser.html +169 -0
  21. data/doc/classes/GetText/Rails.html +293 -0
  22. data/doc/classes/GetText/RubyParser.html +123 -0
  23. data/doc/classes/GetText/TextDomain.html +572 -0
  24. data/doc/classes/GetText/TextDomainManager.html +443 -0
  25. data/doc/classes/Iconv.html +257 -0
  26. data/doc/classes/Iconv/Failure.html +105 -0
  27. data/doc/classes/Iconv/IllegalSequence.html +118 -0
  28. data/doc/classes/Iconv/InvalidCharacter.html +118 -0
  29. data/doc/classes/Iconv/InvalidEncoding.html +118 -0
  30. data/doc/classes/Locale.html +839 -0
  31. data/doc/classes/Locale/Object.html +799 -0
  32. data/doc/classes/Locale/SystemBase.html +271 -0
  33. data/doc/classes/Locale/SystemCGI.html +312 -0
  34. data/doc/classes/Locale/SystemJRuby.html +112 -0
  35. data/doc/classes/Locale/SystemPosix.html +113 -0
  36. data/doc/classes/Locale/SystemWin32.html +182 -0
  37. data/doc/classes/MOFile.html +678 -0
  38. data/doc/classes/MOFile/InvalidFormat.html +111 -0
  39. data/doc/classes/Module.html +158 -0
  40. data/doc/classes/String.html +225 -0
  41. data/doc/created.rid +1 -0
  42. data/doc/files/ChangeLog.html +2355 -0
  43. data/doc/files/README.html +510 -0
  44. data/doc/files/lib/gettext/active_record_rb.html +110 -0
  45. data/doc/files/lib/gettext/cgi_rb.html +110 -0
  46. data/doc/files/lib/gettext/container_rb.html +108 -0
  47. data/doc/files/lib/gettext/erb_rb.html +109 -0
  48. data/doc/files/lib/gettext/iconv_rb.html +109 -0
  49. data/doc/files/lib/gettext/mo_rb.html +108 -0
  50. data/doc/files/lib/gettext/parser/active_record_rb.html +119 -0
  51. data/doc/files/lib/gettext/parser/erb_rb.html +109 -0
  52. data/doc/files/lib/gettext/parser/glade_rb.html +109 -0
  53. data/doc/files/lib/gettext/parser/ruby_rb.html +110 -0
  54. data/doc/files/lib/gettext/poparser_rb.html +108 -0
  55. data/doc/files/lib/gettext/rails_compat_rb.html +108 -0
  56. data/doc/files/lib/gettext/rails_rb.html +112 -0
  57. data/doc/files/lib/gettext/rgettext_rb.html +110 -0
  58. data/doc/files/lib/gettext/rmsgfmt_rb.html +112 -0
  59. data/doc/files/lib/gettext/rmsgmerge_rb.html +112 -0
  60. data/doc/files/lib/gettext/string_rb.html +101 -0
  61. data/doc/files/lib/gettext/textdomain_rb.html +109 -0
  62. data/doc/files/lib/gettext/textdomainmanager_rb.html +109 -0
  63. data/doc/files/lib/gettext/utils_rb.html +111 -0
  64. data/doc/files/lib/gettext/version_rb.html +101 -0
  65. data/doc/files/lib/gettext_rb.html +113 -0
  66. data/doc/files/lib/locale/base_rb.html +101 -0
  67. data/doc/files/lib/locale/cgi_rb.html +108 -0
  68. data/doc/files/lib/locale/jruby_rb.html +110 -0
  69. data/doc/files/lib/locale/object_rb.html +101 -0
  70. data/doc/files/lib/locale/posix_rb.html +108 -0
  71. data/doc/files/lib/locale/win32_rb.html +110 -0
  72. data/doc/files/lib/locale/win32_table_rb.html +101 -0
  73. data/doc/files/lib/locale_rb.html +111 -0
  74. data/doc/fr_class_index.html +57 -0
  75. data/doc/fr_file_index.html +58 -0
  76. data/doc/fr_method_index.html +155 -0
  77. data/doc/index.html +24 -0
  78. data/doc/rdoc-style.css +208 -0
  79. data/lib/gettext.rb +102 -50
  80. data/lib/gettext/cgi.rb +2 -27
  81. data/lib/gettext/iconv.rb +76 -62
  82. data/lib/gettext/mo.rb +3 -3
  83. data/lib/gettext/parser/erb.rb +2 -2
  84. data/lib/gettext/rails.rb +69 -48
  85. data/lib/gettext/rgettext.rb +2 -2
  86. data/lib/gettext/rmsgmerge.rb +2 -2
  87. data/lib/gettext/string.rb +9 -5
  88. data/lib/gettext/textdomain.rb +3 -3
  89. data/lib/gettext/textdomainmanager.rb +5 -5
  90. data/lib/gettext/utils.rb +4 -3
  91. data/lib/gettext/version.rb +1 -1
  92. data/lib/{gettext/locale.rb → locale.rb} +11 -58
  93. data/lib/locale/base.rb +60 -0
  94. data/lib/{gettext/locale_cgi.rb → locale/cgi.rb} +30 -28
  95. data/lib/locale/jruby.rb +36 -0
  96. data/lib/{gettext/locale_object.rb → locale/object.rb} +78 -24
  97. data/lib/locale/posix.rb +22 -0
  98. data/lib/locale/win32.rb +48 -0
  99. data/lib/{gettext/locale_table_win32.rb → locale/win32_table.rb} +3 -2
  100. data/po/es/rails.po +1 -2
  101. data/po/hu/rails.po +139 -0
  102. data/po/hu/rgettext.po +126 -0
  103. data/po/ja/rails.po +5 -5
  104. data/po/ua/rails.po +150 -0
  105. data/po/ua/rgettext.po +132 -0
  106. data/pre-setup.rb +2 -4
  107. data/samples/cgi/cookie.cgi +1 -0
  108. data/samples/cgi/helloerb1.cgi +6 -3
  109. data/samples/cgi/helloerb2.cgi +6 -3
  110. data/samples/cgi/http.rb +3 -7
  111. data/samples/cgi/index.cgi +2 -1
  112. data/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo +0 -0
  113. data/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo +0 -0
  114. data/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo +0 -0
  115. data/samples/cgi/locale/hu/LC_MESSAGES/main.mo +0 -0
  116. data/samples/cgi/locale/ua/LC_MESSAGES/helloerb1.mo +0 -0
  117. data/samples/cgi/locale/ua/LC_MESSAGES/helloerb2.mo +0 -0
  118. data/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo +0 -0
  119. data/samples/cgi/locale/ua/LC_MESSAGES/main.mo +0 -0
  120. data/samples/cgi/po/hu/helloerb1.po +59 -0
  121. data/samples/cgi/po/hu/helloerb2.po +51 -0
  122. data/samples/cgi/po/hu/hellolib.po +23 -0
  123. data/samples/cgi/po/hu/main.po +82 -0
  124. data/samples/cgi/po/ua/helloerb1.po +62 -0
  125. data/samples/cgi/po/ua/helloerb2.po +54 -0
  126. data/samples/cgi/po/ua/hellolib.po +26 -0
  127. data/samples/cgi/po/ua/main.po +84 -0
  128. data/samples/locale/hu/LC_MESSAGES/hello.mo +0 -0
  129. data/samples/locale/hu/LC_MESSAGES/hello2.mo +0 -0
  130. data/samples/locale/hu/LC_MESSAGES/hello_noop.mo +0 -0
  131. data/samples/locale/hu/LC_MESSAGES/hello_plural.mo +0 -0
  132. data/samples/locale/hu/LC_MESSAGES/helloglade2.mo +0 -0
  133. data/samples/locale/hu/LC_MESSAGES/hellogtk.mo +0 -0
  134. data/samples/locale/hu/LC_MESSAGES/hellotk.mo +0 -0
  135. data/samples/locale/ua/LC_MESSAGES/hello.mo +0 -0
  136. data/samples/locale/ua/LC_MESSAGES/hello2.mo +0 -0
  137. data/samples/locale/ua/LC_MESSAGES/hello_noop.mo +0 -0
  138. data/samples/locale/ua/LC_MESSAGES/hello_plural.mo +0 -0
  139. data/samples/locale/ua/LC_MESSAGES/helloglade2.mo +0 -0
  140. data/samples/locale/ua/LC_MESSAGES/hellogtk.mo +0 -0
  141. data/samples/locale/ua/LC_MESSAGES/hellotk.mo +0 -0
  142. data/samples/po/hu/hello.po +22 -0
  143. data/samples/po/hu/hello2.po +30 -0
  144. data/samples/po/hu/hello_noop.po +26 -0
  145. data/samples/po/hu/hello_plural.po +25 -0
  146. data/samples/po/hu/helloglade2.po +31 -0
  147. data/samples/po/hu/hellogtk.po +22 -0
  148. data/samples/po/hu/hellotk.po +23 -0
  149. data/samples/po/ua/hello.po +22 -0
  150. data/samples/po/ua/hello2.po +30 -0
  151. data/samples/po/ua/hello_noop.po +26 -0
  152. data/samples/po/ua/hello_plural.po +29 -0
  153. data/samples/po/ua/helloglade2.po +34 -0
  154. data/samples/po/ua/hellogtk.po +22 -0
  155. data/samples/po/ua/hellotk.po +26 -0
  156. data/samples/rails/README +15 -31
  157. data/samples/rails/Rakefile +1 -1
  158. data/samples/rails/app/controllers/application.rb +11 -4
  159. data/samples/rails/app/controllers/articles_controller.rb +96 -0
  160. data/samples/rails/app/helpers/application_helper.rb +1 -1
  161. data/samples/rails/app/helpers/{blog_helper.rb → articles_helper.rb} +6 -7
  162. data/samples/rails/app/views/articles/edit.html.erb +18 -0
  163. data/samples/rails/app/views/articles/index.html.erb +17 -0
  164. data/samples/rails/app/views/articles/new.html.erb +16 -0
  165. data/samples/rails/app/views/articles/show.html.erb +6 -0
  166. data/samples/rails/app/views/layouts/articles.html.erb +26 -0
  167. data/samples/rails/config/boot.rb +104 -13
  168. data/samples/rails/config/database.yml +24 -21
  169. data/samples/rails/config/environment.rb +35 -30
  170. data/samples/rails/config/environments/development.rb +5 -6
  171. data/samples/rails/config/environments/production.rb +2 -3
  172. data/samples/rails/config/environments/test.rb +5 -2
  173. data/samples/rails/config/initializers/inflections.rb +10 -0
  174. data/samples/rails/config/initializers/mime_types.rb +5 -0
  175. data/samples/rails/config/routes.rb +30 -11
  176. data/samples/rails/db/migrate/001_create_articles.rb +14 -0
  177. data/samples/rails/db/schema.rb +16 -5
  178. data/samples/rails/lib/tasks/gettext.rake +2 -2
  179. data/samples/rails/locale/bs/LC_MESSAGES/blog.mo +0 -0
  180. data/samples/rails/locale/ca/LC_MESSAGES/blog.mo +0 -0
  181. data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
  182. data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
  183. data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
  184. data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
  185. data/samples/rails/locale/eo/LC_MESSAGES/blog.mo +0 -0
  186. data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
  187. data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
  188. data/samples/rails/locale/hr/LC_MESSAGES/blog.mo +0 -0
  189. data/samples/rails/locale/hu/LC_MESSAGES/blog.mo +0 -0
  190. data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
  191. data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
  192. data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
  193. data/samples/rails/locale/nb/LC_MESSAGES/blog.mo +0 -0
  194. data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
  195. data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
  196. data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
  197. data/samples/rails/locale/ua/LC_MESSAGES/blog.mo +0 -0
  198. data/samples/rails/locale/vi/LC_MESSAGES/blog.mo +0 -0
  199. data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
  200. data/samples/rails/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
  201. data/samples/rails/po/blog.pot +24 -24
  202. data/samples/rails/po/bs/blog.po +29 -29
  203. data/samples/rails/po/ca/blog.po +27 -27
  204. data/samples/rails/po/cs/blog.po +27 -27
  205. data/samples/rails/po/de/blog.po +27 -27
  206. data/samples/rails/po/el/blog.po +27 -27
  207. data/samples/rails/po/en/blog.po +24 -24
  208. data/samples/rails/po/eo/blog.po +27 -27
  209. data/samples/rails/po/es/blog.po +27 -27
  210. data/samples/rails/po/fr/blog.po +27 -27
  211. data/samples/rails/po/hr/blog.po +29 -29
  212. data/samples/rails/po/hu/blog.po +105 -0
  213. data/samples/rails/po/it/blog.po +27 -27
  214. data/samples/rails/po/ja/blog.po +27 -27
  215. data/samples/rails/po/ko/blog.po +27 -27
  216. data/samples/rails/po/nb/blog.po +26 -27
  217. data/samples/rails/po/nl/blog.po +27 -27
  218. data/samples/rails/po/pt_BR/blog.po +27 -27
  219. data/samples/rails/po/ru/blog.po +27 -27
  220. data/samples/rails/po/ua/blog.po +108 -0
  221. data/samples/rails/po/vi/blog.po +26 -31
  222. data/samples/rails/po/zh/blog.po +27 -27
  223. data/samples/rails/po/zh_TW/blog.po +27 -27
  224. data/samples/rails/public/404.html +27 -5
  225. data/samples/rails/public/422.html +30 -0
  226. data/samples/rails/public/500.html +27 -5
  227. data/samples/rails/public/index.html +6 -6
  228. data/samples/rails/public/javascripts/application.js +2 -0
  229. data/samples/rails/public/javascripts/controls.js +532 -319
  230. data/samples/rails/public/javascripts/dragdrop.js +521 -133
  231. data/samples/rails/public/javascripts/effects.js +708 -442
  232. data/samples/rails/public/javascripts/prototype.js +3393 -953
  233. data/samples/rails/public/stylesheets/blog.css +4 -0
  234. data/samples/rails/public/stylesheets/scaffold.css +5 -5
  235. data/samples/rails/test/functional/articles_controller_test.rb +51 -0
  236. data/samples/rails/test/test_helper.rb +31 -19
  237. data/samples/rails/test/unit/article_test.rb +2 -9
  238. data/samples/rails/vendor/plugins/gettext/init.rb +5 -3
  239. data/samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb +9 -10
  240. data/samples/rails/vendor/plugins/gettext/locale/eo/LC_MESSAGES/gettext_plugin.mo +0 -0
  241. data/samples/rails/vendor/plugins/gettext/locale/hu/LC_MESSAGES/gettext_plugin.mo +0 -0
  242. data/samples/rails/vendor/plugins/gettext/locale/ua/LC_MESSAGES/gettext_plugin.mo +0 -0
  243. data/samples/rails/vendor/plugins/gettext/po/eo/gettext_plugin.po +28 -0
  244. data/samples/rails/vendor/plugins/gettext/po/hu/gettext_plugin.po +27 -0
  245. data/samples/rails/vendor/plugins/gettext/po/ua/gettext_plugin.po +30 -0
  246. data/test/Rakefile +2 -1
  247. data/test/benchmark.rb +28 -0
  248. data/test/fixtures/topic.rb +15 -0
  249. data/test/rails/Rakefile +2 -1
  250. data/test/rails/app/controllers/articles_controller.rb +1 -1
  251. data/test/rails/app/controllers/users_controller.rb +10 -0
  252. data/test/rails/app/models/user.rb +2 -1
  253. data/test/rails/app/views/articles/{_form.rhtml → _form.html.erb} +0 -0
  254. data/test/rails/app/views/articles/active_form_error.html.erb +1 -0
  255. data/test/rails/app/views/articles/change_title_error_messages_for.html.erb +21 -0
  256. data/test/rails/app/views/articles/{edit.rhtml → edit.html.erb} +0 -0
  257. data/test/rails/app/views/articles/{list.rhtml → list.html.erb} +0 -3
  258. data/test/rails/app/views/articles/{list_fr.rhtml → list_fr.html.erb} +0 -0
  259. data/test/rails/app/views/articles/{multi_error_messages_for.rhtml → multi_error_messages_for.html.erb} +0 -0
  260. data/test/rails/app/views/articles/{new.rhtml → new.html.erb} +0 -0
  261. data/test/rails/app/views/articles/{show.rhtml → show.html.erb} +0 -0
  262. data/test/rails/app/views/layouts/{application.rhtml → application.html.erb} +0 -0
  263. data/test/rails/app/views/layouts/{mailer.rhtml → mailer.html.erb} +0 -0
  264. data/test/rails/app/views/layouts/users.html.erb +13 -0
  265. data/test/rails/app/views/users/custom_error_message.html.erb +13 -0
  266. data/test/rails/app/views/users/custom_error_message_fr.html.erb +13 -0
  267. data/test/rails/config/environment.rb +6 -1
  268. data/test/rails/config/environments/development.rb +0 -3
  269. data/test/rails/db/schema.rb +17 -10
  270. data/test/rails/locale/ja/LC_MESSAGES/rails_test.mo +0 -0
  271. data/test/rails/log/development.log +136 -29
  272. data/test/rails/log/test.log +2002 -128
  273. data/test/rails/po/ja/rails_test.po +68 -61
  274. data/test/rails/po/rails_test.pot +57 -55
  275. data/test/rails/test/fixtures/users.yml +5 -0
  276. data/test/rails/test/functional/articles_controller_test.rb +6 -1
  277. data/test/rails/test/functional/users_controller_test.rb +65 -0
  278. data/test/rails/test/result/en/custom_error_message.html +83 -0
  279. data/test/rails/test/result/en/custom_error_message_with_plural.html +83 -0
  280. data/test/rails/test/result/en/list.html +0 -3
  281. data/test/rails/test/result/en/multi_error_messages_for.html +1 -1
  282. data/test/rails/test/result/fr/custom_error_message.html +83 -0
  283. data/test/rails/test/result/fr/custom_error_message_with_plural.html +83 -0
  284. data/test/rails/test/result/ja/custom_error_message.html +83 -0
  285. data/test/rails/test/result/ja/custom_error_message_with_plural.html +83 -0
  286. data/test/rails/test/result/ja/list.html +0 -3
  287. data/test/rails/test/result/ja/multi_error_messages_for.html +1 -1
  288. data/test/test.sh +5 -7
  289. data/test/{gettext_test_active_record.rb → test_active_record.rb} +20 -10
  290. data/test/{gettext_test_cgi.rb → test_cgi.rb} +0 -0
  291. data/test/{gettext_test.rb → test_gettext.rb} +91 -9
  292. data/test/test_java.sh +12 -0
  293. data/test/{gettext_test_locale.rb → test_locale.rb} +3 -8
  294. data/test/{gettext_test_multi_textdomain.rb → test_multi_textdomain.rb} +2 -2
  295. data/test/{gettext_test_parser.rb → test_parser.rb} +77 -77
  296. data/test/{gettext_test_rails.rb → test_rails.rb} +0 -0
  297. data/test/{gettext_test_rails_caching.rb → test_rails_caching.rb} +16 -2
  298. data/test/{gettext_test_string.rb → test_string.rb} +1 -0
  299. data/test/{test_rubyparser_N.rb → testlib/N_.rb} +0 -0
  300. data/test/testlib/erb.rhtml +15 -0
  301. data/test/testlib/erb.rxml +16 -0
  302. data/test/{test_rubyparser.rb → testlib/gettext.rb} +0 -0
  303. data/test/testlib/gladeparser.glade +183 -0
  304. data/test/{test_rubyparser_n_.rb → testlib/ngettext.rb} +0 -0
  305. data/test/{test_nsgettext.rb → testlib/nsgettext.rb} +0 -0
  306. data/test/{test_sgettext.rb → testlib/sgettext.rb} +0 -0
  307. data/test/{testlib1.rb → testlib/testlib1.rb} +0 -0
  308. data/test/{testlib2.rb → testlib/testlib2.rb} +1 -1
  309. data/test/{testlib3.rb → testlib/testlib3.rb} +0 -0
  310. data/test/{testlib4.rb → testlib/testlib4.rb} +1 -1
  311. data/test/{testlib5.rb → testlib/testlib5.rb} +0 -0
  312. data/test/{testlib6.rb → testlib/testlib6.rb} +0 -0
  313. metadata +1374 -1171
  314. data/ext/gettext/extconf.rb +0 -20
  315. data/ext/gettext/locale_system.c +0 -83
  316. data/lib/gettext/locale_posix.rb +0 -82
  317. data/lib/gettext/locale_win32.rb +0 -82
  318. data/samples/cgi/ruby.bat +0 -4
  319. data/samples/rails/app/controllers/blog_controller.rb +0 -58
  320. data/samples/rails/app/views/blog/_form.rhtml +0 -25
  321. data/samples/rails/app/views/blog/edit.rhtml +0 -22
  322. data/samples/rails/app/views/blog/list.rhtml +0 -29
  323. data/samples/rails/app/views/blog/new.rhtml +0 -21
  324. data/samples/rails/app/views/blog/show.rhtml +0 -18
  325. data/samples/rails/app/views/layouts/blog.rhtml +0 -36
  326. data/samples/rails/test/functional/blog_controller_test.rb +0 -98
  327. data/test/gettext_runner.rb +0 -22
@@ -0,0 +1,22 @@
1
+ # Hello World -- a sample for Ruby-GetText-Package
2
+ #
3
+ # Copyright (C) 2001-2006 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Alex Rootoff <rootoff at pisem.net>, 2007.
8
+ #
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: ruby-gettext 1.1.1\n"
12
+ "POT-Creation-Date: 2001-12-24 01:30:54+0900\n"
13
+ "PO-Revision-Date: 2007-12-23 13:17+0200\n"
14
+ "Last-Translator: Alex Rootoff <rootoff at pisem.net>\n"
15
+ "Language-Team: Ukrainian\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+
20
+ #: ../hello.rb:7
21
+ msgid "Hello World\n"
22
+ msgstr "Привіт, світ\n"
@@ -0,0 +1,30 @@
1
+ # Hello World 2 -- sample for ruby-gettext-package
2
+ #
3
+ # Copyright (C) 2002-2006 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Alex Rootoff <rootoff at pisem.net>, 2007.
8
+ #
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: ruby-gettext 1.1.1\n"
12
+ "POT-Creation-Date: 2002-01-01 03:05:08+0900\n"
13
+ "PO-Revision-Date: 2007-12-23 13:29+0020\n"
14
+ "Last-Translator: Alex Rootoff <rootoff at pisem.net>\n"
15
+ "Language-Team: Ukrainian\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+
20
+ #: hello2.rb:9
21
+ msgid "World"
22
+ msgstr "Світ"
23
+
24
+ #: hello2.rb:8
25
+ msgid "One is %{num}\n"
26
+ msgstr "Один є %{num}\n"
27
+
28
+ #: hello2.rb:9
29
+ msgid "Hello %{world}\n"
30
+ msgstr "Привіт, %{world}\n"
@@ -0,0 +1,26 @@
1
+ # Hello World noop -- sample for ruby-gettext-package
2
+ #
3
+ # Copyright (C) 2002-2006 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Alex Rootoff <rootoff at pisem.net>, 2007.
8
+ #
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: ruby-gettext 1.1.1\n"
12
+ "POT-Creation-Date: 2002-02-21 23:23:08+0900\n"
13
+ "PO-Revision-Date: 2007-12-23 13:58+0200\n"
14
+ "Last-Translator: Alex Rootoff <rootoff at pisem.net>\n"
15
+ "Language-Team: Ukrainian\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+
20
+ #: hello_noop.rb:8
21
+ msgid "Hello World"
22
+ msgstr "Привіт, світ"
23
+
24
+ #: hello_noop.rb:8
25
+ msgid "Hello World2"
26
+ msgstr "Привіт, світ2"
@@ -0,0 +1,29 @@
1
+ # hello_plural.po - sample for plural messages
2
+ #
3
+ # Copyright (C) 2002-2006 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Alex Rootoff <rootoff at pisem.net>, 2007.
8
+ #
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: ruby-gettext 1.1.1\n"
12
+ "POT-Creation-Date: 2002-10-21 15:32:15+0900\n"
13
+ "PO-Revision-Date: 2007-12-23 13:22+0020\n"
14
+ "Last-Translator: Alex Rootoff <rootoff at pisem.net>\n"
15
+ "Language-Team: Ukrainian\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
20
+ "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
21
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
22
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
23
+
24
+ #: hello_plural.rb:11
25
+ msgid "There is an apple.\n"
26
+ msgid_plural "There are %{num} apples.\n"
27
+ msgstr[0] "Є одне яблуко"
28
+ msgstr[1] "Є %{num} яблука"
29
+ msgstr[2] "Є %{num} яблук"
@@ -0,0 +1,34 @@
1
+ # helloglade2.po - sample for Ruby/Libglade2
2
+ #
3
+ # Copyright (C) 2005,2006 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Alex Rootoff <rootoff at pisem.net>, 2007.
8
+ #
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: ruby-gettext 1.1.1\n"
12
+ "POT-Creation-Date: 2004-07-03 23:38+0900\n"
13
+ "PO-Revision-Date: 2007-12-23 13:12+0200\n"
14
+ "Last-Translator: Alex Rootoff <rootoff at pisem.net>\n"
15
+ "Language-Team: Ukrainian\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
20
+ "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
21
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
22
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
23
+
24
+ #: helloglade2.glade:8
25
+ msgid "window1"
26
+ msgstr "вікно1"
27
+
28
+ #: helloglade2.glade:29
29
+ msgid "first line\nsecond line\nthird line"
30
+ msgstr "перша стрічка\nдруга стрічка\nтретя стрічка"
31
+
32
+ #: helloglade2.glade:53
33
+ msgid "<Hello world>"
34
+ msgstr "<Привіт, світ>"
@@ -0,0 +1,22 @@
1
+ # Hello World for Ruby/GTK -- sample for ruby-gettext-package
2
+ #
3
+ # Copyright (C) 2001-2006 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Alex Rootoff <rootoff at pisem.net>, 2007.
8
+ #
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: ruby-gettext 1.1.1\n"
12
+ "POT-Creation-Date: 2001-12-24 01:52:10+0900\n"
13
+ "PO-Revision-Date: 2007-12-23 13:17+0200\n"
14
+ "Last-Translator: Alex Rootoff <rootoff at pisem.net>\n"
15
+ "Language-Team: Ukrainian\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+
20
+ #: ../hellogtk.rb:14
21
+ msgid "hello, gtk world"
22
+ msgstr "Привіт, світ gtk"
@@ -0,0 +1,26 @@
1
+ # hellotk.po - sample for Ruby/TK
2
+ #
3
+ # Copyright (C) 2004 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as the Ruby-GetText-Package.
6
+ #
7
+ # Alex Rootoff <rootoff at pisem.net>, 2007.
8
+ #
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: ruby-gettext 1.1.1\n"
12
+ "POT-Creation-Date: 2004-11-05 21:38+0900\n"
13
+ "PO-Revision-Date: 2007-12-23 13:42+0200\n"
14
+ "Last-Translator: Alex Rootoff <rootoff at pisem.net>\n"
15
+ "Language-Team: Ukrainian\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
20
+ "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
21
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
22
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
23
+
24
+ #: hellotk.rb:10
25
+ msgid "hello, tk world"
26
+ msgstr "Привіт, світ tk"
data/samples/rails/README CHANGED
@@ -2,43 +2,27 @@ Ruby-GetText Sample blog for Ruby on Rails and Ruby-GetText-Package.
2
2
 
3
3
  Requirement
4
4
  -----------
5
- * ruby-1.8.3 or later
6
- * rails-1.1.4 or later
5
+ * ruby-1.8.6 or later
6
+ * rails-2.0.2 or later
7
7
  * rake
8
- * mysql
8
+ * mysql/postgresql
9
9
 
10
10
  Installation
11
11
  ------------
12
12
  1. Setup rails and mysql, Ruby-GetText-Package.
13
13
  2. Create DB and a table
14
- * using db/mysql.sql.
15
- a) $ mysqladmin -u <root> create blog
16
- * using db/postgresql.sql.
17
- a) $ su - postgres
18
- b) $ createdb blog
14
+ * Edit config/database.yml for your environment.
15
+ * rake db:create
16
+ * rake db:migrate
17
+ * rake db:create RAILS_ENV=test (for testing)
19
18
 
20
- * for testing, change the dbname: blog => blog_test.
21
-
22
- 3. Edit config/database.xml
23
- 4. Create database tables using rake.
24
- * rake db:schema:load
25
- 5. Create mofiles using rake.
26
- $ rake makemo
27
-
28
- 6. (One click ruby installer for Windonws user only)
29
- On command prompt:
30
-
31
- > set PATH=c:\ruby\bin;%PATH%
32
- (If you have GTK+ and Ruby/GTK2)
33
- > set PATH=c:\gtk\bin;%PATH%
34
-
35
- 7. Then run the http server.
19
+ 3. Then run the http server.
36
20
 
37
21
  $ ruby script/server
38
22
 
39
23
  Access the http server from WWW browser:
40
24
 
41
- http://localhost:3000/blog
25
+ http://localhost:3000/articles
42
26
 
43
27
 
44
28
  Files
@@ -55,17 +39,17 @@ Files
55
39
  - Bind a textdomain to your application.
56
40
  The most important file in this sample.
57
41
 
58
- * app/controllers/blog_controller.rb
42
+ * app/controllers/articles_controller.rb
59
43
  - The main controller which localized.
60
44
 
61
45
  * app/models/article.rb
62
46
  - a model which localized.
63
47
 
64
- * app/helpers/blog_helper.rb
48
+ * app/helpers/articles_helper.rb
65
49
  - a localized helper.
66
50
 
67
- * app/views/**/*.rhtml
68
- - Localized rhtml files.
51
+ * app/views/**/*.erb
52
+ - Localized ERB files.
69
53
 
70
54
  * vendor/plugins/gettext/*
71
55
  - a localized "Vendor plugin". It has its own textdomain.
@@ -74,7 +58,7 @@ Files
74
58
  * po/* (blog.po[t])
75
59
  - Catalog files which translators edit. They are convert to
76
60
  mofiles by "rake makemo".
77
- - blog.po[t] is for blog_controller and its views.
61
+ - blog.po[t] is for articles_controller and its views.
78
62
 
79
63
  * db/schema.rb
80
64
  - A file to create a database table with rake db:schema:load.
@@ -82,7 +66,7 @@ Files
82
66
  * public/stylesheets/blog.css
83
67
  - a CSS file for this sample.
84
68
 
85
- * test/functional/blog_controller_test.rb
69
+ * test/functional/articles_controller_test.rb
86
70
  - a test script.
87
71
 
88
72
  * others
@@ -1,5 +1,5 @@
1
1
  # Add your own tasks in files placed in lib/tasks ending in .rake,
2
- # for example lib/tasks/switchtower.rake, and they will automatically be available to Rake.
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
3
 
4
4
  require(File.join(File.dirname(__FILE__), 'config', 'boot'))
5
5
 
@@ -1,10 +1,16 @@
1
1
  # application.rb - a sample script for Ruby on Rails
2
- #
3
- # Copyright (C) 2005,2006 Masao Mutoh
2
+ #
3
+ # Copyright (C) 2005-2008 Masao Mutoh
4
4
  #
5
5
  # This file is distributed under the same license as Ruby-GetText-Package.
6
6
 
7
7
  class ApplicationController < ActionController::Base
8
+ helper :all # include all helpers, all the time
9
+
10
+ # See ActionController::RequestForgeryProtection for details
11
+ # Uncomment the :secret if you're not using the cookie session store
12
+ protect_from_forgery # :secret => '14fef7d49789580d8e38f47a3bd62c30'
13
+
8
14
  # Initialize GetText and Content-Type.
9
15
  # You need to call this once a request from WWW browser.
10
16
  # You can select the scope of the textdomain.
@@ -13,7 +19,7 @@ class ApplicationController < ActionController::Base
13
19
  # 2. If you call init_gettext in each controllers
14
20
  # (In this sample, blog_controller.rb is applicable)
15
21
  # The textdomains are applied to each controllers/views.
16
- init_gettext "blog" # textdomain, charset = "UTF-8", content_type = "text/html"
22
+ init_gettext "blog" # textdomain, options(:charset, :content_type)
17
23
 
18
24
  =begin
19
25
  # You can set callback methods. These methods are called on the each WWW request.
@@ -26,8 +32,9 @@ class ApplicationController < ActionController::Base
26
32
  =end
27
33
 
28
34
  =begin
29
- # you can redefined the title/explanation of the top of the error message.
35
+ # you can redefined the title/explanation of the top of the error message.
30
36
  ActionView::Helpers::ActiveRecordHelper::L10n.set_error_message_title(N_("An error is occured on %{record}"), N_("%{num} errors are occured on %{record}"))
31
37
  ActionView::Helpers::ActiveRecordHelper::L10n.set_error_message_explanation(N_("The error is:"), N_("The errors are:"))
32
38
  =end
39
+
33
40
  end
@@ -0,0 +1,96 @@
1
+ # articles_controller.rb - a sample script for Ruby on Rails
2
+ #
3
+ # Copyright (C) 2005-2008 Masao Mutoh
4
+ #
5
+ # This file is distributed under the same license as Ruby-GetText-Package.
6
+
7
+ class ArticlesController < ApplicationController
8
+ # If you want to have textdomains each as controllers.
9
+ # You need to bind textdomain here.
10
+
11
+ #init_gettext "blog"
12
+
13
+ # GET /articles
14
+ # GET /articles.xml
15
+ def index
16
+ @articles = Article.find(:all, :order => 'lastupdate desc, id desc')
17
+
18
+ respond_to do |format|
19
+ format.html # index.html.erb
20
+ format.xml { render :xml => @articles }
21
+ end
22
+ end
23
+
24
+ # GET /articles/1
25
+ # GET /articles/1.xml
26
+ def show
27
+ @article = Article.find(params[:id])
28
+
29
+ respond_to do |format|
30
+ format.html # show.html.erb
31
+ format.xml { render :xml => @article }
32
+ end
33
+ end
34
+
35
+ # GET /articles/new
36
+ # GET /articles/new.xml
37
+ def new
38
+ @article = Article.new
39
+
40
+ respond_to do |format|
41
+ format.html # new.html.erb
42
+ format.xml { render :xml => @article }
43
+ end
44
+ end
45
+
46
+ # GET /articles/1/edit
47
+ def edit
48
+ @article = Article.find(params[:id])
49
+ end
50
+
51
+ # POST /articles
52
+ # POST /articles.xml
53
+ def create
54
+ @article = Article.new(params[:article])
55
+
56
+ respond_to do |format|
57
+ if @article.save
58
+ flash[:notice] = _('Article was successfully created.')
59
+ format.html { redirect_to(@article) }
60
+ format.xml { render :xml => @article, :status => :created, :location => @article }
61
+ else
62
+ format.html { render :action => "new" }
63
+ format.xml { render :xml => @article.errors, :status => :unprocessable_entity }
64
+ end
65
+ end
66
+ end
67
+
68
+ # PUT /articles/1
69
+ # PUT /articles/1.xml
70
+ def update
71
+ @article = Article.find(params[:id])
72
+
73
+ respond_to do |format|
74
+ if @article.update_attributes(params[:article])
75
+ flash[:notice] = _('Article was successfully updated.')
76
+ format.html { redirect_to(@article) }
77
+ format.xml { head :ok }
78
+ else
79
+ format.html { render :action => "edit" }
80
+ format.xml { render :xml => @article.errors, :status => :unprocessable_entity }
81
+ end
82
+ end
83
+ end
84
+
85
+ # DELETE /articles/1
86
+ # DELETE /articles/1.xml
87
+ def destroy
88
+ @article = Article.find(params[:id])
89
+ @article.destroy
90
+
91
+ respond_to do |format|
92
+ format.html { redirect_to(articles_url) }
93
+ format.xml { head :ok }
94
+ end
95
+ end
96
+ end
@@ -1,3 +1,3 @@
1
- # The methods added to this helper will be available to all templates in the application.
1
+ # Methods added to this helper will be available to all templates in the application.
2
2
  module ApplicationHelper
3
3
  end
@@ -1,16 +1,15 @@
1
- # blog_helper.rb - a sample script for Ruby on Rails
1
+ # articles_helper.rb - a sample script for Ruby on Rails
2
2
  #
3
- # Copyright (C) 2005 Masao Mutoh
3
+ # Copyright (C) 2005-2008 Masao Mutoh
4
4
  #
5
5
  # This file is distributed under the same license as Ruby-GetText-Package.
6
-
7
6
  #
8
- # BlogHelper is bound a textdomain which is bound in application.rb or
9
- # blog_controller.rb.
7
+ # ArticlesHelper is bound a textdomain which is bound in application.rb or
8
+ # articles_controller.rb.
10
9
  # So you don't need to call bindtextdomain here.
11
10
  #
12
11
 
13
- module BlogHelper
12
+ module ArticlesHelper
14
13
  def show_article(article, show_link = true)
15
14
  ret = %Q[
16
15
  <h2>#{article["title"]} (#{article["lastupdate"]})</h2>
@@ -32,7 +31,7 @@ module BlogHelper
32
31
  end
33
32
 
34
33
  def show_navigation
35
- articles = BlogController.new.list
34
+ articles = Article.find(:all, :order => 'lastupdate desc, id desc')
36
35
  %Q[
37
36
  <div class="navigation">
38
37
  <img src="/images/rails.png" width="100" height="100" />