gettext 1.93.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (881) hide show
  1. data/ChangeLog +16 -1941
  2. data/ChangeLog-1 +2016 -0
  3. data/{NEWS → NEWS-1} +2 -0
  4. data/README.rdoc +251 -0
  5. data/Rakefile +46 -57
  6. data/bin/rgettext +1 -1
  7. data/bin/rmsgfmt +2 -2
  8. data/bin/rmsgmerge +3 -3
  9. data/data/locale/bg/LC_MESSAGES/rgettext.mo +0 -0
  10. data/data/locale/bs/LC_MESSAGES/rgettext.mo +0 -0
  11. data/data/locale/ca/LC_MESSAGES/rgettext.mo +0 -0
  12. data/data/locale/cs/LC_MESSAGES/rgettext.mo +0 -0
  13. data/data/locale/de/LC_MESSAGES/rgettext.mo +0 -0
  14. data/data/locale/el/LC_MESSAGES/rgettext.mo +0 -0
  15. data/data/locale/eo/LC_MESSAGES/rgettext.mo +0 -0
  16. data/data/locale/es/LC_MESSAGES/rgettext.mo +0 -0
  17. data/data/locale/et/LC_MESSAGES/rgettext.mo +0 -0
  18. data/data/locale/fr/LC_MESSAGES/rgettext.mo +0 -0
  19. data/data/locale/hr/LC_MESSAGES/rgettext.mo +0 -0
  20. data/data/locale/hu/LC_MESSAGES/rgettext.mo +0 -0
  21. data/data/locale/it/LC_MESSAGES/rgettext.mo +0 -0
  22. data/data/locale/ja/LC_MESSAGES/rgettext.mo +0 -0
  23. data/data/locale/ko/LC_MESSAGES/rgettext.mo +0 -0
  24. data/data/locale/lv/LC_MESSAGES/rgettext.mo +0 -0
  25. data/data/locale/nb/LC_MESSAGES/rgettext.mo +0 -0
  26. data/data/locale/nl/LC_MESSAGES/rgettext.mo +0 -0
  27. data/data/locale/pt_BR/LC_MESSAGES/rgettext.mo +0 -0
  28. data/data/locale/ru/LC_MESSAGES/rgettext.mo +0 -0
  29. data/data/locale/sr/LC_MESSAGES/rgettext.mo +0 -0
  30. data/data/locale/sv/LC_MESSAGES/rgettext.mo +0 -0
  31. data/data/locale/ua/LC_MESSAGES/rgettext.mo +0 -0
  32. data/data/locale/vi/LC_MESSAGES/rgettext.mo +0 -0
  33. data/data/locale/zh/LC_MESSAGES/rgettext.mo +0 -0
  34. data/data/locale/zh_TW/LC_MESSAGES/rgettext.mo +0 -0
  35. data/gettext.gemspec +40 -0
  36. data/lib/gettext.rb +101 -431
  37. data/lib/gettext/cgi.rb +4 -4
  38. data/lib/gettext/class_info.rb +54 -0
  39. data/lib/gettext/{iconv.rb → core_ext/iconv.rb} +1 -0
  40. data/lib/gettext/{string.rb → core_ext/string.rb} +12 -8
  41. data/lib/gettext/locale_path.rb +107 -0
  42. data/lib/gettext/mofile.rb +314 -0
  43. data/lib/gettext/parser/erb.rb +2 -1
  44. data/lib/gettext/parser/glade.rb +2 -1
  45. data/lib/gettext/parser/ruby.rb +66 -63
  46. data/lib/gettext/poparser.rb +3 -3
  47. data/lib/gettext/textdomain.rb +97 -171
  48. data/lib/gettext/textdomain_manager.rb +224 -0
  49. data/lib/gettext/tools.rb +195 -0
  50. data/lib/gettext/{rgettext.rb → tools/rgettext.rb} +74 -77
  51. data/lib/gettext/{rmsgfmt.rb → tools/rmsgfmt.rb} +12 -26
  52. data/lib/gettext/{rmsgmerge.rb → tools/rmsgmerge.rb} +3 -6
  53. data/lib/gettext/utils.rb +18 -135
  54. data/lib/gettext/version.rb +2 -2
  55. data/po/bg/rgettext.po +84 -88
  56. data/po/bs/rgettext.po +86 -90
  57. data/po/ca/rgettext.po +85 -88
  58. data/po/cs/rgettext.po +86 -90
  59. data/po/de/{rails.po → #rails.po#} +17 -16
  60. data/po/de/rgettext.po +84 -88
  61. data/po/el/rgettext.po +85 -89
  62. data/po/eo/rgettext.po +85 -89
  63. data/po/es/rgettext.po +84 -88
  64. data/po/et/rgettext.po +84 -88
  65. data/po/fr/rgettext.po +84 -88
  66. data/po/hr/rgettext.po +86 -90
  67. data/po/hu/rgettext.po +84 -88
  68. data/po/it/rgettext.po +82 -86
  69. data/po/ja/rails.po.old +150 -0
  70. data/po/ja/rgettext.po +84 -88
  71. data/po/ko/rgettext.po +86 -90
  72. data/po/lv/rgettext.po +84 -88
  73. data/po/nb/rgettext.po +84 -88
  74. data/po/nl/rgettext.po +86 -90
  75. data/po/pt_BR/rgettext.po +84 -88
  76. data/po/rgettext.pot +54 -70
  77. data/po/ru/rgettext.po +84 -88
  78. data/po/sr/rgettext.po +84 -88
  79. data/po/sv/rgettext.po +57 -73
  80. data/po/ua/rgettext.po +85 -89
  81. data/po/vi/rgettext.po +84 -88
  82. data/po/zh/rgettext.po +83 -87
  83. data/po/zh_TW/rgettext.po +83 -87
  84. data/samples/README +4 -8
  85. data/samples/cgi/Rakefile +2 -2
  86. data/samples/cgi/cookie.cgi +1 -0
  87. data/samples/cgi/helloerb1.cgi +8 -4
  88. data/samples/cgi/helloerb2.cgi +6 -4
  89. data/samples/cgi/hellolib.rb +1 -2
  90. data/samples/cgi/index.cgi +1 -0
  91. data/samples/cgi/locale/bg/LC_MESSAGES/hellolib.mo +0 -0
  92. data/samples/cgi/locale/bs/LC_MESSAGES/hellolib.mo +0 -0
  93. data/samples/cgi/locale/ca/LC_MESSAGES/hellolib.mo +0 -0
  94. data/samples/cgi/locale/cs/LC_MESSAGES/hellolib.mo +0 -0
  95. data/samples/cgi/locale/de/LC_MESSAGES/hellolib.mo +0 -0
  96. data/samples/cgi/locale/el/LC_MESSAGES/hellolib.mo +0 -0
  97. data/samples/cgi/locale/eo/LC_MESSAGES/hellolib.mo +0 -0
  98. data/samples/cgi/locale/es/LC_MESSAGES/hellolib.mo +0 -0
  99. data/samples/cgi/locale/fr/LC_MESSAGES/hellolib.mo +0 -0
  100. data/samples/cgi/locale/hr/LC_MESSAGES/hellolib.mo +0 -0
  101. data/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo +0 -0
  102. data/samples/cgi/locale/it/LC_MESSAGES/hellolib.mo +0 -0
  103. data/samples/cgi/locale/ja/LC_MESSAGES/helloerb1.mo +0 -0
  104. data/samples/cgi/locale/ja/LC_MESSAGES/helloerb2.mo +0 -0
  105. data/samples/cgi/locale/ja/LC_MESSAGES/hellolib.mo +0 -0
  106. data/samples/cgi/locale/ja/LC_MESSAGES/main.mo +0 -0
  107. data/samples/cgi/locale/ko/LC_MESSAGES/helloerb1.mo +0 -0
  108. data/samples/cgi/locale/ko/LC_MESSAGES/hellolib.mo +0 -0
  109. data/samples/cgi/locale/lv/LC_MESSAGES/hellolib.mo +0 -0
  110. data/samples/cgi/locale/nb/LC_MESSAGES/hellolib.mo +0 -0
  111. data/samples/cgi/locale/nl/LC_MESSAGES/hellolib.mo +0 -0
  112. data/samples/cgi/locale/pt_BR/LC_MESSAGES/hellolib.mo +0 -0
  113. data/samples/cgi/locale/ru/LC_MESSAGES/hellolib.mo +0 -0
  114. data/samples/cgi/locale/sr/LC_MESSAGES/hellolib.mo +0 -0
  115. data/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo +0 -0
  116. data/samples/cgi/locale/vi/LC_MESSAGES/hellolib.mo +0 -0
  117. data/samples/cgi/locale/zh/LC_MESSAGES/hellolib.mo +0 -0
  118. data/samples/cgi/locale/zh_TW/LC_MESSAGES/hellolib.mo +0 -0
  119. data/samples/cgi/po/ja/helloerb1.po +2 -2
  120. data/samples/cgi/po/ja/helloerb2.po +2 -2
  121. data/samples/cgi/po/ja/hellolib.po +2 -2
  122. data/samples/cgi/po/ja/main.po +2 -2
  123. data/samples/hello.rb +4 -3
  124. data/samples/hello2.rb +2 -1
  125. data/samples/{helloglade2.glade → hello_glade2.glade} +0 -0
  126. data/samples/{helloglade2.rb → hello_glade2.rb} +5 -4
  127. data/samples/{hellogtk2.rb → hello_gtk2.rb} +3 -3
  128. data/samples/hello_noop.rb +2 -1
  129. data/samples/hello_plural.rb +2 -1
  130. data/samples/{hellotk.rb → hello_tk.rb} +3 -2
  131. data/samples/locale/bg/LC_MESSAGES/hello.mo +0 -0
  132. data/samples/locale/bg/LC_MESSAGES/hello2.mo +0 -0
  133. data/samples/locale/bg/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  134. data/samples/locale/bg/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  135. data/samples/locale/bg/LC_MESSAGES/hello_plural.mo +0 -0
  136. data/samples/locale/bg/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  137. data/samples/locale/bs/LC_MESSAGES/hello.mo +0 -0
  138. data/samples/locale/bs/LC_MESSAGES/hello2.mo +0 -0
  139. data/samples/locale/bs/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  140. data/samples/locale/bs/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  141. data/samples/locale/bs/LC_MESSAGES/hello_plural.mo +0 -0
  142. data/samples/locale/bs/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  143. data/samples/locale/ca/LC_MESSAGES/hello.mo +0 -0
  144. data/samples/locale/ca/LC_MESSAGES/hello2.mo +0 -0
  145. data/samples/locale/ca/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  146. data/samples/locale/ca/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  147. data/samples/locale/ca/LC_MESSAGES/hello_plural.mo +0 -0
  148. data/samples/locale/ca/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  149. data/samples/locale/cs/LC_MESSAGES/hello.mo +0 -0
  150. data/samples/locale/cs/LC_MESSAGES/hello2.mo +0 -0
  151. data/samples/locale/cs/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  152. data/samples/locale/cs/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  153. data/samples/locale/cs/LC_MESSAGES/hello_plural.mo +0 -0
  154. data/samples/locale/cs/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  155. data/samples/locale/de/LC_MESSAGES/hello.mo +0 -0
  156. data/samples/locale/de/LC_MESSAGES/hello2.mo +0 -0
  157. data/samples/locale/de/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  158. data/samples/locale/de/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  159. data/samples/locale/de/LC_MESSAGES/hello_plural.mo +0 -0
  160. data/samples/locale/de/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  161. data/samples/locale/el/LC_MESSAGES/hello.mo +0 -0
  162. data/samples/locale/el/LC_MESSAGES/hello2.mo +0 -0
  163. data/samples/locale/el/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  164. data/samples/locale/el/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  165. data/samples/locale/el/LC_MESSAGES/hello_plural.mo +0 -0
  166. data/samples/locale/el/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  167. data/samples/locale/eo/LC_MESSAGES/hello.mo +0 -0
  168. data/samples/locale/eo/LC_MESSAGES/hello2.mo +0 -0
  169. data/samples/locale/eo/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  170. data/samples/locale/eo/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  171. data/samples/locale/eo/LC_MESSAGES/hello_plural.mo +0 -0
  172. data/samples/locale/eo/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  173. data/samples/locale/es/LC_MESSAGES/hello.mo +0 -0
  174. data/samples/locale/es/LC_MESSAGES/hello2.mo +0 -0
  175. data/samples/locale/es/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  176. data/samples/locale/es/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  177. data/samples/locale/es/LC_MESSAGES/hello_plural.mo +0 -0
  178. data/samples/locale/es/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  179. data/samples/locale/fr/LC_MESSAGES/hello.mo +0 -0
  180. data/samples/locale/fr/LC_MESSAGES/hello2.mo +0 -0
  181. data/samples/locale/fr/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  182. data/samples/locale/fr/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  183. data/samples/locale/fr/LC_MESSAGES/hello_plural.mo +0 -0
  184. data/samples/locale/fr/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  185. data/samples/locale/hr/LC_MESSAGES/hello.mo +0 -0
  186. data/samples/locale/hr/LC_MESSAGES/hello2.mo +0 -0
  187. data/samples/locale/hr/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  188. data/samples/locale/hr/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  189. data/samples/locale/hr/LC_MESSAGES/hello_plural.mo +0 -0
  190. data/samples/locale/hr/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  191. data/samples/locale/hu/LC_MESSAGES/hello.mo +0 -0
  192. data/samples/locale/hu/LC_MESSAGES/hello2.mo +0 -0
  193. data/samples/locale/hu/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  194. data/samples/locale/hu/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  195. data/samples/locale/hu/LC_MESSAGES/hello_plural.mo +0 -0
  196. data/samples/locale/hu/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  197. data/samples/locale/it/LC_MESSAGES/hello.mo +0 -0
  198. data/samples/locale/it/LC_MESSAGES/hello2.mo +0 -0
  199. data/samples/locale/it/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  200. data/samples/locale/it/LC_MESSAGES/{hellotk.mo → hello_gtk.mo} +0 -0
  201. data/samples/locale/it/LC_MESSAGES/hello_plural.mo +0 -0
  202. data/samples/locale/it/LC_MESSAGES/{hellogtk.mo → hello_tk.mo} +0 -0
  203. data/samples/locale/ja/LC_MESSAGES/hello.mo +0 -0
  204. data/samples/locale/ja/LC_MESSAGES/hello2.mo +0 -0
  205. data/samples/locale/ja/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  206. data/samples/locale/ja/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  207. data/samples/locale/ja/LC_MESSAGES/hello_plural.mo +0 -0
  208. data/samples/locale/ja/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  209. data/samples/locale/ko/LC_MESSAGES/hello.mo +0 -0
  210. data/samples/locale/ko/LC_MESSAGES/hello2.mo +0 -0
  211. data/samples/locale/ko/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  212. data/samples/locale/ko/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  213. data/samples/locale/ko/LC_MESSAGES/hello_plural.mo +0 -0
  214. data/samples/locale/ko/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  215. data/samples/locale/lv/LC_MESSAGES/hello.mo +0 -0
  216. data/samples/locale/lv/LC_MESSAGES/hello2.mo +0 -0
  217. data/samples/locale/lv/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  218. data/samples/locale/lv/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  219. data/samples/locale/lv/LC_MESSAGES/hello_plural.mo +0 -0
  220. data/samples/locale/lv/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  221. data/samples/locale/nb/LC_MESSAGES/hello.mo +0 -0
  222. data/samples/locale/nb/LC_MESSAGES/hello2.mo +0 -0
  223. data/samples/locale/nb/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  224. data/samples/locale/nb/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  225. data/samples/locale/nb/LC_MESSAGES/hello_plural.mo +0 -0
  226. data/samples/locale/nb/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  227. data/samples/locale/nl/LC_MESSAGES/hello.mo +0 -0
  228. data/samples/locale/nl/LC_MESSAGES/hello2.mo +0 -0
  229. data/samples/locale/nl/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  230. data/samples/locale/nl/LC_MESSAGES/{hellotk.mo → hello_gtk.mo} +0 -0
  231. data/samples/locale/nl/LC_MESSAGES/hello_plural.mo +0 -0
  232. data/samples/locale/nl/LC_MESSAGES/{hellogtk.mo → hello_tk.mo} +0 -0
  233. data/samples/locale/pt_BR/LC_MESSAGES/hello.mo +0 -0
  234. data/samples/locale/pt_BR/LC_MESSAGES/hello2.mo +0 -0
  235. data/samples/locale/pt_BR/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  236. data/samples/locale/pt_BR/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  237. data/samples/locale/pt_BR/LC_MESSAGES/hello_plural.mo +0 -0
  238. data/samples/locale/pt_BR/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  239. data/samples/locale/ru/LC_MESSAGES/hello.mo +0 -0
  240. data/samples/locale/ru/LC_MESSAGES/hello2.mo +0 -0
  241. data/samples/locale/ru/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  242. data/samples/locale/ru/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  243. data/samples/locale/ru/LC_MESSAGES/hello_plural.mo +0 -0
  244. data/samples/locale/ru/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  245. data/samples/locale/sr/LC_MESSAGES/hello.mo +0 -0
  246. data/samples/locale/sr/LC_MESSAGES/hello2.mo +0 -0
  247. data/samples/locale/sr/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  248. data/samples/locale/sr/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  249. data/samples/locale/sr/LC_MESSAGES/hello_plural.mo +0 -0
  250. data/samples/locale/sr/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  251. data/samples/locale/sv/LC_MESSAGES/hello.mo +0 -0
  252. data/samples/locale/sv/LC_MESSAGES/hello2.mo +0 -0
  253. data/samples/locale/sv/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  254. data/samples/locale/sv/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  255. data/samples/locale/sv/LC_MESSAGES/hello_plural.mo +0 -0
  256. data/samples/locale/sv/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  257. data/samples/locale/ua/LC_MESSAGES/hello.mo +0 -0
  258. data/samples/locale/ua/LC_MESSAGES/hello2.mo +0 -0
  259. data/samples/locale/ua/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  260. data/samples/locale/ua/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  261. data/samples/locale/ua/LC_MESSAGES/hello_plural.mo +0 -0
  262. data/samples/locale/ua/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  263. data/samples/locale/vi/LC_MESSAGES/hello.mo +0 -0
  264. data/samples/locale/vi/LC_MESSAGES/hello2.mo +0 -0
  265. data/samples/locale/vi/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  266. data/samples/locale/vi/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  267. data/samples/locale/vi/LC_MESSAGES/hello_plural.mo +0 -0
  268. data/samples/locale/vi/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  269. data/samples/locale/zh/LC_MESSAGES/hello.mo +0 -0
  270. data/samples/locale/zh/LC_MESSAGES/hello2.mo +0 -0
  271. data/samples/locale/zh/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  272. data/samples/locale/zh/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  273. data/samples/locale/zh/LC_MESSAGES/hello_plural.mo +0 -0
  274. data/samples/locale/zh/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  275. data/samples/locale/zh_TW/LC_MESSAGES/hello.mo +0 -0
  276. data/samples/locale/zh_TW/LC_MESSAGES/hello2.mo +0 -0
  277. data/samples/locale/zh_TW/LC_MESSAGES/{helloglade2.mo → hello_glade2.mo} +0 -0
  278. data/samples/locale/zh_TW/LC_MESSAGES/{hellogtk.mo → hello_gtk.mo} +0 -0
  279. data/samples/locale/zh_TW/LC_MESSAGES/hello_plural.mo +0 -0
  280. data/samples/locale/zh_TW/LC_MESSAGES/{hellotk.mo → hello_tk.mo} +0 -0
  281. data/samples/makemo.rb +3 -2
  282. data/samples/po/bg/{helloglade2.po → hello_glade2.po} +4 -4
  283. data/samples/po/bg/{hellogtk.po → hello_gtk.po} +1 -1
  284. data/samples/po/bg/{hellotk.po → hello_tk.po} +2 -2
  285. data/samples/po/bs/{helloglade2.po → hello_glade2.po} +6 -6
  286. data/samples/po/bs/{hellogtk.po → hello_gtk.po} +3 -3
  287. data/samples/po/bs/{hellotk.po → hello_tk.po} +4 -4
  288. data/samples/po/ca/{helloglade2.po → hello_glade2.po} +4 -4
  289. data/samples/po/ca/{hellogtk.po → hello_gtk.po} +1 -1
  290. data/samples/po/ca/{hellotk.po → hello_tk.po} +2 -2
  291. data/samples/po/cs/hello.po +1 -1
  292. data/samples/po/cs/hello2.po +1 -1
  293. data/samples/po/cs/{helloglade2.po → hello_glade2.po} +3 -3
  294. data/samples/po/cs/{hellogtk.po → hello_gtk.po} +2 -2
  295. data/samples/po/cs/hello_noop.po +1 -1
  296. data/samples/po/cs/{hellotk.po → hello_tk.po} +2 -2
  297. data/samples/po/de/hello.po +1 -1
  298. data/samples/po/de/hello2.po +1 -1
  299. data/samples/po/de/{helloglade2.po → hello_glade2.po} +3 -3
  300. data/samples/po/de/{hellogtk.po → hello_gtk.po} +2 -2
  301. data/samples/po/de/hello_noop.po +1 -1
  302. data/samples/po/de/{hellotk.po → hello_tk.po} +2 -2
  303. data/samples/po/el/hello.po +1 -1
  304. data/samples/po/el/{helloglade2.po → hello_glade2.po} +4 -4
  305. data/samples/po/el/{hellogtk.po → hello_gtk.po} +1 -1
  306. data/samples/po/el/{hellotk.po → hello_tk.po} +2 -2
  307. data/samples/po/eo/{helloglade2.po → hello_glade2.po} +4 -4
  308. data/samples/po/eo/{hellogtk.po → hello_gtk.po} +1 -1
  309. data/samples/po/eo/{hellotk.po → hello_tk.po} +2 -2
  310. data/samples/po/es/{helloglade2.po → hello_glade2.po} +4 -4
  311. data/samples/po/es/{hellogtk.po → hello_gtk.po} +2 -2
  312. data/samples/po/es/{hellotk.po → hello_tk.po} +2 -2
  313. data/samples/po/fr/{helloglade2.po → hello_glade2.po} +4 -4
  314. data/samples/po/fr/{hellogtk.po → hello_gtk.po} +2 -2
  315. data/samples/po/fr/{hellotk.po → hello_tk.po} +2 -2
  316. data/samples/po/{helloglade2.pot → hello_glade2.pot} +4 -4
  317. data/samples/po/{hellogtk.pot → hello_gtk.pot} +1 -1
  318. data/samples/po/{hellotk.pot → hello_tk.pot} +2 -2
  319. data/samples/po/hr/{helloglade2.po → hello_glade2.po} +6 -6
  320. data/samples/po/hr/{hellogtk.po → hello_gtk.po} +3 -3
  321. data/samples/po/hr/{hellotk.po → hello_tk.po} +4 -4
  322. data/samples/po/hu/{helloglade2.po → hello_glade2.po} +4 -4
  323. data/samples/po/hu/{hellogtk.po → hello_gtk.po} +1 -1
  324. data/samples/po/hu/{hellotk.po → hello_tk.po} +2 -2
  325. data/samples/po/it/hello.po +1 -1
  326. data/samples/po/it/hello2.po +1 -1
  327. data/samples/po/it/{helloglade2.po → hello_glade2.po} +4 -4
  328. data/samples/po/it/{hellogtk.po → hello_gtk.po} +2 -2
  329. data/samples/po/it/hello_noop.po +1 -1
  330. data/samples/po/it/{hellotk.po → hello_tk.po} +2 -2
  331. data/samples/po/ja/{helloglade2.po → hello_glade2.po} +4 -4
  332. data/samples/po/ja/{hellogtk.po → hello_gtk.po} +2 -2
  333. data/samples/po/ja/{hellotk.po → hello_tk.po} +2 -2
  334. data/samples/po/ko/hello.po +1 -1
  335. data/samples/po/ko/hello2.po +1 -1
  336. data/samples/po/ko/{helloglade2.po → hello_glade2.po} +3 -3
  337. data/samples/po/ko/{hellogtk.po → hello_gtk.po} +2 -2
  338. data/samples/po/ko/hello_noop.po +1 -1
  339. data/samples/po/ko/{hellotk.po → hello_tk.po} +1 -1
  340. data/samples/po/lv/{helloglade2.po → hello_glade2.po} +4 -4
  341. data/samples/po/lv/{hellogtk.po → hello_gtk.po} +1 -1
  342. data/samples/po/lv/{hellotk.po → hello_tk.po} +2 -2
  343. data/samples/po/nb/{helloglade2.po → hello_glade2.po} +5 -6
  344. data/samples/po/nb/{hellogtk.po → hello_gtk.po} +1 -1
  345. data/samples/po/nb/{hellotk.po → hello_tk.po} +2 -2
  346. data/samples/po/nl/hello.po +1 -1
  347. data/samples/po/nl/hello2.po +1 -1
  348. data/samples/po/nl/{helloglade2.po → hello_glade2.po} +5 -5
  349. data/samples/po/nl/{hellogtk.po → hello_gtk.po} +2 -2
  350. data/samples/po/nl/hello_noop.po +1 -1
  351. data/samples/po/nl/hello_plural.po +1 -1
  352. data/samples/po/nl/{hellotk.po → hello_tk.po} +2 -2
  353. data/samples/po/pt_BR/{helloglade2.po → hello_glade2.po} +4 -4
  354. data/samples/po/pt_BR/{hellogtk.po → hello_gtk.po} +1 -1
  355. data/samples/po/pt_BR/{hellotk.po → hello_tk.po} +0 -0
  356. data/samples/po/ru/{helloglade2.po → hello_glade2.po} +5 -5
  357. data/samples/po/ru/{hellogtk.po → hello_gtk.po} +3 -3
  358. data/samples/po/ru/{hellotk.po → hello_tk.po} +3 -3
  359. data/samples/po/sr/{helloglade2.po → hello_glade2.po} +4 -4
  360. data/samples/po/sr/{hellogtk.po → hello_gtk.po} +1 -1
  361. data/samples/po/sr/{hellotk.po → hello_tk.po} +2 -2
  362. data/samples/po/sv/{helloglade2.po → hello_glade2.po} +4 -4
  363. data/samples/po/sv/{hellogtk.po → hello_gtk.po} +1 -1
  364. data/samples/po/sv/{hellotk.po → hello_tk.po} +2 -2
  365. data/samples/po/test.rb +11 -0
  366. data/samples/po/ua/{helloglade2.po → hello_glade2.po} +4 -4
  367. data/samples/po/ua/{hellogtk.po → hello_gtk.po} +1 -1
  368. data/samples/po/ua/{hellotk.po → hello_tk.po} +2 -2
  369. data/samples/po/vi/{helloglade2.po → hello_glade2.po} +4 -4
  370. data/samples/po/vi/{hellogtk.po → hello_gtk.po} +1 -1
  371. data/samples/po/vi/{hellotk.po → hello_tk.po} +2 -2
  372. data/samples/po/zh/{helloglade2.po → hello_glade2.po} +4 -4
  373. data/samples/po/zh/{hellogtk.po → hello_gtk.po} +2 -2
  374. data/samples/po/zh/{hellotk.po → hello_tk.po} +2 -2
  375. data/samples/po/zh_TW/{helloglade2.po → hello_glade2.po} +4 -4
  376. data/samples/po/zh_TW/{hellogtk.po → hello_gtk.po} +1 -1
  377. data/samples/po/zh_TW/{hellotk.po → hello_tk.po} +2 -2
  378. data/src/poparser.ry +1 -1
  379. data/test/README +1 -18
  380. data/test/Rakefile +14 -41
  381. data/test/locale/cr/LC_MESSAGES/plural.mo +0 -0
  382. data/test/locale/da/LC_MESSAGES/plural.mo +0 -0
  383. data/test/locale/da/LC_MESSAGES/plural_error.mo +0 -0
  384. data/test/locale/fr/LC_MESSAGES/plural_error.mo +0 -0
  385. data/test/locale/fr/LC_MESSAGES/test1.mo +0 -0
  386. data/test/locale/fr/LC_MESSAGES/test2.mo +0 -0
  387. data/test/locale/fr/LC_MESSAGES/test6.mo +0 -0
  388. data/test/locale/ir/LC_MESSAGES/plural.mo +0 -0
  389. data/test/locale/ja/LC_MESSAGES/npgettext.mo +0 -0
  390. data/test/locale/ja/LC_MESSAGES/{test_nsgettext.mo → nsgettext.mo} +0 -0
  391. data/test/locale/ja/LC_MESSAGES/{test_pgettext.mo → pgettext.mo} +0 -0
  392. data/test/locale/ja/LC_MESSAGES/plural_error.mo +0 -0
  393. data/test/locale/ja/LC_MESSAGES/{test_rubyparser.mo → rubyparser.mo} +0 -0
  394. data/test/locale/ja/LC_MESSAGES/{test_sgettext.mo → sgettext.mo} +0 -0
  395. data/test/locale/ja/LC_MESSAGES/test2.mo +0 -0
  396. data/test/locale/la/LC_MESSAGES/plural.mo +0 -0
  397. data/test/locale/la/LC_MESSAGES/plural_error.mo +0 -0
  398. data/test/locale/li/LC_MESSAGES/plural.mo +0 -0
  399. data/test/locale/po/LC_MESSAGES/plural.mo +0 -0
  400. data/test/locale/sl/LC_MESSAGES/plural.mo +0 -0
  401. data/test/po/fr/test1.po +3 -3
  402. data/test/po/fr/test6.po +1 -1
  403. data/test/po/ja/{test_npgettext.po → npgettext.po} +2 -2
  404. data/test/po/ja/{test_nsgettext.po → nsgettext.po} +8 -8
  405. data/test/po/ja/{test_pgettext.po → pgettext.po} +2 -2
  406. data/test/po/ja/{test_rubyparser.po → rubyparser.po} +0 -0
  407. data/test/po/ja/{test_sgettext.po → sgettext.po} +8 -8
  408. data/test/po/ja/test1.po +2 -2
  409. data/test/test_class_info.rb +80 -0
  410. data/test/test_gettext.rb +118 -257
  411. data/test/test_locale_path.rb +37 -0
  412. data/test/test_parser.rb +6 -105
  413. data/test/test_string.rb +1 -2
  414. data/test/test_textdomain_bind.rb +37 -0
  415. data/test/test_textdomain_multi.rb +69 -0
  416. data/test/test_textdomain_toplevel.rb +42 -0
  417. data/test/test_thread.rb +39 -0
  418. data/test/testlib/N_.rb +1 -1
  419. data/test/testlib/erb.rhtml +1 -1
  420. data/test/testlib/erb.rxml +1 -1
  421. data/test/testlib/gettext.rb +1 -1
  422. data/test/testlib/helper.rb +11 -0
  423. data/test/testlib/multi_textdomain.rb +119 -0
  424. data/test/testlib/ngettext.rb +1 -1
  425. data/test/testlib/npgettext.rb +1 -3
  426. data/test/testlib/nsgettext.rb +1 -3
  427. data/test/testlib/pgettext.rb +1 -3
  428. data/test/testlib/sgettext.rb +1 -3
  429. data/test/testlib/{testlib1.rb → simple.rb} +3 -4
  430. data/{samples/rails/public/favicon.ico → test/tools/files/app.pot} +0 -0
  431. data/test/{rails/public/favicon.ico → tools/files/de/app.po} +0 -0
  432. data/test/tools/files/en/app.po +0 -0
  433. data/test/tools/files/en/test.po +21 -0
  434. data/test/tools/files/simple_1.po +2 -0
  435. data/test/tools/files/simple_2.po +2 -0
  436. data/test/tools/files/simple_translation.rb +1 -0
  437. data/test/tools/files/version.po +7 -0
  438. data/test/tools/test.pot +21 -0
  439. data/test/tools/test_tools.rb +61 -0
  440. metadata +224 -853
  441. data/README +0 -177
  442. data/data/locale/bg/LC_MESSAGES/rails.mo +0 -0
  443. data/data/locale/bs/LC_MESSAGES/rails.mo +0 -0
  444. data/data/locale/ca/LC_MESSAGES/rails.mo +0 -0
  445. data/data/locale/cs/LC_MESSAGES/rails.mo +0 -0
  446. data/data/locale/de/LC_MESSAGES/rails.mo +0 -0
  447. data/data/locale/el/LC_MESSAGES/rails.mo +0 -0
  448. data/data/locale/eo/LC_MESSAGES/rails.mo +0 -0
  449. data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
  450. data/data/locale/et/LC_MESSAGES/rails.mo +0 -0
  451. data/data/locale/fr/LC_MESSAGES/rails.mo +0 -0
  452. data/data/locale/hr/LC_MESSAGES/rails.mo +0 -0
  453. data/data/locale/hu/LC_MESSAGES/rails.mo +0 -0
  454. data/data/locale/it/LC_MESSAGES/rails.mo +0 -0
  455. data/data/locale/ja/LC_MESSAGES/rails.mo +0 -0
  456. data/data/locale/ko/LC_MESSAGES/rails.mo +0 -0
  457. data/data/locale/lv/LC_MESSAGES/rails.mo +0 -0
  458. data/data/locale/nb/LC_MESSAGES/rails.mo +0 -0
  459. data/data/locale/nl/LC_MESSAGES/rails.mo +0 -0
  460. data/data/locale/pt_BR/LC_MESSAGES/rails.mo +0 -0
  461. data/data/locale/ru/LC_MESSAGES/rails.mo +0 -0
  462. data/data/locale/sr/LC_MESSAGES/rails.mo +0 -0
  463. data/data/locale/ua/LC_MESSAGES/rails.mo +0 -0
  464. data/data/locale/vi/LC_MESSAGES/rails.mo +0 -0
  465. data/data/locale/zh/LC_MESSAGES/rails.mo +0 -0
  466. data/data/locale/zh_TW/LC_MESSAGES/rails.mo +0 -0
  467. data/doc/classes/ActionView/Helpers/FormBuilder.html +0 -154
  468. data/doc/classes/ActionView/TemplateFinder.html +0 -152
  469. data/doc/classes/ActiveRecord/Base.html +0 -360
  470. data/doc/classes/ActiveRecord/ConnectionAdapters/Column.html +0 -182
  471. data/doc/classes/ActiveRecord/Migration.html +0 -118
  472. data/doc/classes/GetText.html +0 -2003
  473. data/doc/classes/GetText/ActiveRecordParser.html +0 -236
  474. data/doc/classes/GetText/Container.html +0 -119
  475. data/doc/classes/GetText/ErbContainer.html +0 -223
  476. data/doc/classes/GetText/ErbParser.html +0 -156
  477. data/doc/classes/GetText/GladeParser.html +0 -133
  478. data/doc/classes/GetText/NoboundTextDomainError.html +0 -119
  479. data/doc/classes/GetText/PoParser.html +0 -169
  480. data/doc/classes/GetText/Rails.html +0 -293
  481. data/doc/classes/GetText/RubyParser.html +0 -133
  482. data/doc/classes/GetText/TextDomain.html +0 -572
  483. data/doc/classes/GetText/TextDomainManager.html +0 -443
  484. data/doc/classes/Iconv.html +0 -257
  485. data/doc/classes/Iconv/Failure.html +0 -105
  486. data/doc/classes/Iconv/IllegalSequence.html +0 -118
  487. data/doc/classes/Iconv/InvalidCharacter.html +0 -118
  488. data/doc/classes/Iconv/InvalidEncoding.html +0 -118
  489. data/doc/classes/Locale.html +0 -840
  490. data/doc/classes/Locale/Object.html +0 -803
  491. data/doc/classes/Locale/SystemBase.html +0 -271
  492. data/doc/classes/Locale/SystemCGI.html +0 -312
  493. data/doc/classes/Locale/SystemJRuby.html +0 -112
  494. data/doc/classes/Locale/SystemPosix.html +0 -163
  495. data/doc/classes/Locale/SystemWin32.html +0 -167
  496. data/doc/classes/Locale/SystemWin32Table.html +0 -123
  497. data/doc/classes/MOFile.html +0 -695
  498. data/doc/classes/MOFile/HeaderRev1.html +0 -150
  499. data/doc/classes/MOFile/InvalidFormat.html +0 -111
  500. data/doc/classes/Module.html +0 -158
  501. data/doc/classes/String.html +0 -225
  502. data/doc/created.rid +0 -1
  503. data/doc/files/ChangeLog.html +0 -2623
  504. data/doc/files/README.html +0 -531
  505. data/doc/files/lib/gettext/active_record_rb.html +0 -110
  506. data/doc/files/lib/gettext/cgi_rb.html +0 -110
  507. data/doc/files/lib/gettext/container_rb.html +0 -108
  508. data/doc/files/lib/gettext/erb_rb.html +0 -109
  509. data/doc/files/lib/gettext/iconv_rb.html +0 -109
  510. data/doc/files/lib/gettext/mo_rb.html +0 -109
  511. data/doc/files/lib/gettext/parser/active_record_rb.html +0 -119
  512. data/doc/files/lib/gettext/parser/erb_rb.html +0 -109
  513. data/doc/files/lib/gettext/parser/glade_rb.html +0 -109
  514. data/doc/files/lib/gettext/parser/ruby_rb.html +0 -110
  515. data/doc/files/lib/gettext/poparser_rb.html +0 -108
  516. data/doc/files/lib/gettext/rails_compat_rb.html +0 -108
  517. data/doc/files/lib/gettext/rails_rb.html +0 -112
  518. data/doc/files/lib/gettext/rgettext_rb.html +0 -110
  519. data/doc/files/lib/gettext/rmsgfmt_rb.html +0 -113
  520. data/doc/files/lib/gettext/rmsgmerge_rb.html +0 -112
  521. data/doc/files/lib/gettext/string_rb.html +0 -101
  522. data/doc/files/lib/gettext/textdomain_rb.html +0 -109
  523. data/doc/files/lib/gettext/textdomainmanager_rb.html +0 -109
  524. data/doc/files/lib/gettext/utils_rb.html +0 -111
  525. data/doc/files/lib/gettext/version_rb.html +0 -101
  526. data/doc/files/lib/gettext_rb.html +0 -113
  527. data/doc/files/lib/locale/base_rb.html +0 -101
  528. data/doc/files/lib/locale/cgi_rb.html +0 -108
  529. data/doc/files/lib/locale/jruby_rb.html +0 -110
  530. data/doc/files/lib/locale/object_rb.html +0 -101
  531. data/doc/files/lib/locale/posix_rb.html +0 -108
  532. data/doc/files/lib/locale/win32_rb.html +0 -110
  533. data/doc/files/lib/locale/win32_table_rb.html +0 -101
  534. data/doc/files/lib/locale_rb.html +0 -111
  535. data/doc/fr_class_index.html +0 -61
  536. data/doc/fr_file_index.html +0 -58
  537. data/doc/fr_method_index.html +0 -163
  538. data/doc/index.html +0 -24
  539. data/doc/rdoc-style.css +0 -208
  540. data/lib/gettext/active_record.rb +0 -357
  541. data/lib/gettext/container.rb +0 -19
  542. data/lib/gettext/erb.rb +0 -56
  543. data/lib/gettext/mo.rb +0 -320
  544. data/lib/gettext/parser/active_record.rb +0 -184
  545. data/lib/gettext/rails.rb +0 -547
  546. data/lib/gettext/rails_compat.rb +0 -16
  547. data/lib/gettext/textdomainmanager.rb +0 -103
  548. data/lib/locale.rb +0 -183
  549. data/lib/locale/base.rb +0 -60
  550. data/lib/locale/cgi.rb +0 -103
  551. data/lib/locale/jruby.rb +0 -36
  552. data/lib/locale/object.rb +0 -237
  553. data/lib/locale/posix.rb +0 -36
  554. data/lib/locale/win32.rb +0 -49
  555. data/lib/locale/win32_table.rb +0 -235
  556. data/po/bg/rails.po +0 -169
  557. data/po/bs/rails.po +0 -185
  558. data/po/ca/rails.po +0 -170
  559. data/po/cs/rails.po +0 -189
  560. data/po/el/rails.po +0 -169
  561. data/po/eo/rails.po +0 -170
  562. data/po/es/rails.po +0 -170
  563. data/po/et/rails.po +0 -170
  564. data/po/fr/rails.po +0 -174
  565. data/po/hr/rails.po +0 -186
  566. data/po/hu/rails.po +0 -170
  567. data/po/it/rails.po +0 -176
  568. data/po/ja/rails.po +0 -170
  569. data/po/ko/rails.po +0 -174
  570. data/po/lv/rails.po +0 -175
  571. data/po/nb/rails.po +0 -171
  572. data/po/nl/rails.po +0 -178
  573. data/po/pt_BR/rails.po +0 -171
  574. data/po/rails.pot +0 -170
  575. data/po/ru/rails.po +0 -178
  576. data/po/sr/rails.po +0 -178
  577. data/po/ua/rails.po +0 -184
  578. data/po/vi/rails.po +0 -170
  579. data/po/zh/rails.po +0 -166
  580. data/po/zh_TW/rails.po +0 -166
  581. data/post-setup.rb +0 -17
  582. data/pre-setup.rb +0 -20
  583. data/samples/hello_textdomain.rb +0 -21
  584. data/samples/hellogtk.rb +0 -27
  585. data/samples/rails/README +0 -73
  586. data/samples/rails/Rakefile +0 -10
  587. data/samples/rails/app/controllers/application.rb +0 -40
  588. data/samples/rails/app/controllers/articles_controller.rb +0 -96
  589. data/samples/rails/app/helpers/application_helper.rb +0 -3
  590. data/samples/rails/app/helpers/articles_helper.rb +0 -60
  591. data/samples/rails/app/models/article.rb +0 -16
  592. data/samples/rails/app/views/articles/edit.html.erb +0 -21
  593. data/samples/rails/app/views/articles/index.html.erb +0 -17
  594. data/samples/rails/app/views/articles/new.html.erb +0 -19
  595. data/samples/rails/app/views/articles/show.html.erb +0 -6
  596. data/samples/rails/app/views/layouts/articles.html.erb +0 -26
  597. data/samples/rails/config/boot.rb +0 -109
  598. data/samples/rails/config/database.yml +0 -47
  599. data/samples/rails/config/environment.rb +0 -60
  600. data/samples/rails/config/environments/development.rb +0 -18
  601. data/samples/rails/config/environments/production.rb +0 -18
  602. data/samples/rails/config/environments/test.rb +0 -22
  603. data/samples/rails/config/initializers/inflections.rb +0 -10
  604. data/samples/rails/config/initializers/mime_types.rb +0 -5
  605. data/samples/rails/config/routes.rb +0 -38
  606. data/samples/rails/db/migrate/001_create_articles.rb +0 -14
  607. data/samples/rails/db/schema.rb +0 -20
  608. data/samples/rails/lib/tasks/gettext.rake +0 -16
  609. data/samples/rails/locale/bg/LC_MESSAGES/blog.mo +0 -0
  610. data/samples/rails/locale/bs/LC_MESSAGES/blog.mo +0 -0
  611. data/samples/rails/locale/ca/LC_MESSAGES/blog.mo +0 -0
  612. data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
  613. data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
  614. data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
  615. data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
  616. data/samples/rails/locale/eo/LC_MESSAGES/blog.mo +0 -0
  617. data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
  618. data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
  619. data/samples/rails/locale/hr/LC_MESSAGES/blog.mo +0 -0
  620. data/samples/rails/locale/hu/LC_MESSAGES/blog.mo +0 -0
  621. data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
  622. data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
  623. data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
  624. data/samples/rails/locale/lv/LC_MESSAGES/blog.mo +0 -0
  625. data/samples/rails/locale/nb/LC_MESSAGES/blog.mo +0 -0
  626. data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
  627. data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
  628. data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
  629. data/samples/rails/locale/sr/LC_MESSAGES/blog.mo +0 -0
  630. data/samples/rails/locale/ua/LC_MESSAGES/blog.mo +0 -0
  631. data/samples/rails/locale/vi/LC_MESSAGES/blog.mo +0 -0
  632. data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
  633. data/samples/rails/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
  634. data/samples/rails/po/bg/blog.po +0 -101
  635. data/samples/rails/po/blog.pot +0 -102
  636. data/samples/rails/po/bs/blog.po +0 -103
  637. data/samples/rails/po/ca/blog.po +0 -101
  638. data/samples/rails/po/cs/blog.po +0 -104
  639. data/samples/rails/po/de/blog.po +0 -104
  640. data/samples/rails/po/el/blog.po +0 -102
  641. data/samples/rails/po/en/blog.po +0 -103
  642. data/samples/rails/po/eo/blog.po +0 -102
  643. data/samples/rails/po/es/blog.po +0 -101
  644. data/samples/rails/po/fr/blog.po +0 -102
  645. data/samples/rails/po/hr/blog.po +0 -102
  646. data/samples/rails/po/hu/blog.po +0 -101
  647. data/samples/rails/po/it/blog.po +0 -102
  648. data/samples/rails/po/ja/blog.po +0 -101
  649. data/samples/rails/po/ko/blog.po +0 -102
  650. data/samples/rails/po/lv/blog.po +0 -103
  651. data/samples/rails/po/nb/blog.po +0 -102
  652. data/samples/rails/po/nl/blog.po +0 -102
  653. data/samples/rails/po/pt_BR/blog.po +0 -102
  654. data/samples/rails/po/ru/blog.po +0 -102
  655. data/samples/rails/po/sr/blog.po +0 -103
  656. data/samples/rails/po/ua/blog.po +0 -105
  657. data/samples/rails/po/vi/blog.po +0 -102
  658. data/samples/rails/po/zh/blog.po +0 -101
  659. data/samples/rails/po/zh_TW/blog.po +0 -103
  660. data/samples/rails/public/404.html +0 -30
  661. data/samples/rails/public/422.html +0 -30
  662. data/samples/rails/public/500.html +0 -30
  663. data/samples/rails/public/dispatch.cgi +0 -10
  664. data/samples/rails/public/dispatch.fcgi +0 -24
  665. data/samples/rails/public/dispatch.rb +0 -10
  666. data/samples/rails/public/images/rails.png +0 -0
  667. data/samples/rails/public/index.html +0 -277
  668. data/samples/rails/public/javascripts/application.js +0 -2
  669. data/samples/rails/public/javascripts/controls.js +0 -963
  670. data/samples/rails/public/javascripts/dragdrop.js +0 -972
  671. data/samples/rails/public/javascripts/effects.js +0 -1120
  672. data/samples/rails/public/javascripts/prototype.js +0 -4225
  673. data/samples/rails/public/robots.txt +0 -1
  674. data/samples/rails/public/stylesheets/blog.css +0 -136
  675. data/samples/rails/public/stylesheets/scaffold.css +0 -74
  676. data/samples/rails/script/about +0 -3
  677. data/samples/rails/script/breakpointer +0 -3
  678. data/samples/rails/script/console +0 -3
  679. data/samples/rails/script/destroy +0 -3
  680. data/samples/rails/script/generate +0 -3
  681. data/samples/rails/script/performance/benchmarker +0 -3
  682. data/samples/rails/script/performance/profiler +0 -3
  683. data/samples/rails/script/plugin +0 -3
  684. data/samples/rails/script/process/reaper +0 -3
  685. data/samples/rails/script/process/spawner +0 -3
  686. data/samples/rails/script/process/spinner +0 -3
  687. data/samples/rails/script/runner +0 -3
  688. data/samples/rails/script/server +0 -3
  689. data/samples/rails/test/fixtures/articles.yml +0 -5
  690. data/samples/rails/test/functional/articles_controller_test.rb +0 -51
  691. data/samples/rails/test/test_helper.rb +0 -38
  692. data/samples/rails/test/unit/article_test.rb +0 -7
  693. data/samples/rails/vendor/plugins/gettext/README +0 -17
  694. data/samples/rails/vendor/plugins/gettext/Rakefile +0 -17
  695. data/samples/rails/vendor/plugins/gettext/init.rb +0 -21
  696. data/samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb +0 -33
  697. data/samples/rails/vendor/plugins/gettext/locale/bg/LC_MESSAGES/gettext_plugin.mo +0 -0
  698. data/samples/rails/vendor/plugins/gettext/locale/bs/LC_MESSAGES/gettext_plugin.mo +0 -0
  699. data/samples/rails/vendor/plugins/gettext/locale/ca/LC_MESSAGES/gettext_plugin.mo +0 -0
  700. data/samples/rails/vendor/plugins/gettext/locale/cs/LC_MESSAGES/gettext_plugin.mo +0 -0
  701. data/samples/rails/vendor/plugins/gettext/locale/de/LC_MESSAGES/gettext_plugin.mo +0 -0
  702. data/samples/rails/vendor/plugins/gettext/locale/el/LC_MESSAGES/gettext_plugin.mo +0 -0
  703. data/samples/rails/vendor/plugins/gettext/locale/eo/LC_MESSAGES/gettext_plugin.mo +0 -0
  704. data/samples/rails/vendor/plugins/gettext/locale/es/LC_MESSAGES/gettext_plugin.mo +0 -0
  705. data/samples/rails/vendor/plugins/gettext/locale/fr/LC_MESSAGES/gettext_plugin.mo +0 -0
  706. data/samples/rails/vendor/plugins/gettext/locale/hr/LC_MESSAGES/gettext_plugin.mo +0 -0
  707. data/samples/rails/vendor/plugins/gettext/locale/hu/LC_MESSAGES/gettext_plugin.mo +0 -0
  708. data/samples/rails/vendor/plugins/gettext/locale/it/LC_MESSAGES/gettext_plugin.mo +0 -0
  709. data/samples/rails/vendor/plugins/gettext/locale/ja/LC_MESSAGES/gettext_plugin.mo +0 -0
  710. data/samples/rails/vendor/plugins/gettext/locale/ko/LC_MESSAGES/gettext_plugin.mo +0 -0
  711. data/samples/rails/vendor/plugins/gettext/locale/lv/LC_MESSAGES/gettext_plugin.mo +0 -0
  712. data/samples/rails/vendor/plugins/gettext/locale/nb/LC_MESSAGES/gettext_plugin.mo +0 -0
  713. data/samples/rails/vendor/plugins/gettext/locale/nl/LC_MESSAGES/gettext_plugin.mo +0 -0
  714. data/samples/rails/vendor/plugins/gettext/locale/pt_BR/LC_MESSAGES/gettext_plugin.mo +0 -0
  715. data/samples/rails/vendor/plugins/gettext/locale/ru/LC_MESSAGES/gettext_plugin.mo +0 -0
  716. data/samples/rails/vendor/plugins/gettext/locale/sr/LC_MESSAGES/gettext_plugin.mo +0 -0
  717. data/samples/rails/vendor/plugins/gettext/locale/ua/LC_MESSAGES/gettext_plugin.mo +0 -0
  718. data/samples/rails/vendor/plugins/gettext/locale/vi/LC_MESSAGES/gettext_plugin.mo +0 -0
  719. data/samples/rails/vendor/plugins/gettext/locale/zh/LC_MESSAGES/gettext_plugin.mo +0 -0
  720. data/samples/rails/vendor/plugins/gettext/locale/zh_TW/LC_MESSAGES/gettext_plugin.mo +0 -0
  721. data/samples/rails/vendor/plugins/gettext/po/bg/gettext_plugin.po +0 -27
  722. data/samples/rails/vendor/plugins/gettext/po/bs/gettext_plugin.po +0 -27
  723. data/samples/rails/vendor/plugins/gettext/po/ca/gettext_plugin.po +0 -27
  724. data/samples/rails/vendor/plugins/gettext/po/cs/gettext_plugin.po +0 -29
  725. data/samples/rails/vendor/plugins/gettext/po/de/gettext_plugin.po +0 -29
  726. data/samples/rails/vendor/plugins/gettext/po/el/gettext_plugin.po +0 -27
  727. data/samples/rails/vendor/plugins/gettext/po/eo/gettext_plugin.po +0 -28
  728. data/samples/rails/vendor/plugins/gettext/po/es/gettext_plugin.po +0 -28
  729. data/samples/rails/vendor/plugins/gettext/po/fr/gettext_plugin.po +0 -27
  730. data/samples/rails/vendor/plugins/gettext/po/gettext_plugin.pot +0 -28
  731. data/samples/rails/vendor/plugins/gettext/po/hr/gettext_plugin.po +0 -27
  732. data/samples/rails/vendor/plugins/gettext/po/hu/gettext_plugin.po +0 -27
  733. data/samples/rails/vendor/plugins/gettext/po/it/gettext_plugin.po +0 -27
  734. data/samples/rails/vendor/plugins/gettext/po/ja/gettext_plugin.po +0 -28
  735. data/samples/rails/vendor/plugins/gettext/po/ko/gettext_plugin.po +0 -27
  736. data/samples/rails/vendor/plugins/gettext/po/lv/gettext_plugin.po +0 -28
  737. data/samples/rails/vendor/plugins/gettext/po/nb/gettext_plugin.po +0 -29
  738. data/samples/rails/vendor/plugins/gettext/po/nl/gettext_plugin.po +0 -28
  739. data/samples/rails/vendor/plugins/gettext/po/pt_BR/gettext_plugin.po +0 -27
  740. data/samples/rails/vendor/plugins/gettext/po/ru/gettext_plugin.po +0 -25
  741. data/samples/rails/vendor/plugins/gettext/po/sr/gettext_plugin.po +0 -28
  742. data/samples/rails/vendor/plugins/gettext/po/ua/gettext_plugin.po +0 -30
  743. data/samples/rails/vendor/plugins/gettext/po/vi/gettext_plugin.po +0 -27
  744. data/samples/rails/vendor/plugins/gettext/po/zh/gettext_plugin.po +0 -27
  745. data/samples/rails/vendor/plugins/gettext/po/zh_TW/gettext_plugin.po +0 -29
  746. data/setup.rb +0 -1585
  747. data/test/benchmark.rb +0 -28
  748. data/test/db/mysql.drop.sql +0 -5
  749. data/test/db/mysql.sql +0 -57
  750. data/test/fixtures/book.rb +0 -3
  751. data/test/fixtures/developer.rb +0 -5
  752. data/test/fixtures/developers.yml +0 -21
  753. data/test/fixtures/inept_wizard.rb +0 -3
  754. data/test/fixtures/people.yml +0 -6
  755. data/test/fixtures/reply.rb +0 -40
  756. data/test/fixtures/topic.rb +0 -68
  757. data/test/fixtures/topics.yml +0 -22
  758. data/test/fixtures/user.rb +0 -3
  759. data/test/fixtures/wizard.rb +0 -5
  760. data/test/locale/ja/LC_MESSAGES/active_record.mo +0 -0
  761. data/test/locale/ja/LC_MESSAGES/test_npgettext.mo +0 -0
  762. data/test/po/active_record.pot +0 -393
  763. data/test/po/ja/active_record.po +0 -392
  764. data/test/rails/README +0 -5
  765. data/test/rails/Rakefile +0 -36
  766. data/test/rails/app/controllers/application.rb +0 -8
  767. data/test/rails/app/controllers/articles_controller.rb +0 -61
  768. data/test/rails/app/controllers/mailer_controller.rb +0 -19
  769. data/test/rails/app/controllers/users_controller.rb +0 -11
  770. data/test/rails/app/helpers/application_helper.rb +0 -3
  771. data/test/rails/app/helpers/articles_helper.rb +0 -2
  772. data/test/rails/app/helpers/mailer_helper.rb +0 -2
  773. data/test/rails/app/models/article.rb +0 -5
  774. data/test/rails/app/models/mailer.rb +0 -38
  775. data/test/rails/app/models/user.rb +0 -4
  776. data/test/rails/app/views/articles/_form.html.erb +0 -13
  777. data/test/rails/app/views/articles/_form_fr.html.erb +0 -1
  778. data/test/rails/app/views/articles/active_form_error.html.erb +0 -1
  779. data/test/rails/app/views/articles/change_title_error_messages_for.html.erb +0 -21
  780. data/test/rails/app/views/articles/edit.html.erb +0 -9
  781. data/test/rails/app/views/articles/list.html.erb +0 -27
  782. data/test/rails/app/views/articles/list_fr.html.erb +0 -1
  783. data/test/rails/app/views/articles/multi_error_messages_for.html.erb +0 -19
  784. data/test/rails/app/views/articles/new.html.erb +0 -8
  785. data/test/rails/app/views/articles/show.html.erb +0 -29
  786. data/test/rails/app/views/layouts/application.html.erb +0 -14
  787. data/test/rails/app/views/layouts/mailer.html.erb +0 -20
  788. data/test/rails/app/views/layouts/users.html.erb +0 -13
  789. data/test/rails/app/views/mailer/coverpage.rhtml +0 -6
  790. data/test/rails/app/views/mailer/coverpage_fr.rhtml +0 -6
  791. data/test/rails/app/views/mailer/singlepart.rhtml +0 -3
  792. data/test/rails/app/views/mailer/singlepart_fr.rhtml +0 -3
  793. data/test/rails/app/views/users/custom_error_message.html.erb +0 -13
  794. data/test/rails/app/views/users/custom_error_message_fr.html.erb +0 -13
  795. data/test/rails/config/boot.rb +0 -109
  796. data/test/rails/config/database.yml +0 -36
  797. data/test/rails/config/environment.rb +0 -70
  798. data/test/rails/config/environments/development.rb +0 -18
  799. data/test/rails/config/environments/production.rb +0 -18
  800. data/test/rails/config/environments/test.rb +0 -19
  801. data/test/rails/config/routes.rb +0 -23
  802. data/test/rails/db/schema.rb +0 -34
  803. data/test/rails/po/ja/rails_test.po +0 -149
  804. data/test/rails/po/rails_test.pot +0 -149
  805. data/test/rails/public/404.html +0 -30
  806. data/test/rails/public/500.html +0 -30
  807. data/test/rails/public/dispatch.cgi +0 -10
  808. data/test/rails/public/dispatch.fcgi +0 -24
  809. data/test/rails/public/dispatch.rb +0 -10
  810. data/test/rails/public/images/rails.png +0 -0
  811. data/test/rails/public/index.html +0 -277
  812. data/test/rails/public/javascripts/application.js +0 -2
  813. data/test/rails/public/javascripts/controls.js +0 -963
  814. data/test/rails/public/javascripts/dragdrop.js +0 -972
  815. data/test/rails/public/javascripts/effects.js +0 -1120
  816. data/test/rails/public/javascripts/prototype.js +0 -4225
  817. data/test/rails/public/robots.txt +0 -1
  818. data/test/rails/public/stylesheets/scaffold.css +0 -74
  819. data/test/rails/script/about +0 -3
  820. data/test/rails/script/breakpointer +0 -3
  821. data/test/rails/script/console +0 -3
  822. data/test/rails/script/destroy +0 -3
  823. data/test/rails/script/generate +0 -3
  824. data/test/rails/script/performance/benchmarker +0 -3
  825. data/test/rails/script/performance/profiler +0 -3
  826. data/test/rails/script/plugin +0 -3
  827. data/test/rails/script/process/inspector +0 -3
  828. data/test/rails/script/process/reaper +0 -3
  829. data/test/rails/script/process/spawner +0 -3
  830. data/test/rails/script/runner +0 -3
  831. data/test/rails/script/server +0 -3
  832. data/test/rails/test/fixtures/articles.yml +0 -11
  833. data/test/rails/test/fixtures/users.yml +0 -5
  834. data/test/rails/test/functional/articles_controller_test.rb +0 -119
  835. data/test/rails/test/functional/mailer_controller_test.rb +0 -95
  836. data/test/rails/test/functional/users_controller_test.rb +0 -65
  837. data/test/rails/test/integration/general_stories_test.rb +0 -58
  838. data/test/rails/test/result/en/create_error.html +0 -95
  839. data/test/rails/test/result/en/custom_error_message.html +0 -83
  840. data/test/rails/test/result/en/custom_error_message_with_plural.html +0 -83
  841. data/test/rails/test/result/en/list.html +0 -62
  842. data/test/rails/test/result/en/multi_error_messages_for.html +0 -153
  843. data/test/rails/test/result/en/multipart.html +0 -67
  844. data/test/rails/test/result/en/new.html +0 -95
  845. data/test/rails/test/result/en/show.html +0 -51
  846. data/test/rails/test/result/en/singlepart.html +0 -10
  847. data/test/rails/test/result/fr/custom_error_message.html +0 -83
  848. data/test/rails/test/result/fr/custom_error_message_with_plural.html +0 -83
  849. data/test/rails/test/result/fr/list.html +0 -15
  850. data/test/rails/test/result/fr/multipart.html +0 -67
  851. data/test/rails/test/result/fr/new.html +0 -23
  852. data/test/rails/test/result/fr/singlepart.html +0 -10
  853. data/test/rails/test/result/ja/create_error.html +0 -95
  854. data/test/rails/test/result/ja/custom_error_message.html +0 -83
  855. data/test/rails/test/result/ja/custom_error_message_with_plural.html +0 -83
  856. data/test/rails/test/result/ja/list.html +0 -62
  857. data/test/rails/test/result/ja/multi_error_messages_for.html +0 -153
  858. data/test/rails/test/result/ja/multipart.html +0 -67
  859. data/test/rails/test/result/ja/new.html +0 -95
  860. data/test/rails/test/result/ja/show.html +0 -51
  861. data/test/rails/test/result/ja/singlepart.html +0 -10
  862. data/test/rails/test/test_helper.rb +0 -28
  863. data/test/rails/test/unit/article_test.rb +0 -18
  864. data/test/test.bat +0 -2
  865. data/test/test.sh +0 -13
  866. data/test/test_active_record.rb +0 -2606
  867. data/test/test_cgi.rb +0 -91
  868. data/test/test_erb.rhtml +0 -15
  869. data/test/test_erb.rxml +0 -16
  870. data/test/test_gettext_toplevel.rb +0 -44
  871. data/test/test_gladeparser.glade +0 -183
  872. data/test/test_java.sh +0 -12
  873. data/test/test_locale.rb +0 -250
  874. data/test/test_multi_textdomain.rb +0 -49
  875. data/test/test_rails.rb +0 -45
  876. data/test/test_rails_caching.rb +0 -232
  877. data/test/testlib/testlib2.rb +0 -11
  878. data/test/testlib/testlib3.rb +0 -12
  879. data/test/testlib/testlib4.rb +0 -11
  880. data/test/testlib/testlib5.rb +0 -70
  881. data/test/testlib/testlib6.rb +0 -19
@@ -1,118 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
6
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
- <head>
8
- <title>Class: ActiveRecord::Migration</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
- <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
- <script type="text/javascript">
13
- // <![CDATA[
14
-
15
- function popupCode( url ) {
16
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
- }
18
-
19
- function toggleCode( id ) {
20
- if ( document.getElementById )
21
- elem = document.getElementById( id );
22
- else if ( document.all )
23
- elem = eval( "document.all." + id );
24
- else
25
- return false;
26
-
27
- elemStyle = elem.style;
28
-
29
- if ( elemStyle.display != "block" ) {
30
- elemStyle.display = "block"
31
- } else {
32
- elemStyle.display = "none"
33
- }
34
-
35
- return true;
36
- }
37
-
38
- // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
41
- // ]]>
42
- </script>
43
-
44
- </head>
45
- <body>
46
-
47
-
48
-
49
- <div id="classHeader">
50
- <table class="header-table">
51
- <tr class="top-aligned-row">
52
- <td><strong>Class</strong></td>
53
- <td class="class-name-in-header">ActiveRecord::Migration</td>
54
- </tr>
55
- <tr class="top-aligned-row">
56
- <td><strong>In:</strong></td>
57
- <td>
58
- <a href="../../files/lib/gettext/active_record_rb.html">
59
- lib/gettext/active_record.rb
60
- </a>
61
- <br />
62
- </td>
63
- </tr>
64
-
65
- <tr class="top-aligned-row">
66
- <td><strong>Parent:</strong></td>
67
- <td>
68
- Object
69
- </td>
70
- </tr>
71
- </table>
72
- </div>
73
- <!-- banner header -->
74
-
75
- <div id="bodyContent">
76
-
77
-
78
-
79
- <div id="contextContent">
80
-
81
-
82
-
83
- </div>
84
-
85
-
86
- </div>
87
-
88
-
89
- <!-- if includes -->
90
- <div id="includes">
91
- <h3 class="section-bar">Included Modules</h3>
92
-
93
- <div id="includes-list">
94
- <span class="include-name"><a href="../GetText.html">GetText</a></span>
95
- </div>
96
- </div>
97
-
98
- <div id="section">
99
-
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
- <!-- if method_list -->
108
-
109
-
110
- </div>
111
-
112
-
113
- <div id="validator-badges">
114
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
115
- </div>
116
-
117
- </body>
118
- </html>
@@ -1,2003 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
6
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
- <head>
8
- <title>Module: GetText</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
- <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
12
- <script type="text/javascript">
13
- // <![CDATA[
14
-
15
- function popupCode( url ) {
16
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
- }
18
-
19
- function toggleCode( id ) {
20
- if ( document.getElementById )
21
- elem = document.getElementById( id );
22
- else if ( document.all )
23
- elem = eval( "document.all." + id );
24
- else
25
- return false;
26
-
27
- elemStyle = elem.style;
28
-
29
- if ( elemStyle.display != "block" ) {
30
- elemStyle.display = "block"
31
- } else {
32
- elemStyle.display = "none"
33
- }
34
-
35
- return true;
36
- }
37
-
38
- // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
41
- // ]]>
42
- </script>
43
-
44
- </head>
45
- <body>
46
-
47
-
48
-
49
- <div id="classHeader">
50
- <table class="header-table">
51
- <tr class="top-aligned-row">
52
- <td><strong>Module</strong></td>
53
- <td class="class-name-in-header">GetText</td>
54
- </tr>
55
- <tr class="top-aligned-row">
56
- <td><strong>In:</strong></td>
57
- <td>
58
- <a href="../files/lib/gettext/poparser_rb.html">
59
- lib/gettext/poparser.rb
60
- </a>
61
- <br />
62
- <a href="../files/lib/gettext/textdomain_rb.html">
63
- lib/gettext/textdomain.rb
64
- </a>
65
- <br />
66
- <a href="../files/lib/gettext/utils_rb.html">
67
- lib/gettext/utils.rb
68
- </a>
69
- <br />
70
- <a href="../files/lib/gettext/rails_rb.html">
71
- lib/gettext/rails.rb
72
- </a>
73
- <br />
74
- <a href="../files/lib/gettext/version_rb.html">
75
- lib/gettext/version.rb
76
- </a>
77
- <br />
78
- <a href="../files/lib/gettext/rgettext_rb.html">
79
- lib/gettext/rgettext.rb
80
- </a>
81
- <br />
82
- <a href="../files/lib/gettext/rmsgfmt_rb.html">
83
- lib/gettext/rmsgfmt.rb
84
- </a>
85
- <br />
86
- <a href="../files/lib/gettext/container_rb.html">
87
- lib/gettext/container.rb
88
- </a>
89
- <br />
90
- <a href="../files/lib/gettext/textdomainmanager_rb.html">
91
- lib/gettext/textdomainmanager.rb
92
- </a>
93
- <br />
94
- <a href="../files/lib/gettext/cgi_rb.html">
95
- lib/gettext/cgi.rb
96
- </a>
97
- <br />
98
- <a href="../files/lib/gettext/rmsgmerge_rb.html">
99
- lib/gettext/rmsgmerge.rb
100
- </a>
101
- <br />
102
- <a href="../files/lib/gettext/parser/glade_rb.html">
103
- lib/gettext/parser/glade.rb
104
- </a>
105
- <br />
106
- <a href="../files/lib/gettext/parser/ruby_rb.html">
107
- lib/gettext/parser/ruby.rb
108
- </a>
109
- <br />
110
- <a href="../files/lib/gettext/parser/active_record_rb.html">
111
- lib/gettext/parser/active_record.rb
112
- </a>
113
- <br />
114
- <a href="../files/lib/gettext/parser/erb_rb.html">
115
- lib/gettext/parser/erb.rb
116
- </a>
117
- <br />
118
- <a href="../files/lib/gettext/erb_rb.html">
119
- lib/gettext/erb.rb
120
- </a>
121
- <br />
122
- <a href="../files/lib/gettext_rb.html">
123
- lib/gettext.rb
124
- </a>
125
- <br />
126
- </td>
127
- </tr>
128
-
129
- </table>
130
- </div>
131
- <!-- banner header -->
132
-
133
- <div id="bodyContent">
134
-
135
-
136
-
137
- <div id="contextContent">
138
-
139
-
140
-
141
- </div>
142
-
143
- <div id="method-list">
144
- <h3 class="section-bar">Methods</h3>
145
-
146
- <div class="name-list">
147
- <a href="#M000093">N_</a>&nbsp;&nbsp;
148
- <a href="#M000094">Nn_</a>&nbsp;&nbsp;
149
- <a href="#M000107">_</a>&nbsp;&nbsp;
150
- <a href="#M000103">add_default_locale_path</a>&nbsp;&nbsp;
151
- <a href="#M000084">bindtextdomain</a>&nbsp;&nbsp;
152
- <a href="#M000085">bindtextdomain_to</a>&nbsp;&nbsp;
153
- <a href="#M000081">cached=</a>&nbsp;&nbsp;
154
- <a href="#M000082">cached?</a>&nbsp;&nbsp;
155
- <a href="#M000079">cgi</a>&nbsp;&nbsp;
156
- <a href="#M000078">cgi=</a>&nbsp;&nbsp;
157
- <a href="#M000083">clear_cache</a>&nbsp;&nbsp;
158
- <a href="#M000073">create_mofiles</a>&nbsp;&nbsp;
159
- <a href="#M000104">current_textdomain_info</a>&nbsp;&nbsp;
160
- <a href="#M000088">gettext</a>&nbsp;&nbsp;
161
- <a href="#M000102">locale</a>&nbsp;&nbsp;
162
- <a href="#M000098">locale=</a>&nbsp;&nbsp;
163
- <a href="#M000072">msgmerge</a>&nbsp;&nbsp;
164
- <a href="#M000108">n_</a>&nbsp;&nbsp;
165
- <a href="#M000091">ngettext</a>&nbsp;&nbsp;
166
- <a href="#M000111">np_</a>&nbsp;&nbsp;
167
- <a href="#M000092">npgettext</a>&nbsp;&nbsp;
168
- <a href="#M000110">ns_</a>&nbsp;&nbsp;
169
- <a href="#M000095">nsgettext</a>&nbsp;&nbsp;
170
- <a href="#M000101">output_charset</a>&nbsp;&nbsp;
171
- <a href="#M000100">output_charset=</a>&nbsp;&nbsp;
172
- <a href="#M000112">p_</a>&nbsp;&nbsp;
173
- <a href="#M000090">pgettext</a>&nbsp;&nbsp;
174
- <a href="#M000105">remove_all_textdomains</a>&nbsp;&nbsp;
175
- <a href="#M000075">rgettext</a>&nbsp;&nbsp;
176
- <a href="#M000076">rmsgfmt</a>&nbsp;&nbsp;
177
- <a href="#M000080">rmsgmerge</a>&nbsp;&nbsp;
178
- <a href="#M000109">s_</a>&nbsp;&nbsp;
179
- <a href="#M000077">set_cgi</a>&nbsp;&nbsp;
180
- <a href="#M000096">set_locale</a>&nbsp;&nbsp;
181
- <a href="#M000097">set_locale_all</a>&nbsp;&nbsp;
182
- <a href="#M000099">set_output_charset</a>&nbsp;&nbsp;
183
- <a href="#M000106">setlocale</a>&nbsp;&nbsp;
184
- <a href="#M000089">sgettext</a>&nbsp;&nbsp;
185
- <a href="#M000086">textdomain</a>&nbsp;&nbsp;
186
- <a href="#M000087">textdomain_to</a>&nbsp;&nbsp;
187
- <a href="#M000074">update_pofiles</a>&nbsp;&nbsp;
188
- </div>
189
- </div>
190
-
191
- </div>
192
-
193
-
194
- <!-- if includes -->
195
- <div id="includes">
196
- <h3 class="section-bar">Included Modules</h3>
197
-
198
- <div id="includes-list">
199
- <span class="include-name"><a href="GetText.html">GetText</a></span>
200
- <span class="include-name"><a href="GetText.html">GetText</a></span>
201
- </div>
202
- </div>
203
-
204
- <div id="section">
205
-
206
- <div id="class-list">
207
- <h3 class="section-bar">Classes and Modules</h3>
208
-
209
- Module <a href="GetText/ActiveRecordParser.html" class="link">GetText::ActiveRecordParser</a><br />
210
- Module <a href="GetText/Container.html" class="link">GetText::Container</a><br />
211
- Module <a href="GetText/ErbContainer.html" class="link">GetText::ErbContainer</a><br />
212
- Module <a href="GetText/ErbParser.html" class="link">GetText::ErbParser</a><br />
213
- Module <a href="GetText/GladeParser.html" class="link">GetText::GladeParser</a><br />
214
- Module <a href="GetText/Rails.html" class="link">GetText::Rails</a><br />
215
- Module <a href="GetText/RubyParser.html" class="link">GetText::RubyParser</a><br />
216
- Class <a href="GetText/NoboundTextDomainError.html" class="link">GetText::NoboundTextDomainError</a><br />
217
- Class <a href="GetText/PoParser.html" class="link">GetText::PoParser</a><br />
218
- Class <a href="GetText/TextDomain.html" class="link">GetText::TextDomain</a><br />
219
- Class <a href="GetText/TextDomainManager.html" class="link">GetText::TextDomainManager</a><br />
220
-
221
- </div>
222
-
223
- <div id="constants-list">
224
- <h3 class="section-bar">Constants</h3>
225
-
226
- <div class="name-list">
227
- <table summary="Constants">
228
- <tr class="top-aligned-row context-row">
229
- <td class="context-item-name">BOM_UTF8</td>
230
- <td>=</td>
231
- <td class="context-item-value">[0xef, 0xbb, 0xbf].pack(&quot;c3&quot;)</td>
232
- </tr>
233
- <tr class="top-aligned-row context-row">
234
- <td class="context-item-name">VERSION</td>
235
- <td>=</td>
236
- <td class="context-item-value">&quot;1.93.0&quot;</td>
237
- </tr>
238
- </table>
239
- </div>
240
- </div>
241
-
242
-
243
-
244
-
245
-
246
-
247
- <!-- if method_list -->
248
- <div id="methods">
249
- <h3 class="section-bar">Public Instance methods</h3>
250
-
251
- <div id="method-M000093" class="method-detail">
252
- <a name="M000093"></a>
253
-
254
- <div class="method-heading">
255
- <a href="#M000093" class="method-signature">
256
- <span class="method-name">N_</span><span class="method-args">(msgid)</span>
257
- </a>
258
- </div>
259
-
260
- <div class="method-description">
261
- <p>
262
- This function does nothing. But it is required in order to recognize the
263
- msgid by <a href="GetText.html#M000075">rgettext</a>.
264
- </p>
265
- <ul>
266
- <li>msgid: the message id.
267
-
268
- </li>
269
- <li>Returns: msgid.
270
-
271
- </li>
272
- </ul>
273
- <p><a class="source-toggle" href="#"
274
- onclick="toggleCode('M000093-source');return false;">[Source]</a></p>
275
- <div class="method-source-code" id="M000093-source">
276
- <pre>
277
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 383</span>
278
- 383: <span class="ruby-keyword kw">def</span> <span class="ruby-constant">N_</span>(<span class="ruby-identifier">msgid</span>)
279
- 384: <span class="ruby-identifier">msgid</span>
280
- 385: <span class="ruby-keyword kw">end</span>
281
- </pre>
282
- </div>
283
- </div>
284
- </div>
285
-
286
- <div id="method-M000094" class="method-detail">
287
- <a name="M000094"></a>
288
-
289
- <div class="method-heading">
290
- <a href="#M000094" class="method-signature">
291
- <span class="method-name">Nn_</span><span class="method-args">(msgid, msgid_plural)</span>
292
- </a>
293
- </div>
294
-
295
- <div class="method-description">
296
- <p>
297
- This is same function as <a href="GetText.html#M000093">N_</a> but for <a
298
- href="GetText.html#M000091">ngettext</a>.
299
- </p>
300
- <ul>
301
- <li>msgid: the message id.
302
-
303
- </li>
304
- <li>msgid_plural: the plural message id.
305
-
306
- </li>
307
- <li>Returns: msgid.
308
-
309
- </li>
310
- </ul>
311
- <p><a class="source-toggle" href="#"
312
- onclick="toggleCode('M000094-source');return false;">[Source]</a></p>
313
- <div class="method-source-code" id="M000094-source">
314
- <pre>
315
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 391</span>
316
- 391: <span class="ruby-keyword kw">def</span> <span class="ruby-constant">Nn_</span>(<span class="ruby-identifier">msgid</span>, <span class="ruby-identifier">msgid_plural</span>)
317
- 392: [<span class="ruby-identifier">msgid</span>, <span class="ruby-identifier">msgid_plural</span>]
318
- 393: <span class="ruby-keyword kw">end</span>
319
- </pre>
320
- </div>
321
- </div>
322
- </div>
323
-
324
- <div id="method-M000107" class="method-detail">
325
- <a name="M000107"></a>
326
-
327
- <div class="method-heading">
328
- <span class="method-name">_</span><span class="method-args">(msgid)</span>
329
- </div>
330
-
331
- <div class="method-description">
332
- <p>
333
- Alias for <a href="GetText.html#M000088">gettext</a>
334
- </p>
335
- </div>
336
- </div>
337
-
338
- <div id="method-M000103" class="method-detail">
339
- <a name="M000103"></a>
340
-
341
- <div class="method-heading">
342
- <a href="#M000103" class="method-signature">
343
- <span class="method-name">add_default_locale_path</span><span class="method-args">(path)</span>
344
- </a>
345
- </div>
346
-
347
- <div class="method-description">
348
- <p>
349
- Add default <a href="GetText.html#M000102">locale</a> path.
350
- </p>
351
- <ul>
352
- <li>path: a new <a href="GetText.html#M000102">locale</a> path. (e.g.)
353
- &quot;/usr/share/locale/%{<a
354
- href="GetText.html#M000102">locale</a>}/LC_MESSAGES/%{name}.mo&quot;
355
- (&#8216;<a href="GetText.html#M000102">locale</a>&#8217; =&gt;
356
- &quot;ja_JP&quot;, &#8216;name&#8217; =&gt; &quot;<a
357
- href="GetText.html#M000086">textdomain</a>&quot;)
358
-
359
- </li>
360
- <li>Returns: the new DEFAULT_LOCALE_PATHS
361
-
362
- </li>
363
- </ul>
364
- <p><a class="source-toggle" href="#"
365
- onclick="toggleCode('M000103-source');return false;">[Source]</a></p>
366
- <div class="method-source-code" id="M000103-source">
367
- <pre>
368
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 565</span>
369
- 565: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">add_default_locale_path</span>(<span class="ruby-identifier">path</span>)
370
- 566: <span class="ruby-constant">TextDomain</span>.<span class="ruby-identifier">add_default_locale_path</span>(<span class="ruby-identifier">path</span>)
371
- 567: <span class="ruby-keyword kw">end</span>
372
- </pre>
373
- </div>
374
- </div>
375
- </div>
376
-
377
- <div id="method-M000084" class="method-detail">
378
- <a name="M000084"></a>
379
-
380
- <div class="method-heading">
381
- <a href="#M000084" class="method-signature">
382
- <span class="method-name">bindtextdomain(domainname, options = {})<br />
383
- </span>
384
- </a>
385
- </div>
386
-
387
- <div class="method-description">
388
- <p>
389
- Bind a <a href="GetText.html#M000086">textdomain</a>(%{path}/%{<a
390
- href="GetText.html#M000102">locale</a>}/LC_MESSAGES/%{domainname}.mo) to
391
- your program. Normally, the texdomain scope becomes a ruby-script-file. So
392
- you need to call this function each ruby-script-files. On the other hand,
393
- if you call this function under <a
394
- href="GetText/Container.html">GetText::Container</a> (gettext/container,
395
- gettext/erb, gettext/rails), the <a
396
- href="GetText.html#M000086">textdomain</a> scope becomes a Class/<a
397
- href="Module.html">Module</a>.
398
- </p>
399
- <ul>
400
- <li>domainname: the <a href="GetText.html#M000086">textdomain</a> name.
401
-
402
- </li>
403
- <li>options: options as an Hash.
404
-
405
- <ul>
406
- <li>:path - the path to the mo-files. When the value is nil, it will search
407
- default paths such as /usr/share/locale, /usr/local/share/locale)
408
-
409
- </li>
410
- <li>:<a href="GetText.html#M000102">locale</a> - the <a
411
- href="GetText.html#M000102">locale</a> string such as
412
- &quot;ja_JP.UTF-8&quot;. Generally, you should use <a
413
- href="GetText.html#M000096">GetText.set_locale</a> instead. The value is
414
- searched order by: the value of this value &gt; System default language.
415
-
416
- </li>
417
- <li>:charset - output charset. This affect the current <a
418
- href="GetText.html#M000086">textdomain</a> only. Generally, you should use
419
- <a href="GetText.html#M000099">GetText.set_output_charset</a> instead. The
420
- value is searched order by: the value of Locale.set_output_charset &gt;
421
- ENV[&quot;OUTPUT_CHARSET&quot;] &gt; this value &gt; System default
422
- charset.
423
-
424
- </li>
425
- </ul>
426
- </li>
427
- <li>Returns: the <a
428
- href="GetText/TextDomainManager.html">GetText::TextDomainManager</a>.
429
-
430
- </li>
431
- </ul>
432
- <p>
433
- Note: Don&#8216;t use locale_, charset argument(not in options). They are
434
- remained for backward compatibility.
435
- </p>
436
- <p><a class="source-toggle" href="#"
437
- onclick="toggleCode('M000084-source');return false;">[Source]</a></p>
438
- <div class="method-source-code" id="M000084-source">
439
- <pre>
440
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 85</span>
441
- 85: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">bindtextdomain</span>(<span class="ruby-identifier">domainname</span>, <span class="ruby-identifier">options</span> = {}, <span class="ruby-identifier">locale_</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">charset</span> = <span class="ruby-keyword kw">nil</span>)
442
- 86: <span class="ruby-identifier">opt</span> = {}
443
- 87: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">options</span>.<span class="ruby-identifier">kind_of?</span> <span class="ruby-constant">String</span>
444
- 88: <span class="ruby-comment cmt"># For backward compatibility</span>
445
- 89: <span class="ruby-identifier">opt</span> = {<span class="ruby-identifier">:path</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">options</span>, <span class="ruby-identifier">:locale</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">locale_</span>, <span class="ruby-identifier">:charset</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">charset</span>}
446
- 90: <span class="ruby-keyword kw">elsif</span> <span class="ruby-identifier">options</span>
447
- 91: <span class="ruby-identifier">opt</span> = <span class="ruby-identifier">options</span>
448
- 92: <span class="ruby-keyword kw">end</span>
449
- 93: <span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:locale</span>] = <span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:locale</span>] <span class="ruby-operator">?</span> <span class="ruby-constant">Locale</span><span class="ruby-operator">::</span><span class="ruby-constant">Object</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:locale</span>]) <span class="ruby-operator">:</span> <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">get</span>
450
- 94: <span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:charset</span>] = <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">output_charset</span> <span class="ruby-keyword kw">if</span> <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">output_charset</span>
451
- 95: <span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:locale</span>].<span class="ruby-identifier">charset</span> = <span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:charset</span>] <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:charset</span>]
452
- 96: <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">set_current</span>(<span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:locale</span>])
453
- 97: <span class="ruby-identifier">target_key</span> = <span class="ruby-identifier">bound_target</span>
454
- 98: <span class="ruby-identifier">manager</span> = <span class="ruby-ivar">@@__textdomainmanagers</span>[<span class="ruby-identifier">target_key</span>]
455
- 99: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">manager</span>
456
- 100: <span class="ruby-identifier">manager</span>.<span class="ruby-identifier">set_locale</span>(<span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:locale</span>])
457
- 101: <span class="ruby-keyword kw">else</span>
458
- 102: <span class="ruby-identifier">manager</span> = <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">target_key</span>, <span class="ruby-identifier">opt</span>[<span class="ruby-identifier">:locale</span>])
459
- 103: <span class="ruby-ivar">@@__textdomainmanagers</span>[<span class="ruby-identifier">target_key</span>] = <span class="ruby-identifier">manager</span>
460
- 104: <span class="ruby-keyword kw">end</span>
461
- 105: <span class="ruby-identifier">manager</span>.<span class="ruby-identifier">add_textdomain</span>(<span class="ruby-identifier">domainname</span>, <span class="ruby-identifier">opt</span>)
462
- 106: <span class="ruby-identifier">manager</span>
463
- 107: <span class="ruby-keyword kw">end</span>
464
- </pre>
465
- </div>
466
- </div>
467
- </div>
468
-
469
- <div id="method-M000085" class="method-detail">
470
- <a name="M000085"></a>
471
-
472
- <div class="method-heading">
473
- <a href="#M000085" class="method-signature">
474
- <span class="method-name">bindtextdomain_to</span><span class="method-args">(klass, domainname, options = {})</span>
475
- </a>
476
- </div>
477
-
478
- <div class="method-description">
479
- <p>
480
- Includes <a href="GetText.html">GetText</a> module and bind a <a
481
- href="GetText.html#M000086">textdomain</a> to a class.
482
- </p>
483
- <ul>
484
- <li>klass: the target ruby class.
485
-
486
- </li>
487
- <li>domainname: the <a href="GetText.html#M000086">textdomain</a> name.
488
-
489
- </li>
490
- <li>options: options as an Hash. See <a
491
- href="GetText.html#M000084">GetText.bindtextdomain</a>.
492
-
493
- </li>
494
- </ul>
495
- <p><a class="source-toggle" href="#"
496
- onclick="toggleCode('M000085-source');return false;">[Source]</a></p>
497
- <div class="method-source-code" id="M000085-source">
498
- <pre>
499
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 113</span>
500
- 113: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">bindtextdomain_to</span>(<span class="ruby-identifier">klass</span>, <span class="ruby-identifier">domainname</span>, <span class="ruby-identifier">options</span> = {})
501
- 114: <span class="ruby-identifier">ret</span> = <span class="ruby-keyword kw">nil</span>
502
- 115: <span class="ruby-identifier">klass</span>.<span class="ruby-identifier">module_eval</span> {
503
- 116: <span class="ruby-identifier">include</span> <span class="ruby-constant">GetText</span>
504
- 117: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">bindtextdomain</span>(<span class="ruby-identifier">domainname</span>, <span class="ruby-identifier">options</span>)
505
- 118: }
506
- 119: <span class="ruby-identifier">ret</span>
507
- 120: <span class="ruby-keyword kw">end</span>
508
- </pre>
509
- </div>
510
- </div>
511
- </div>
512
-
513
- <div id="method-M000081" class="method-detail">
514
- <a name="M000081"></a>
515
-
516
- <div class="method-heading">
517
- <a href="#M000081" class="method-signature">
518
- <span class="method-name">cached=</span><span class="method-args">(val)</span>
519
- </a>
520
- </div>
521
-
522
- <div class="method-description">
523
- <p>
524
- Set the value whether cache messages or not. true to cache messages,
525
- otherwise false.
526
- </p>
527
- <p>
528
- Default is true. If $DEBUG is false, messages are not checked even if this
529
- value is true.
530
- </p>
531
- <p><a class="source-toggle" href="#"
532
- onclick="toggleCode('M000081-source');return false;">[Source]</a></p>
533
- <div class="method-source-code" id="M000081-source">
534
- <pre>
535
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 42</span>
536
- 42: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">cached=</span>(<span class="ruby-identifier">val</span>)
537
- 43: <span class="ruby-ivar">@@__cached</span> = <span class="ruby-identifier">val</span>
538
- 44: <span class="ruby-constant">GetText</span><span class="ruby-operator">::</span><span class="ruby-constant">TextDomain</span>.<span class="ruby-identifier">check_mo</span> = <span class="ruby-operator">!</span> <span class="ruby-identifier">val</span>
539
- 45: <span class="ruby-keyword kw">end</span>
540
- </pre>
541
- </div>
542
- </div>
543
- </div>
544
-
545
- <div id="method-M000082" class="method-detail">
546
- <a name="M000082"></a>
547
-
548
- <div class="method-heading">
549
- <a href="#M000082" class="method-signature">
550
- <span class="method-name">cached?</span><span class="method-args">()</span>
551
- </a>
552
- </div>
553
-
554
- <div class="method-description">
555
- <p>
556
- Return the cached value.
557
- </p>
558
- <p><a class="source-toggle" href="#"
559
- onclick="toggleCode('M000082-source');return false;">[Source]</a></p>
560
- <div class="method-source-code" id="M000082-source">
561
- <pre>
562
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 48</span>
563
- 48: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">cached?</span>
564
- 49: <span class="ruby-ivar">@@__cached</span>
565
- 50: <span class="ruby-keyword kw">end</span>
566
- </pre>
567
- </div>
568
- </div>
569
- </div>
570
-
571
- <div id="method-M000079" class="method-detail">
572
- <a name="M000079"></a>
573
-
574
- <div class="method-heading">
575
- <a href="#M000079" class="method-signature">
576
- <span class="method-name">cgi</span><span class="method-args">()</span>
577
- </a>
578
- </div>
579
-
580
- <div class="method-description">
581
- <p>
582
- Gets the CGI object. If it is nil, returns new CGI object.
583
- </p>
584
- <ul>
585
- <li>Returns: the CGI object
586
-
587
- </li>
588
- </ul>
589
- <p><a class="source-toggle" href="#"
590
- onclick="toggleCode('M000079-source');return false;">[Source]</a></p>
591
- <div class="method-source-code" id="M000079-source">
592
- <pre>
593
- <span class="ruby-comment cmt"># File lib/gettext/cgi.rb, line 36</span>
594
- 36: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">cgi</span>
595
- 37: <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">cgi</span>
596
- 38: <span class="ruby-keyword kw">end</span>
597
- </pre>
598
- </div>
599
- </div>
600
- </div>
601
-
602
- <div id="method-M000078" class="method-detail">
603
- <a name="M000078"></a>
604
-
605
- <div class="method-heading">
606
- <a href="#M000078" class="method-signature">
607
- <span class="method-name">cgi=</span><span class="method-args">(cgi_)</span>
608
- </a>
609
- </div>
610
-
611
- <div class="method-description">
612
- <p>
613
- Same as <a href="GetText.html#M000077">GetText.set_cgi</a>.
614
- </p>
615
- <ul>
616
- <li>cgi_: CGI object
617
-
618
- </li>
619
- <li>Returns: cgi_
620
-
621
- </li>
622
- </ul>
623
- <p><a class="source-toggle" href="#"
624
- onclick="toggleCode('M000078-source');return false;">[Source]</a></p>
625
- <div class="method-source-code" id="M000078-source">
626
- <pre>
627
- <span class="ruby-comment cmt"># File lib/gettext/cgi.rb, line 29</span>
628
- 29: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">cgi=</span>(<span class="ruby-identifier">cgi_</span>)
629
- 30: <span class="ruby-identifier">set_cgi</span>(<span class="ruby-identifier">cgi_</span>)
630
- 31: <span class="ruby-identifier">cgi_</span>
631
- 32: <span class="ruby-keyword kw">end</span>
632
- </pre>
633
- </div>
634
- </div>
635
- </div>
636
-
637
- <div id="method-M000083" class="method-detail">
638
- <a name="M000083"></a>
639
-
640
- <div class="method-heading">
641
- <a href="#M000083" class="method-signature">
642
- <span class="method-name">clear_cache</span><span class="method-args">()</span>
643
- </a>
644
- </div>
645
-
646
- <div class="method-description">
647
- <p>
648
- Clear the cached messages.
649
- </p>
650
- <p><a class="source-toggle" href="#"
651
- onclick="toggleCode('M000083-source');return false;">[Source]</a></p>
652
- <div class="method-source-code" id="M000083-source">
653
- <pre>
654
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 53</span>
655
- 53: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">clear_cache</span>
656
- 54: <span class="ruby-ivar">@@__cache_msgids</span> = {}
657
- 55: <span class="ruby-ivar">@@__cache_nmsgids</span> = {}
658
- 56: <span class="ruby-ivar">@@__cache_target_classes</span> = {}
659
- 57: <span class="ruby-ivar">@@__cache_bound_target</span> = {}
660
- 58: <span class="ruby-ivar">@@__cache_bound_targets</span> = {}
661
- 59: <span class="ruby-keyword kw">end</span>
662
- </pre>
663
- </div>
664
- </div>
665
- </div>
666
-
667
- <div id="method-M000073" class="method-detail">
668
- <a name="M000073"></a>
669
-
670
- <div class="method-heading">
671
- <a href="#M000073" class="method-signature">
672
- <span class="method-name">create_mofiles</span><span class="method-args">(verbose = false, podir = &quot;./po&quot;, targetdir = &quot;./data/locale&quot;, targetpath_rule = &quot;%s/LC_MESSAGES&quot;)</span>
673
- </a>
674
- </div>
675
-
676
- <div class="method-description">
677
- <p>
678
- Creates mo-files using #{po_root}/#{lang}/*.po an put them to
679
- #{targetdir}/#{targetpath_rule}/.
680
- </p>
681
- <p>
682
- This is a convenience function of <a
683
- href="GetText.html#M000076">GetText.rmsgfmt</a> for plural target files.
684
- </p>
685
- <ul>
686
- <li>verbose: true if verbose mode, otherwise false
687
-
688
- </li>
689
- <li>po_root: the root directory of po-files.
690
-
691
- </li>
692
- <li>targetdir: the target root directory where the mo-files are stored.
693
-
694
- </li>
695
- <li>targetpath_rule: the target directory for each mo-files. &quot;%s&quot;
696
- becomes &quot;#{lang}&quot; under po_root.
697
-
698
- </li>
699
- </ul>
700
- <p><a class="source-toggle" href="#"
701
- onclick="toggleCode('M000073-source');return false;">[Source]</a></p>
702
- <div class="method-source-code" id="M000073-source">
703
- <pre>
704
- <span class="ruby-comment cmt"># File lib/gettext/utils.rb, line 110</span>
705
- 110: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">create_mofiles</span>(<span class="ruby-identifier">verbose</span> = <span class="ruby-keyword kw">false</span>,
706
- 111: <span class="ruby-identifier">podir</span> = <span class="ruby-value str">&quot;./po&quot;</span>, <span class="ruby-identifier">targetdir</span> = <span class="ruby-value str">&quot;./data/locale&quot;</span>,
707
- 112: <span class="ruby-identifier">targetpath_rule</span> = <span class="ruby-value str">&quot;%s/LC_MESSAGES&quot;</span>)
708
- 113:
709
- 114: <span class="ruby-identifier">modir</span> = <span class="ruby-constant">File</span>.<span class="ruby-identifier">join</span>(<span class="ruby-identifier">targetdir</span>, <span class="ruby-identifier">targetpath_rule</span>)
710
- 115: <span class="ruby-constant">Dir</span>.<span class="ruby-identifier">glob</span>(<span class="ruby-constant">File</span>.<span class="ruby-identifier">join</span>(<span class="ruby-identifier">podir</span>, <span class="ruby-value str">&quot;*/*.po&quot;</span>)) <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">file</span><span class="ruby-operator">|</span>
711
- 116: <span class="ruby-identifier">lang</span>, <span class="ruby-identifier">basename</span> = <span class="ruby-regexp re">/\/([^\/]+?)\/(.*)\.po/</span>.<span class="ruby-identifier">match</span>(<span class="ruby-identifier">file</span>[<span class="ruby-identifier">podir</span>.<span class="ruby-identifier">size</span><span class="ruby-operator">..</span><span class="ruby-value">-1</span>]).<span class="ruby-identifier">to_a</span>[<span class="ruby-value">1</span>,<span class="ruby-value">2</span>]
712
- 117: <span class="ruby-identifier">outdir</span> = <span class="ruby-identifier">modir</span> <span class="ruby-operator">%</span> <span class="ruby-identifier">lang</span>
713
- 118: <span class="ruby-constant">FileUtils</span>.<span class="ruby-identifier">mkdir_p</span>(<span class="ruby-identifier">outdir</span>) <span class="ruby-keyword kw">unless</span> <span class="ruby-constant">File</span>.<span class="ruby-identifier">directory?</span>(<span class="ruby-identifier">outdir</span>)
714
- 119: <span class="ruby-identifier">$stderr</span>.<span class="ruby-identifier">print</span> <span class="ruby-node">%Q[#{file} -&gt; #{File.join(outdir, &quot;#{basename}.mo&quot;)} ... ]</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">verbose</span>
715
- 120: <span class="ruby-keyword kw">begin</span>
716
- 121: <span class="ruby-identifier">rmsgfmt</span>(<span class="ruby-identifier">file</span>, <span class="ruby-constant">File</span>.<span class="ruby-identifier">join</span>(<span class="ruby-identifier">outdir</span>, <span class="ruby-node">&quot;#{basename}.mo&quot;</span>))
717
- 122: <span class="ruby-keyword kw">rescue</span> <span class="ruby-constant">Exception</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">e</span>
718
- 123: <span class="ruby-identifier">$stderr</span>.<span class="ruby-identifier">puts</span> <span class="ruby-value str">&quot;Error.&quot;</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">verbose</span>
719
- 124: <span class="ruby-identifier">raise</span> <span class="ruby-identifier">e</span>
720
- 125: <span class="ruby-keyword kw">end</span>
721
- 126: <span class="ruby-identifier">$stderr</span>.<span class="ruby-identifier">puts</span> <span class="ruby-value str">&quot;Done.&quot;</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">verbose</span>
722
- 127: <span class="ruby-keyword kw">end</span>
723
- 128: <span class="ruby-keyword kw">end</span>
724
- </pre>
725
- </div>
726
- </div>
727
- </div>
728
-
729
- <div id="method-M000104" class="method-detail">
730
- <a name="M000104"></a>
731
-
732
- <div class="method-heading">
733
- <a href="#M000104" class="method-signature">
734
- <span class="method-name">current_textdomain_info</span><span class="method-args">(options = {})</span>
735
- </a>
736
- </div>
737
-
738
- <div class="method-description">
739
- <p>
740
- Show the current <a href="GetText.html#M000086">textdomain</a> information.
741
- This function is for debugging.
742
- </p>
743
- <ul>
744
- <li>options: options as a Hash.
745
-
746
- <ul>
747
- <li>:with_messages - show informations with messages of the current mo file.
748
- Default is false.
749
-
750
- </li>
751
- <li>:out - An output target. Default is STDOUT.
752
-
753
- </li>
754
- <li>:with_paths - show the load paths for mo-files.
755
-
756
- </li>
757
- </ul>
758
- </li>
759
- </ul>
760
- <p><a class="source-toggle" href="#"
761
- onclick="toggleCode('M000104-source');return false;">[Source]</a></p>
762
- <div class="method-source-code" id="M000104-source">
763
- <pre>
764
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 574</span>
765
- 574: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">current_textdomain_info</span>(<span class="ruby-identifier">options</span> = {})
766
- 575: <span class="ruby-identifier">opts</span> = {<span class="ruby-identifier">:with_messages</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-keyword kw">false</span>, <span class="ruby-identifier">:with_paths</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-keyword kw">false</span>, <span class="ruby-identifier">:out</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-constant">STDOUT</span>}.<span class="ruby-identifier">merge</span>(<span class="ruby-identifier">options</span>)
767
- 576: <span class="ruby-identifier">ret</span> = <span class="ruby-keyword kw">nil</span>
768
- 577: <span class="ruby-identifier">each_textdomain</span> {<span class="ruby-operator">|</span><span class="ruby-identifier">textdomain</span><span class="ruby-operator">|</span>
769
- 578: <span class="ruby-identifier">opts</span>[<span class="ruby-identifier">:out</span>].<span class="ruby-identifier">puts</span> <span class="ruby-node">&quot;TextDomain name: \&quot;#{textdomain.name}\&quot;&quot;</span>
770
- 579: <span class="ruby-identifier">opts</span>[<span class="ruby-identifier">:out</span>].<span class="ruby-identifier">puts</span> <span class="ruby-node">&quot;TextDomain current locale: \&quot;#{textdomain.current_locale}\&quot;&quot;</span>
771
- 580: <span class="ruby-identifier">opts</span>[<span class="ruby-identifier">:out</span>].<span class="ruby-identifier">puts</span> <span class="ruby-node">&quot;TextDomain current mo filename: \&quot;#{textdomain.current_mo.filename}\&quot;&quot;</span>
772
- 581: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">opts</span>[<span class="ruby-identifier">:with_paths</span>]
773
- 582: <span class="ruby-identifier">opts</span>[<span class="ruby-identifier">:out</span>].<span class="ruby-identifier">puts</span> <span class="ruby-value str">&quot;TextDomain locale file paths:&quot;</span>
774
- 583: <span class="ruby-identifier">textdomain</span>.<span class="ruby-identifier">locale_paths</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">v</span><span class="ruby-operator">|</span>
775
- 584: <span class="ruby-identifier">opts</span>[<span class="ruby-identifier">:out</span>].<span class="ruby-identifier">puts</span> <span class="ruby-node">&quot; #{v}&quot;</span>
776
- 585: <span class="ruby-keyword kw">end</span>
777
- 586: <span class="ruby-keyword kw">end</span>
778
- 587: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">opts</span>[<span class="ruby-identifier">:with_messages</span>]
779
- 588: <span class="ruby-identifier">opts</span>[<span class="ruby-identifier">:out</span>].<span class="ruby-identifier">puts</span> <span class="ruby-value str">&quot;The messages in the mo file:&quot;</span>
780
- 589: <span class="ruby-identifier">textdomain</span>.<span class="ruby-identifier">current_mo</span>.<span class="ruby-identifier">each</span>{<span class="ruby-operator">|</span><span class="ruby-identifier">k</span>, <span class="ruby-identifier">v</span><span class="ruby-operator">|</span>
781
- 590: <span class="ruby-identifier">opts</span>[<span class="ruby-identifier">:out</span>].<span class="ruby-identifier">puts</span> <span class="ruby-node">&quot; \&quot;#{k}\&quot;: \&quot;#{v}\&quot;&quot;</span>
782
- 591: }
783
- 592: <span class="ruby-keyword kw">end</span>
784
- 593: }
785
- 594: <span class="ruby-keyword kw">end</span>
786
- </pre>
787
- </div>
788
- </div>
789
- </div>
790
-
791
- <div id="method-M000088" class="method-detail">
792
- <a name="M000088"></a>
793
-
794
- <div class="method-heading">
795
- <a href="#M000088" class="method-signature">
796
- <span class="method-name">gettext(msgid)<br />
797
- _(msgid)<br />
798
- </span>
799
- </a>
800
- </div>
801
-
802
- <div class="method-description">
803
- <p>
804
- Translates msgid and return the message. This doesn&#8216;t make a copy of
805
- the message.
806
- </p>
807
- <p>
808
- You need to use String#dup if you want to modify the return value with
809
- destructive functions.
810
- </p>
811
- <p>
812
- (e.g.1) <a href="GetText.html#M000107">_</a>(&quot;Hello &quot;).dup
813
- &lt;&lt; &quot;world&quot;
814
- </p>
815
- <p>
816
- But e.g.1 should be rewrite to:
817
- </p>
818
- <p>
819
- (e.g.2) <a href="GetText.html#M000107">_</a>(&quot;Hello %{val}&quot;) %
820
- {:val =&gt; &quot;world&quot;}
821
- </p>
822
- <p>
823
- Because the translator may want to change the position of
824
- &quot;world&quot;.
825
- </p>
826
- <ul>
827
- <li>msgid: the message id.
828
-
829
- </li>
830
- <li>Returns: localized text by msgid. If there are not binded mo-file, it will
831
- return msgid.
832
-
833
- </li>
834
- </ul>
835
- <p><a class="source-toggle" href="#"
836
- onclick="toggleCode('M000088-source');return false;">[Source]</a></p>
837
- <div class="method-source-code" id="M000088-source">
838
- <pre>
839
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 263</span>
840
- 263: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">gettext</span>(<span class="ruby-identifier">msgid</span>)
841
- 264: <span class="ruby-identifier">sgettext</span>(<span class="ruby-identifier">msgid</span>, <span class="ruby-keyword kw">nil</span>)
842
- 265: <span class="ruby-keyword kw">end</span>
843
- </pre>
844
- </div>
845
- </div>
846
- </div>
847
-
848
- <div id="method-M000102" class="method-detail">
849
- <a name="M000102"></a>
850
-
851
- <div class="method-heading">
852
- <a href="#M000102" class="method-signature">
853
- <span class="method-name">locale</span><span class="method-args">()</span>
854
- </a>
855
- </div>
856
-
857
- <div class="method-description">
858
- <p>
859
- Gets the current <a href="GetText.html#M000102">locale</a>.
860
- </p>
861
- <ul>
862
- <li>Returns: a current <a href="Locale/Object.html">Locale::Object</a>
863
-
864
- </li>
865
- </ul>
866
- <p><a class="source-toggle" href="#"
867
- onclick="toggleCode('M000102-source');return false;">[Source]</a></p>
868
- <div class="method-source-code" id="M000102-source">
869
- <pre>
870
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 557</span>
871
- 557: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">locale</span>
872
- 558: <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">current</span>
873
- 559: <span class="ruby-keyword kw">end</span>
874
- </pre>
875
- </div>
876
- </div>
877
- </div>
878
-
879
- <div id="method-M000098" class="method-detail">
880
- <a name="M000098"></a>
881
-
882
- <div class="method-heading">
883
- <a href="#M000098" class="method-signature">
884
- <span class="method-name">locale=</span><span class="method-args">(locale)</span>
885
- </a>
886
- </div>
887
-
888
- <div class="method-description">
889
- <p>
890
- Sets the default/current <a href="GetText.html#M000102">locale</a>. This
891
- method haves the strongest infulence. All of the Textdomains are set the
892
- new <a href="GetText.html#M000102">locale</a>.
893
- </p>
894
- <p>
895
- Note that you shouldn&#8216;t use this for your own Libraries.
896
- </p>
897
- <ul>
898
- <li><a href="GetText.html#M000102">locale</a>: a <a
899
- href="GetText.html#M000102">locale</a> string or <a
900
- href="Locale/Object.html">Locale::Object</a>
901
-
902
- </li>
903
- <li>Returns: a <a href="GetText.html#M000102">locale</a> string
904
-
905
- </li>
906
- </ul>
907
- <p><a class="source-toggle" href="#"
908
- onclick="toggleCode('M000098-source');return false;">[Source]</a></p>
909
- <div class="method-source-code" id="M000098-source">
910
- <pre>
911
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 527</span>
912
- 527: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">locale=</span>(<span class="ruby-identifier">locale</span>)
913
- 528: <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">default</span> = <span class="ruby-identifier">locale</span>
914
- 529: <span class="ruby-identifier">set_locale_all</span>(<span class="ruby-identifier">locale</span>)
915
- 530: <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">default</span>
916
- 531: <span class="ruby-keyword kw">end</span>
917
- </pre>
918
- </div>
919
- </div>
920
- </div>
921
-
922
- <div id="method-M000072" class="method-detail">
923
- <a name="M000072"></a>
924
-
925
- <div class="method-heading">
926
- <a href="#M000072" class="method-signature">
927
- <span class="method-name">msgmerge</span><span class="method-args">(defpo, refpo, app_version)</span>
928
- </a>
929
- </div>
930
-
931
- <div class="method-description">
932
- <p>
933
- Merges two Uniforum style .po files together.
934
- </p>
935
- <p>
936
- <b>Note</b> This function requires &quot;<a
937
- href="GetText.html#M000072">msgmerge</a>&quot; tool included in GNU <a
938
- href="GetText.html">GetText</a>. So you need to install GNU <a
939
- href="GetText.html">GetText</a>.
940
- </p>
941
- <p>
942
- The def.po file is an existing PO file with translations which will be
943
- taken over to the newly created file as long as they still match; comments
944
- will be preserved, but extracted comments and file positions will be
945
- discarded.
946
- </p>
947
- <p>
948
- The ref.pot file is the last created PO file with up-to-date source
949
- references but old translations, or a PO Template file (generally created
950
- by <a href="GetText.html#M000075">rgettext</a>); any translations or
951
- comments in the file will be discarded, however dot comments and file
952
- positions will be preserved. Where an exact match cannot be found, fuzzy
953
- matching is used to produce better results.
954
- </p>
955
- <p>
956
- Usually you don&#8216;t need to call this function directly. Use <a
957
- href="GetText.html#M000074">GetText.update_pofiles</a> instead.
958
- </p>
959
- <ul>
960
- <li>defpo: a po-file. translations referring to old sources
961
-
962
- </li>
963
- <li>refpo: a po-file. references to new sources
964
-
965
- </li>
966
- <li>app_version: the application information which appears
967
- &quot;Project-Id-Version: #{app_version}&quot; in the pot/po-files.
968
-
969
- </li>
970
- <li>Returns: self
971
-
972
- </li>
973
- </ul>
974
- <p><a class="source-toggle" href="#"
975
- onclick="toggleCode('M000072-source');return false;">[Source]</a></p>
976
- <div class="method-source-code" id="M000072-source">
977
- <pre>
978
- <span class="ruby-comment cmt"># File lib/gettext/utils.rb, line 60</span>
979
- 60: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">msgmerge</span>(<span class="ruby-identifier">defpo</span>, <span class="ruby-identifier">refpo</span>, <span class="ruby-identifier">app_version</span>)
980
- 61: <span class="ruby-identifier">$stderr</span>.<span class="ruby-identifier">print</span> <span class="ruby-identifier">defpo</span> <span class="ruby-operator">+</span> <span class="ruby-value str">&quot; &quot;</span>
981
- 62: <span class="ruby-identifier">cmd</span> = <span class="ruby-constant">ENV</span>[<span class="ruby-value str">&quot;MSGMERGE_PATH&quot;</span>] <span class="ruby-operator">||</span> <span class="ruby-value str">&quot;msgmerge&quot;</span>
982
- 63:
983
- 64: <span class="ruby-identifier">cont</span> = <span class="ruby-value str">&quot;&quot;</span>
984
- 65: <span class="ruby-keyword kw">if</span> <span class="ruby-constant">FileTest</span>.<span class="ruby-identifier">exist?</span> <span class="ruby-identifier">defpo</span>
985
- 66: <span class="ruby-node">`#{cmd} --help`</span>
986
- 67: <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">$?</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">$?</span>.<span class="ruby-identifier">success?</span>
987
- 68: <span class="ruby-identifier">raise</span> <span class="ruby-identifier">_</span>(<span class="ruby-value str">&quot;`%{cmd}' may not be found. \nInstall GNU Gettext then set PATH or MSGMERGE_PATH correctly.&quot;</span>) <span class="ruby-operator">%</span> {<span class="ruby-identifier">:cmd</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">cmd</span>}
988
- 69: <span class="ruby-keyword kw">end</span>
989
- 70: <span class="ruby-identifier">remove_bom</span>(<span class="ruby-identifier">defpo</span>)
990
- 71: <span class="ruby-identifier">cont</span> = <span class="ruby-node">`#{cmd} #{defpo} #{refpo}`</span>
991
- 72: <span class="ruby-keyword kw">else</span>
992
- 73: <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>(<span class="ruby-identifier">refpo</span>) <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">io</span><span class="ruby-operator">|</span>
993
- 74: <span class="ruby-identifier">cont</span> = <span class="ruby-identifier">io</span>.<span class="ruby-identifier">read</span>
994
- 75: <span class="ruby-keyword kw">end</span>
995
- 76: <span class="ruby-keyword kw">end</span>
996
- 77: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">cont</span>.<span class="ruby-identifier">empty?</span>
997
- 78: <span class="ruby-identifier">failed_filename</span> = <span class="ruby-identifier">refpo</span> <span class="ruby-operator">+</span> <span class="ruby-value str">&quot;~&quot;</span>
998
- 79: <span class="ruby-constant">FileUtils</span>.<span class="ruby-identifier">cp</span>(<span class="ruby-identifier">refpo</span>, <span class="ruby-identifier">failed_filename</span>)
999
- 80: <span class="ruby-identifier">$stderr</span>.<span class="ruby-identifier">puts</span> <span class="ruby-identifier">_</span>(<span class="ruby-value str">&quot;Failed to merge with %{defpo}&quot;</span>) <span class="ruby-operator">%</span> {<span class="ruby-identifier">:defpo</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">defpo</span>}
1000
- 81: <span class="ruby-identifier">$stderr</span>.<span class="ruby-identifier">puts</span> <span class="ruby-identifier">_</span>(<span class="ruby-value str">&quot;New .pot was copied to %{failed_filename}&quot;</span>) <span class="ruby-operator">%</span>{<span class="ruby-identifier">:failed_filename</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">failed_filename</span>}
1001
- 82: <span class="ruby-identifier">raise</span> <span class="ruby-identifier">_</span>(<span class="ruby-value str">&quot;Check these po/pot-files. It may have syntax errors or something wrong.&quot;</span>)
1002
- 83: <span class="ruby-keyword kw">else</span>
1003
- 84: <span class="ruby-identifier">cont</span>.<span class="ruby-identifier">sub!</span>(<span class="ruby-regexp re">/(Project-Id-Version\:).*$/</span>, <span class="ruby-node">&quot;\\1 #{app_version}\\n\&quot;&quot;</span>)
1004
- 85: <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>(<span class="ruby-identifier">defpo</span>, <span class="ruby-value str">&quot;w&quot;</span>) <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">out</span><span class="ruby-operator">|</span>
1005
- 86: <span class="ruby-identifier">out</span>.<span class="ruby-identifier">write</span>(<span class="ruby-identifier">cont</span>)
1006
- 87: <span class="ruby-keyword kw">end</span>
1007
- 88: <span class="ruby-keyword kw">end</span>
1008
- 89: <span class="ruby-keyword kw">self</span>
1009
- 90: <span class="ruby-keyword kw">end</span>
1010
- </pre>
1011
- </div>
1012
- </div>
1013
- </div>
1014
-
1015
- <div id="method-M000108" class="method-detail">
1016
- <a name="M000108"></a>
1017
-
1018
- <div class="method-heading">
1019
- <span class="method-name">n_</span><span class="method-args">(arg1, arg2, arg3 = nil)</span>
1020
- </div>
1021
-
1022
- <div class="method-description">
1023
- <p>
1024
- Alias for <a href="GetText.html#M000091">ngettext</a>
1025
- </p>
1026
- </div>
1027
- </div>
1028
-
1029
- <div id="method-M000091" class="method-detail">
1030
- <a name="M000091"></a>
1031
-
1032
- <div class="method-heading">
1033
- <a href="#M000091" class="method-signature">
1034
- <span class="method-name">ngettext(msgid, msgid_plural, n)<br />
1035
- ngettext(msgids, n) # msgids = [msgid, msgid_plural]<br />
1036
- n_(msgid, msgid_plural, n)<br />
1037
- n_(msgids, n) # msgids = [msgid, msgid_plural]<br />
1038
- </span>
1039
- </a>
1040
- </div>
1041
-
1042
- <div class="method-description">
1043
- <p>
1044
- The <a href="GetText.html#M000091">ngettext</a> is similar to the <a
1045
- href="GetText.html#M000088">gettext</a> function as it finds the message
1046
- catalogs in the same way. But it takes two extra arguments for plural form.
1047
- </p>
1048
- <ul>
1049
- <li>msgid: the singular form.
1050
-
1051
- </li>
1052
- <li>msgid_plural: the plural form.
1053
-
1054
- </li>
1055
- <li>n: a number used to determine the plural form.
1056
-
1057
- </li>
1058
- <li>Returns: the localized text which key is msgid_plural if n is plural(follow
1059
- plural-rule) or msgid. &quot;plural-rule&quot; is defined in po-file.
1060
-
1061
- </li>
1062
- </ul>
1063
- <p><a class="source-toggle" href="#"
1064
- onclick="toggleCode('M000091-source');return false;">[Source]</a></p>
1065
- <div class="method-source-code" id="M000091-source">
1066
- <pre>
1067
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 340</span>
1068
- 340: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">ngettext</span>(<span class="ruby-identifier">arg1</span>, <span class="ruby-identifier">arg2</span>, <span class="ruby-identifier">arg3</span> = <span class="ruby-keyword kw">nil</span>)
1069
- 341: <span class="ruby-identifier">nsgettext</span>(<span class="ruby-identifier">arg1</span>, <span class="ruby-identifier">arg2</span>, <span class="ruby-identifier">arg3</span>, <span class="ruby-keyword kw">nil</span>)
1070
- 342: <span class="ruby-keyword kw">end</span>
1071
- </pre>
1072
- </div>
1073
- </div>
1074
- </div>
1075
-
1076
- <div id="method-M000111" class="method-detail">
1077
- <a name="M000111"></a>
1078
-
1079
- <div class="method-heading">
1080
- <span class="method-name">np_</span><span class="method-args">(msgctxt, arg1, arg2 = nil, arg3 = nil)</span>
1081
- </div>
1082
-
1083
- <div class="method-description">
1084
- <p>
1085
- Alias for <a href="GetText.html#M000092">npgettext</a>
1086
- </p>
1087
- </div>
1088
- </div>
1089
-
1090
- <div id="method-M000092" class="method-detail">
1091
- <a name="M000092"></a>
1092
-
1093
- <div class="method-heading">
1094
- <a href="#M000092" class="method-signature">
1095
- <span class="method-name">npgettext(msgctxt, msgid, msgid_plural, n)<br />
1096
- npgettext(msgctxt, msgids, n) # msgids = [msgid, msgid_plural]<br />
1097
- np_(msgctxt, msgid, msgid_plural, n)<br />
1098
- np_(msgctxt, msgids, n) # msgids = [msgid, msgid_plural]<br />
1099
- </span>
1100
- </a>
1101
- </div>
1102
-
1103
- <div class="method-description">
1104
- <p>
1105
- The <a href="GetText.html#M000092">npgettext</a> is similar to the <a
1106
- href="GetText.html#M000095">nsgettext</a> function.
1107
- </p>
1108
- <pre>
1109
- e.g.) np_(&quot;Special&quot;, &quot;An apple&quot;, &quot;%{num} Apples&quot;, num) == ns_(&quot;Special|An apple&quot;, &quot;%{num} Apples&quot;, num)
1110
- </pre>
1111
- <ul>
1112
- <li>msgctxt: the message context.
1113
-
1114
- </li>
1115
- <li>msgid: the singular form.
1116
-
1117
- </li>
1118
- <li>msgid_plural: the plural form.
1119
-
1120
- </li>
1121
- <li>n: a number used to determine the plural form.
1122
-
1123
- </li>
1124
- <li>Returns: the localized text which key is msgid_plural if n is plural(follow
1125
- plural-rule) or msgid. &quot;plural-rule&quot; is defined in po-file.
1126
-
1127
- </li>
1128
- </ul>
1129
- <p><a class="source-toggle" href="#"
1130
- onclick="toggleCode('M000092-source');return false;">[Source]</a></p>
1131
- <div class="method-source-code" id="M000092-source">
1132
- <pre>
1133
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 358</span>
1134
- 358: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">npgettext</span>(<span class="ruby-identifier">msgctxt</span>, <span class="ruby-identifier">arg1</span>, <span class="ruby-identifier">arg2</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">arg3</span> = <span class="ruby-keyword kw">nil</span>)
1135
- 359: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">arg1</span>.<span class="ruby-identifier">kind_of?</span>(<span class="ruby-constant">Array</span>)
1136
- 360: <span class="ruby-identifier">msgid</span> = <span class="ruby-identifier">arg1</span>[<span class="ruby-value">0</span>]
1137
- 361: <span class="ruby-identifier">msgid_ctxt</span> = <span class="ruby-node">&quot;#{msgctxt}\004#{msgid}&quot;</span>
1138
- 362: <span class="ruby-identifier">msgid_plural</span> = <span class="ruby-identifier">arg1</span>[<span class="ruby-value">1</span>]
1139
- 363: <span class="ruby-identifier">opt1</span> = <span class="ruby-identifier">arg2</span>
1140
- 364: <span class="ruby-identifier">opt2</span> = <span class="ruby-identifier">arg3</span>
1141
- 365: <span class="ruby-keyword kw">else</span>
1142
- 366: <span class="ruby-identifier">msgid</span> = <span class="ruby-identifier">arg1</span>
1143
- 367: <span class="ruby-identifier">msgid_ctxt</span> = <span class="ruby-node">&quot;#{msgctxt}\004#{msgid}&quot;</span>
1144
- 368: <span class="ruby-identifier">msgid_plural</span> = <span class="ruby-identifier">arg2</span>
1145
- 369: <span class="ruby-identifier">opt1</span> = <span class="ruby-identifier">arg3</span>
1146
- 370: <span class="ruby-identifier">opt2</span> = <span class="ruby-keyword kw">nil</span>
1147
- 371: <span class="ruby-keyword kw">end</span>
1148
- 372: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">nsgettext</span>(<span class="ruby-identifier">msgid_ctxt</span>, <span class="ruby-identifier">msgid_plural</span>, <span class="ruby-identifier">opt1</span>, <span class="ruby-identifier">opt2</span>)
1149
- 373:
1150
- 374: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">ret</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">msgid_ctxt</span>
1151
- 375: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">msgid</span>
1152
- 376: <span class="ruby-keyword kw">end</span>
1153
- 377: <span class="ruby-identifier">ret</span>
1154
- 378: <span class="ruby-keyword kw">end</span>
1155
- </pre>
1156
- </div>
1157
- </div>
1158
- </div>
1159
-
1160
- <div id="method-M000110" class="method-detail">
1161
- <a name="M000110"></a>
1162
-
1163
- <div class="method-heading">
1164
- <span class="method-name">ns_</span><span class="method-args">(arg1, arg2, arg3 = &quot;|&quot;, arg4 = &quot;|&quot;)</span>
1165
- </div>
1166
-
1167
- <div class="method-description">
1168
- <p>
1169
- Alias for <a href="GetText.html#M000095">nsgettext</a>
1170
- </p>
1171
- </div>
1172
- </div>
1173
-
1174
- <div id="method-M000095" class="method-detail">
1175
- <a name="M000095"></a>
1176
-
1177
- <div class="method-heading">
1178
- <a href="#M000095" class="method-signature">
1179
- <span class="method-name">nsgettext(msgid, msgid_plural, n, div = "|")<br />
1180
- nsgettext(msgids, n, div = "|") # msgids = [msgid, msgid_plural]<br />
1181
- n_(msgid, msgid_plural, n, div = "|")<br />
1182
- n_(msgids, n, div = "|") # msgids = [msgid, msgid_plural]<br />
1183
- </span>
1184
- </a>
1185
- </div>
1186
-
1187
- <div class="method-description">
1188
- <p>
1189
- The <a href="GetText.html#M000095">nsgettext</a> is similar to the <a
1190
- href="GetText.html#M000091">ngettext</a>. But if there are no localized
1191
- text, it returns a last part of msgid separeted &quot;div&quot;.
1192
- </p>
1193
- <ul>
1194
- <li>msgid: the singular form with &quot;div&quot;. (e.g. &quot;Special|An
1195
- apple&quot;)
1196
-
1197
- </li>
1198
- <li>msgid_plural: the plural form. (e.g. &quot;%{num} Apples&quot;)
1199
-
1200
- </li>
1201
- <li>n: a number used to determine the plural form.
1202
-
1203
- </li>
1204
- <li>Returns: the localized text which key is msgid_plural if n is plural(follow
1205
- plural-rule) or msgid. &quot;plural-rule&quot; is defined in po-file.
1206
-
1207
- </li>
1208
- </ul>
1209
- <p><a class="source-toggle" href="#"
1210
- onclick="toggleCode('M000095-source');return false;">[Source]</a></p>
1211
- <div class="method-source-code" id="M000095-source">
1212
- <pre>
1213
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 411</span>
1214
- 411: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">nsgettext</span>(<span class="ruby-identifier">arg1</span>, <span class="ruby-identifier">arg2</span>, <span class="ruby-identifier">arg3</span> = <span class="ruby-value str">&quot;|&quot;</span>, <span class="ruby-identifier">arg4</span> = <span class="ruby-value str">&quot;|&quot;</span>)
1215
- 412: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">arg1</span>.<span class="ruby-identifier">kind_of?</span>(<span class="ruby-constant">Array</span>)
1216
- 413: <span class="ruby-identifier">msgid</span> = <span class="ruby-identifier">arg1</span>[<span class="ruby-value">0</span>]
1217
- 414: <span class="ruby-identifier">msgid_plural</span> = <span class="ruby-identifier">arg1</span>[<span class="ruby-value">1</span>]
1218
- 415: <span class="ruby-identifier">n</span> = <span class="ruby-identifier">arg2</span>
1219
- 416: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">arg3</span> <span class="ruby-keyword kw">and</span> <span class="ruby-identifier">arg3</span>.<span class="ruby-identifier">kind_of?</span> <span class="ruby-constant">Numeric</span>
1220
- 417: <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-identifier">_</span>(<span class="ruby-value str">&quot;3rd parmeter is wrong: value = %{number}&quot;</span>) <span class="ruby-operator">%</span> {<span class="ruby-identifier">:number</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">arg3</span>}
1221
- 418: <span class="ruby-keyword kw">end</span>
1222
- 419: <span class="ruby-identifier">div</span> = <span class="ruby-identifier">arg3</span>
1223
- 420: <span class="ruby-keyword kw">else</span>
1224
- 421: <span class="ruby-identifier">msgid</span> = <span class="ruby-identifier">arg1</span>
1225
- 422: <span class="ruby-identifier">msgid_plural</span> = <span class="ruby-identifier">arg2</span>
1226
- 423: <span class="ruby-identifier">n</span> = <span class="ruby-identifier">arg3</span>
1227
- 424: <span class="ruby-identifier">div</span> = <span class="ruby-identifier">arg4</span>
1228
- 425: <span class="ruby-keyword kw">end</span>
1229
- 426:
1230
- 427: <span class="ruby-identifier">cached_key</span> = [<span class="ruby-identifier">bound_target</span>, <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">current</span>, <span class="ruby-identifier">msgid</span> <span class="ruby-operator">+</span> <span class="ruby-value str">&quot;\000&quot;</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">msgid_plural</span>]
1231
- 428: <span class="ruby-identifier">msgs</span> = <span class="ruby-keyword kw">nil</span>
1232
- 429: <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@@__cached</span>
1233
- 430: <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@@__cache_nmsgids</span>.<span class="ruby-identifier">has_key?</span>(<span class="ruby-identifier">cached_key</span>)
1234
- 431: <span class="ruby-identifier">msgs</span> = <span class="ruby-ivar">@@__cache_nmsgids</span>[<span class="ruby-identifier">cached_key</span>] <span class="ruby-comment cmt"># [msgstr, cond_as_string]</span>
1235
- 432: <span class="ruby-keyword kw">end</span>
1236
- 433: <span class="ruby-keyword kw">end</span>
1237
- 434: <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">msgs</span>
1238
- 435: <span class="ruby-comment cmt"># Use &quot;for&quot;(not &quot;each&quot;) to support JRuby 1.1.0.</span>
1239
- 436: <span class="ruby-keyword kw">for</span> <span class="ruby-identifier">target</span> <span class="ruby-keyword kw">in</span> <span class="ruby-identifier">bound_targets</span>(<span class="ruby-keyword kw">self</span>)
1240
- 437: <span class="ruby-identifier">manager</span> = <span class="ruby-ivar">@@__textdomainmanagers</span>[<span class="ruby-identifier">target</span>]
1241
- 438: <span class="ruby-keyword kw">for</span> <span class="ruby-identifier">textdomain</span> <span class="ruby-keyword kw">in</span> <span class="ruby-identifier">manager</span>.<span class="ruby-identifier">textdomains</span>
1242
- 439: <span class="ruby-identifier">msgs</span> = <span class="ruby-identifier">textdomain</span>[<span class="ruby-value">1</span>].<span class="ruby-identifier">ngettext_data</span>(<span class="ruby-identifier">msgid</span>, <span class="ruby-identifier">msgid_plural</span>)
1243
- 440: <span class="ruby-keyword kw">break</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">msgs</span>
1244
- 441: <span class="ruby-keyword kw">end</span>
1245
- 442: <span class="ruby-keyword kw">break</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">msgs</span>
1246
- 443: <span class="ruby-keyword kw">end</span>
1247
- 444: <span class="ruby-identifier">msgs</span> = [[<span class="ruby-identifier">msgid</span>, <span class="ruby-identifier">msgid_plural</span>], <span class="ruby-value str">&quot;n != 1&quot;</span>] <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">msgs</span>
1248
- 445: <span class="ruby-ivar">@@__cache_nmsgids</span>[<span class="ruby-identifier">cached_key</span>] = <span class="ruby-identifier">msgs</span>
1249
- 446: <span class="ruby-keyword kw">end</span>
1250
- 447: <span class="ruby-identifier">msgstrs</span> = <span class="ruby-identifier">msgs</span>[<span class="ruby-value">0</span>]
1251
- 448: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">div</span> <span class="ruby-keyword kw">and</span> <span class="ruby-identifier">msgstrs</span>[<span class="ruby-value">0</span>] <span class="ruby-operator">==</span> <span class="ruby-identifier">msgid</span>
1252
- 449: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">index</span> = <span class="ruby-identifier">msgstrs</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">rindex</span>(<span class="ruby-identifier">div</span>)
1253
- 450: <span class="ruby-identifier">msgstrs</span>[<span class="ruby-value">0</span>] = <span class="ruby-identifier">msgstrs</span>[<span class="ruby-value">0</span>][(<span class="ruby-identifier">index</span> <span class="ruby-operator">+</span> <span class="ruby-value">1</span>)<span class="ruby-operator">..</span><span class="ruby-value">-1</span>]
1254
- 451: <span class="ruby-keyword kw">end</span>
1255
- 452: <span class="ruby-keyword kw">end</span>
1256
- 453: <span class="ruby-identifier">plural</span> = <span class="ruby-identifier">eval</span>(<span class="ruby-identifier">msgs</span>[<span class="ruby-value">1</span>])
1257
- 454: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">plural</span>.<span class="ruby-identifier">kind_of?</span>(<span class="ruby-constant">Numeric</span>)
1258
- 455: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">msgstrs</span>[<span class="ruby-identifier">plural</span>]
1259
- 456: <span class="ruby-keyword kw">else</span>
1260
- 457: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">plural</span> <span class="ruby-value">? </span><span class="ruby-identifier">msgstrs</span>[<span class="ruby-value">1</span>] <span class="ruby-operator">:</span> <span class="ruby-identifier">msgstrs</span>[<span class="ruby-value">0</span>]
1261
- 458: <span class="ruby-keyword kw">end</span>
1262
- 459: <span class="ruby-identifier">ret</span>
1263
- 460: <span class="ruby-keyword kw">end</span>
1264
- </pre>
1265
- </div>
1266
- </div>
1267
- </div>
1268
-
1269
- <div id="method-M000101" class="method-detail">
1270
- <a name="M000101"></a>
1271
-
1272
- <div class="method-heading">
1273
- <a href="#M000101" class="method-signature">
1274
- <span class="method-name">output_charset</span><span class="method-args">()</span>
1275
- </a>
1276
- </div>
1277
-
1278
- <div class="method-description">
1279
- <p>
1280
- Gets the current <a href="GetText.html#M000101">output_charset</a> which is
1281
- set using <a href="GetText.html#M000099">GetText.set_output_charset</a>.
1282
- </p>
1283
- <ul>
1284
- <li>Returns: <a href="GetText.html#M000101">output_charset</a>.
1285
-
1286
- </li>
1287
- </ul>
1288
- <p><a class="source-toggle" href="#"
1289
- onclick="toggleCode('M000101-source');return false;">[Source]</a></p>
1290
- <div class="method-source-code" id="M000101-source">
1291
- <pre>
1292
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 551</span>
1293
- 551: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">output_charset</span>
1294
- 552: <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">output_charset</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">locale</span>.<span class="ruby-identifier">charset</span>
1295
- 553: <span class="ruby-keyword kw">end</span>
1296
- </pre>
1297
- </div>
1298
- </div>
1299
- </div>
1300
-
1301
- <div id="method-M000100" class="method-detail">
1302
- <a name="M000100"></a>
1303
-
1304
- <div class="method-heading">
1305
- <a href="#M000100" class="method-signature">
1306
- <span class="method-name">output_charset=</span><span class="method-args">(charset)</span>
1307
- </a>
1308
- </div>
1309
-
1310
- <div class="method-description">
1311
- <p>
1312
- Same as <a href="GetText.html#M000099">GetText.set_output_charset</a>
1313
- </p>
1314
- <ul>
1315
- <li>charset: an <a href="GetText.html#M000101">output_charset</a>
1316
-
1317
- </li>
1318
- <li>Returns: charset
1319
-
1320
- </li>
1321
- </ul>
1322
- <p><a class="source-toggle" href="#"
1323
- onclick="toggleCode('M000100-source');return false;">[Source]</a></p>
1324
- <div class="method-source-code" id="M000100-source">
1325
- <pre>
1326
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 545</span>
1327
- 545: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">output_charset=</span>(<span class="ruby-identifier">charset</span>)
1328
- 546: <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">output_charset</span> = <span class="ruby-identifier">charset</span>
1329
- 547: <span class="ruby-keyword kw">end</span>
1330
- </pre>
1331
- </div>
1332
- </div>
1333
- </div>
1334
-
1335
- <div id="method-M000112" class="method-detail">
1336
- <a name="M000112"></a>
1337
-
1338
- <div class="method-heading">
1339
- <span class="method-name">p_</span><span class="method-args">(msgctxt, msgid)</span>
1340
- </div>
1341
-
1342
- <div class="method-description">
1343
- <p>
1344
- Alias for <a href="GetText.html#M000090">pgettext</a>
1345
- </p>
1346
- </div>
1347
- </div>
1348
-
1349
- <div id="method-M000090" class="method-detail">
1350
- <a name="M000090"></a>
1351
-
1352
- <div class="method-heading">
1353
- <a href="#M000090" class="method-signature">
1354
- <span class="method-name">pgettext(msgctxt, msgid)<br />
1355
- p_(msgctxt, msgid)<br />
1356
- </span>
1357
- </a>
1358
- </div>
1359
-
1360
- <div class="method-description">
1361
- <p>
1362
- Translates msgid with msgctxt. This methods is similer with <a
1363
- href="GetText.html#M000109">s_</a>().
1364
- </p>
1365
- <pre>
1366
- e.g.) p_(&quot;File&quot;, &quot;New&quot;) == s_(&quot;File|New&quot;)
1367
- p_(&quot;File&quot;, &quot;Open&quot;) == s_(&quot;File|Open&quot;)
1368
- </pre>
1369
- <ul>
1370
- <li>msgctxt: the message context.
1371
-
1372
- </li>
1373
- <li>msgid: the message id.
1374
-
1375
- </li>
1376
- <li>Returns: the localized text by msgid. If there are no localized text, it
1377
- returns msgid.
1378
-
1379
- </li>
1380
- </ul>
1381
- <p>
1382
- See: <a
1383
- href="http://www.gnu.org/software/autoconf/manual/gettext/Contexts.html">www.gnu.org/software/autoconf/manual/gettext/Contexts.html</a>
1384
- </p>
1385
- <p><a class="source-toggle" href="#"
1386
- onclick="toggleCode('M000090-source');return false;">[Source]</a></p>
1387
- <div class="method-source-code" id="M000090-source">
1388
- <pre>
1389
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 320</span>
1390
- 320: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">pgettext</span>(<span class="ruby-identifier">msgctxt</span>, <span class="ruby-identifier">msgid</span>)
1391
- 321: <span class="ruby-identifier">sgettext</span>(<span class="ruby-identifier">msgctxt</span> <span class="ruby-operator">+</span> <span class="ruby-value str">&quot;\004&quot;</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">msgid</span>, <span class="ruby-value str">&quot;\004&quot;</span>)
1392
- 322: <span class="ruby-keyword kw">end</span>
1393
- </pre>
1394
- </div>
1395
- </div>
1396
- </div>
1397
-
1398
- <div id="method-M000105" class="method-detail">
1399
- <a name="M000105"></a>
1400
-
1401
- <div class="method-heading">
1402
- <a href="#M000105" class="method-signature">
1403
- <span class="method-name">remove_all_textdomains</span><span class="method-args">()</span>
1404
- </a>
1405
- </div>
1406
-
1407
- <div class="method-description">
1408
- <p>
1409
- for testing.
1410
- </p>
1411
- <p><a class="source-toggle" href="#"
1412
- onclick="toggleCode('M000105-source');return false;">[Source]</a></p>
1413
- <div class="method-source-code" id="M000105-source">
1414
- <pre>
1415
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 597</span>
1416
- 597: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">remove_all_textdomains</span>
1417
- 598: <span class="ruby-identifier">clear_cache</span>
1418
- 599: <span class="ruby-ivar">@@__textdomainmanagers</span> = {}
1419
- 600: <span class="ruby-keyword kw">end</span>
1420
- </pre>
1421
- </div>
1422
- </div>
1423
- </div>
1424
-
1425
- <div id="method-M000075" class="method-detail">
1426
- <a name="M000075"></a>
1427
-
1428
- <div class="method-heading">
1429
- <a href="#M000075" class="method-signature">
1430
- <span class="method-name">rgettext</span><span class="method-args">(targetfiles = nil, out = STDOUT)</span>
1431
- </a>
1432
- </div>
1433
-
1434
- <div class="method-description">
1435
- <p>
1436
- Creates a po-file from targetfiles(ruby-script-files, ActiveRecord, .rhtml
1437
- files, glade-2 XML files), then output the result to out. If no parameter
1438
- is set, it behaves same as command line tools(rgettet).
1439
- </p>
1440
- <p>
1441
- This function is a part of GetText.create_pofiles. Usually you don&#8216;t
1442
- need to call this function directly.
1443
- </p>
1444
- <p>
1445
- <b>Note</b> for ActiveRecord, you need to run your database server and
1446
- configure the config/database.xml correctly before execute this function.
1447
- </p>
1448
- <ul>
1449
- <li>targetfiles: An Array of po-files or nil.
1450
-
1451
- </li>
1452
- <li>out: output IO or output path.
1453
-
1454
- </li>
1455
- <li>Returns: self
1456
-
1457
- </li>
1458
- </ul>
1459
- <p><a class="source-toggle" href="#"
1460
- onclick="toggleCode('M000075-source');return false;">[Source]</a></p>
1461
- <div class="method-source-code" id="M000075-source">
1462
- <pre>
1463
- <span class="ruby-comment cmt"># File lib/gettext/rgettext.rb, line 265</span>
1464
- 265: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">rgettext</span>(<span class="ruby-identifier">targetfiles</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">out</span> = <span class="ruby-constant">STDOUT</span>)
1465
- 266: <span class="ruby-constant">RGetText</span>.<span class="ruby-identifier">run</span>(<span class="ruby-identifier">targetfiles</span>, <span class="ruby-identifier">out</span>)
1466
- 267: <span class="ruby-keyword kw">self</span>
1467
- 268: <span class="ruby-keyword kw">end</span>
1468
- </pre>
1469
- </div>
1470
- </div>
1471
- </div>
1472
-
1473
- <div id="method-M000076" class="method-detail">
1474
- <a name="M000076"></a>
1475
-
1476
- <div class="method-heading">
1477
- <a href="#M000076" class="method-signature">
1478
- <span class="method-name">rmsgfmt</span><span class="method-args">(targetfile = nil, output_path = nil)</span>
1479
- </a>
1480
- </div>
1481
-
1482
- <div class="method-description">
1483
- <p>
1484
- Creates a mo-file from a targetfile(po-file), then output the result to
1485
- out. If no parameter is set, it behaves same as command line tools(<a
1486
- href="GetText.html#M000076">rmsgfmt</a>).
1487
- </p>
1488
- <ul>
1489
- <li>targetfile: An Array of po-files or nil.
1490
-
1491
- </li>
1492
- <li>output_path: output path.
1493
-
1494
- </li>
1495
- <li>Returns: the <a href="MOFile.html">MOFile</a> object.
1496
-
1497
- </li>
1498
- </ul>
1499
- <p><a class="source-toggle" href="#"
1500
- onclick="toggleCode('M000076-source');return false;">[Source]</a></p>
1501
- <div class="method-source-code" id="M000076-source">
1502
- <pre>
1503
- <span class="ruby-comment cmt"># File lib/gettext/rmsgfmt.rb, line 79</span>
1504
- 79: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">rmsgfmt</span>(<span class="ruby-identifier">targetfile</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">output_path</span> = <span class="ruby-keyword kw">nil</span>)
1505
- 80: <span class="ruby-constant">RMsgfmt</span>.<span class="ruby-identifier">run</span>(<span class="ruby-identifier">targetfile</span>, <span class="ruby-identifier">output_path</span>)
1506
- 81: <span class="ruby-keyword kw">end</span>
1507
- </pre>
1508
- </div>
1509
- </div>
1510
- </div>
1511
-
1512
- <div id="method-M000080" class="method-detail">
1513
- <a name="M000080"></a>
1514
-
1515
- <div class="method-heading">
1516
- <a href="#M000080" class="method-signature">
1517
- <span class="method-name">rmsgmerge</span><span class="method-args">(reference = nil, definition = nil, out = STDOUT)</span>
1518
- </a>
1519
- </div>
1520
-
1521
- <div class="method-description">
1522
- <p>
1523
- Experimental
1524
- </p>
1525
- <p><a class="source-toggle" href="#"
1526
- onclick="toggleCode('M000080-source');return false;">[Source]</a></p>
1527
- <div class="method-source-code" id="M000080-source">
1528
- <pre>
1529
- <span class="ruby-comment cmt"># File lib/gettext/rmsgmerge.rb, line 489</span>
1530
- 489: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">rmsgmerge</span>(<span class="ruby-identifier">reference</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">definition</span> = <span class="ruby-keyword kw">nil</span>, <span class="ruby-identifier">out</span> = <span class="ruby-constant">STDOUT</span>)
1531
- 490: <span class="ruby-constant">RMsgMerge</span>.<span class="ruby-identifier">run</span>(<span class="ruby-identifier">reference</span>, <span class="ruby-identifier">definition</span>, <span class="ruby-identifier">out</span>)
1532
- 491: <span class="ruby-keyword kw">end</span>
1533
- </pre>
1534
- </div>
1535
- </div>
1536
- </div>
1537
-
1538
- <div id="method-M000109" class="method-detail">
1539
- <a name="M000109"></a>
1540
-
1541
- <div class="method-heading">
1542
- <span class="method-name">s_</span><span class="method-args">(msgid, div = '|')</span>
1543
- </div>
1544
-
1545
- <div class="method-description">
1546
- <p>
1547
- Alias for <a href="GetText.html#M000089">sgettext</a>
1548
- </p>
1549
- </div>
1550
- </div>
1551
-
1552
- <div id="method-M000077" class="method-detail">
1553
- <a name="M000077"></a>
1554
-
1555
- <div class="method-heading">
1556
- <a href="#M000077" class="method-signature">
1557
- <span class="method-name">set_cgi</span><span class="method-args">(cgi_)</span>
1558
- </a>
1559
- </div>
1560
-
1561
- <div class="method-description">
1562
- <p>
1563
- Sets a CGI object.
1564
- </p>
1565
- <ul>
1566
- <li>cgi_: CGI object
1567
-
1568
- </li>
1569
- <li>Returns: self
1570
-
1571
- </li>
1572
- </ul>
1573
- <p><a class="source-toggle" href="#"
1574
- onclick="toggleCode('M000077-source');return false;">[Source]</a></p>
1575
- <div class="method-source-code" id="M000077-source">
1576
- <pre>
1577
- <span class="ruby-comment cmt"># File lib/gettext/cgi.rb, line 22</span>
1578
- 22: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">set_cgi</span>(<span class="ruby-identifier">cgi_</span>)
1579
- 23: <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">set_cgi</span>(<span class="ruby-identifier">cgi_</span>)
1580
- 24: <span class="ruby-keyword kw">end</span>
1581
- </pre>
1582
- </div>
1583
- </div>
1584
- </div>
1585
-
1586
- <div id="method-M000096" class="method-detail">
1587
- <a name="M000096"></a>
1588
-
1589
- <div class="method-heading">
1590
- <a href="#M000096" class="method-signature">
1591
- <span class="method-name">set_locale</span><span class="method-args">(locale, this_target_only = false)</span>
1592
- </a>
1593
- </div>
1594
-
1595
- <div class="method-description">
1596
- <p>
1597
- Sets the current <a href="GetText.html#M000102">locale</a> to the current
1598
- class/module
1599
- </p>
1600
- <p>
1601
- Notice that you shouldn&#8216;t use this for your own Libraries.
1602
- </p>
1603
- <ul>
1604
- <li><a href="GetText.html#M000102">locale</a>: a <a
1605
- href="GetText.html#M000102">locale</a> string or <a
1606
- href="Locale/Object.html">Locale::Object</a>.
1607
-
1608
- </li>
1609
- <li>this_target_only: true if you want to change the current class/module only.
1610
-
1611
- </li>
1612
- </ul>
1613
- <p>
1614
- Otherwise, this changes the <a href="GetText.html#M000102">locale</a> of
1615
- the current class/module and its ancestors. Default is false.
1616
- </p>
1617
- <ul>
1618
- <li>Returns: self
1619
-
1620
- </li>
1621
- </ul>
1622
- <p><a class="source-toggle" href="#"
1623
- onclick="toggleCode('M000096-source');return false;">[Source]</a></p>
1624
- <div class="method-source-code" id="M000096-source">
1625
- <pre>
1626
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 470</span>
1627
- 470: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">set_locale</span>(<span class="ruby-identifier">locale</span>, <span class="ruby-identifier">this_target_only</span> = <span class="ruby-keyword kw">false</span>)
1628
- 471: <span class="ruby-identifier">ret</span> = <span class="ruby-keyword kw">nil</span>
1629
- 472: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">locale</span>
1630
- 473: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">locale</span>.<span class="ruby-identifier">kind_of?</span> <span class="ruby-constant">Locale</span><span class="ruby-operator">::</span><span class="ruby-constant">Object</span>
1631
- 474: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">locale</span>
1632
- 475: <span class="ruby-keyword kw">else</span>
1633
- 476: <span class="ruby-identifier">ret</span> = <span class="ruby-constant">Locale</span><span class="ruby-operator">::</span><span class="ruby-constant">Object</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">locale</span>.<span class="ruby-identifier">to_s</span>)
1634
- 477: <span class="ruby-keyword kw">end</span>
1635
- 478: <span class="ruby-identifier">ret</span>.<span class="ruby-identifier">charset</span> = <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">output_charset</span> <span class="ruby-keyword kw">if</span> <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">output_charset</span>
1636
- 479: <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">set</span>(<span class="ruby-identifier">ret</span>)
1637
- 480: <span class="ruby-keyword kw">else</span>
1638
- 481: <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">set</span>(<span class="ruby-keyword kw">nil</span>)
1639
- 482: <span class="ruby-identifier">ret</span> = <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">get</span>
1640
- 483: <span class="ruby-keyword kw">end</span>
1641
- 484: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">this_target_only</span>
1642
- 485: <span class="ruby-identifier">manager</span> = <span class="ruby-ivar">@@__textdomainmanagers</span>[<span class="ruby-identifier">bound_target</span>]
1643
- 486: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">manager</span>
1644
- 487: <span class="ruby-identifier">manager</span>.<span class="ruby-identifier">set_locale</span>(<span class="ruby-identifier">ret</span>, <span class="ruby-operator">!</span> <span class="ruby-identifier">cached?</span>)
1645
- 488: <span class="ruby-keyword kw">end</span>
1646
- 489: <span class="ruby-keyword kw">else</span>
1647
- 490: <span class="ruby-identifier">each_textdomain</span> {<span class="ruby-operator">|</span><span class="ruby-identifier">textdomain</span><span class="ruby-operator">|</span>
1648
- 491: <span class="ruby-identifier">textdomain</span>.<span class="ruby-identifier">set_locale</span>(<span class="ruby-identifier">ret</span>, <span class="ruby-operator">!</span> <span class="ruby-identifier">cached?</span>)
1649
- 492: }
1650
- 493: <span class="ruby-keyword kw">end</span>
1651
- 494: <span class="ruby-keyword kw">self</span>
1652
- 495: <span class="ruby-keyword kw">end</span>
1653
- </pre>
1654
- </div>
1655
- </div>
1656
- </div>
1657
-
1658
- <div id="method-M000097" class="method-detail">
1659
- <a name="M000097"></a>
1660
-
1661
- <div class="method-heading">
1662
- <a href="#M000097" class="method-signature">
1663
- <span class="method-name">set_locale_all</span><span class="method-args">(locale)</span>
1664
- </a>
1665
- </div>
1666
-
1667
- <div class="method-description">
1668
- <p>
1669
- Sets current <a href="GetText.html#M000102">locale</a> to the all
1670
- textdomains.
1671
- </p>
1672
- <p>
1673
- Note that you shouldn&#8216;t use this for your own Libraries.
1674
- </p>
1675
- <ul>
1676
- <li><a href="GetText.html#M000102">locale</a>: a <a
1677
- href="GetText.html#M000102">locale</a> string or <a
1678
- href="Locale/Object.html">Locale::Object</a>, otherwise nil to use default
1679
- <a href="GetText.html#M000102">locale</a>.
1680
-
1681
- </li>
1682
- <li>Returns: self
1683
-
1684
- </li>
1685
- </ul>
1686
- <p><a class="source-toggle" href="#"
1687
- onclick="toggleCode('M000097-source');return false;">[Source]</a></p>
1688
- <div class="method-source-code" id="M000097-source">
1689
- <pre>
1690
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 502</span>
1691
- 502: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">set_locale_all</span>(<span class="ruby-identifier">locale</span>)
1692
- 503: <span class="ruby-identifier">ret</span> = <span class="ruby-keyword kw">nil</span>
1693
- 504: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">locale</span>
1694
- 505: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">locale</span>.<span class="ruby-identifier">kind_of?</span> <span class="ruby-constant">Locale</span><span class="ruby-operator">::</span><span class="ruby-constant">Object</span>
1695
- 506: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">locale</span>
1696
- 507: <span class="ruby-keyword kw">else</span>
1697
- 508: <span class="ruby-identifier">ret</span> = <span class="ruby-constant">Locale</span><span class="ruby-operator">::</span><span class="ruby-constant">Object</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">locale</span>.<span class="ruby-identifier">to_s</span>)
1698
- 509: <span class="ruby-keyword kw">end</span>
1699
- 510: <span class="ruby-keyword kw">else</span>
1700
- 511: <span class="ruby-identifier">ret</span> = <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">default</span>
1701
- 512: <span class="ruby-keyword kw">end</span>
1702
- 513: <span class="ruby-identifier">ret</span>.<span class="ruby-identifier">charset</span> = <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">output_charset</span> <span class="ruby-keyword kw">if</span> <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">output_charset</span>
1703
- 514: <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">set_current</span>(<span class="ruby-identifier">ret</span>)
1704
- 515: <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">each_all</span> {<span class="ruby-operator">|</span><span class="ruby-identifier">textdomain</span><span class="ruby-operator">|</span>
1705
- 516: <span class="ruby-identifier">textdomain</span>.<span class="ruby-identifier">set_locale</span>(<span class="ruby-identifier">ret</span>, <span class="ruby-operator">!</span> <span class="ruby-identifier">cached?</span>)
1706
- 517: }
1707
- 518: <span class="ruby-keyword kw">self</span>
1708
- 519: <span class="ruby-keyword kw">end</span>
1709
- </pre>
1710
- </div>
1711
- </div>
1712
- </div>
1713
-
1714
- <div id="method-M000099" class="method-detail">
1715
- <a name="M000099"></a>
1716
-
1717
- <div class="method-heading">
1718
- <a href="#M000099" class="method-signature">
1719
- <span class="method-name">set_output_charset</span><span class="method-args">(charset)</span>
1720
- </a>
1721
- </div>
1722
-
1723
- <div class="method-description">
1724
- <p>
1725
- Sets charset(<a href="String.html">String</a>) such as &quot;euc-jp&quot;,
1726
- &quot;sjis&quot;, &quot;CP932&quot;, &quot;utf-8&quot;, &#8230; You
1727
- shouldn&#8216;t use this in your own Libraries.
1728
- </p>
1729
- <ul>
1730
- <li>charset: an <a href="GetText.html#M000101">output_charset</a>
1731
-
1732
- </li>
1733
- <li>Returns: charset
1734
-
1735
- </li>
1736
- </ul>
1737
- <p><a class="source-toggle" href="#"
1738
- onclick="toggleCode('M000099-source');return false;">[Source]</a></p>
1739
- <div class="method-source-code" id="M000099-source">
1740
- <pre>
1741
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 537</span>
1742
- 537: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">set_output_charset</span>(<span class="ruby-identifier">charset</span>)
1743
- 538: <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">output_charset</span> = <span class="ruby-identifier">charset</span>
1744
- 539: <span class="ruby-keyword kw">self</span>
1745
- 540: <span class="ruby-keyword kw">end</span>
1746
- </pre>
1747
- </div>
1748
- </div>
1749
- </div>
1750
-
1751
- <div id="method-M000106" class="method-detail">
1752
- <a name="M000106"></a>
1753
-
1754
- <div class="method-heading">
1755
- <span class="method-name">setlocale</span><span class="method-args">(locale)</span>
1756
- </div>
1757
-
1758
- <div class="method-description">
1759
- <p>
1760
- Alias for <a href="GetText.html#M000102">locale</a>=
1761
- </p>
1762
- </div>
1763
- </div>
1764
-
1765
- <div id="method-M000089" class="method-detail">
1766
- <a name="M000089"></a>
1767
-
1768
- <div class="method-heading">
1769
- <a href="#M000089" class="method-signature">
1770
- <span class="method-name">sgettext(msgid, div = '|')<br />
1771
- s_(msgid, div = '|')<br />
1772
- </span>
1773
- </a>
1774
- </div>
1775
-
1776
- <div class="method-description">
1777
- <p>
1778
- Translates msgid, but if there are no localized text, it returns a last
1779
- part of msgid separeted &quot;div&quot;.
1780
- </p>
1781
- <ul>
1782
- <li>msgid: the message id.
1783
-
1784
- </li>
1785
- <li>div: separator or nil.
1786
-
1787
- </li>
1788
- <li>Returns: the localized text by msgid. If there are no localized text, it
1789
- returns a last part of msgid separeted &quot;div&quot;.
1790
-
1791
- </li>
1792
- </ul>
1793
- <p>
1794
- See: <a
1795
- href="http://www.gnu.org/software/gettext/manual/html_mono/gettext.html#SEC151">www.gnu.org/software/gettext/manual/html_mono/gettext.html#SEC151</a>
1796
- </p>
1797
- <p><a class="source-toggle" href="#"
1798
- onclick="toggleCode('M000089-source');return false;">[Source]</a></p>
1799
- <div class="method-source-code" id="M000089-source">
1800
- <pre>
1801
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 279</span>
1802
- 279: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">sgettext</span>(<span class="ruby-identifier">msgid</span>, <span class="ruby-identifier">div</span> = <span class="ruby-value str">'|'</span>)
1803
- 280: <span class="ruby-identifier">cached_key</span> = [<span class="ruby-identifier">bound_target</span>, <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">current</span>, <span class="ruby-identifier">msgid</span>]
1804
- 281: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">cached?</span>
1805
- 282: <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@@__cache_msgids</span>[<span class="ruby-identifier">cached_key</span>]
1806
- 283: <span class="ruby-keyword kw">return</span> <span class="ruby-ivar">@@__cache_msgids</span>[<span class="ruby-identifier">cached_key</span>]
1807
- 284: <span class="ruby-keyword kw">end</span>
1808
- 285: <span class="ruby-keyword kw">end</span>
1809
- 286: <span class="ruby-identifier">msg</span> = <span class="ruby-keyword kw">nil</span>
1810
- 287:
1811
- 288: <span class="ruby-comment cmt"># Use &quot;for&quot;(not &quot;each&quot;) to support JRuby 1.1.0.</span>
1812
- 289: <span class="ruby-keyword kw">for</span> <span class="ruby-identifier">target</span> <span class="ruby-keyword kw">in</span> <span class="ruby-identifier">bound_targets</span>(<span class="ruby-keyword kw">self</span>)
1813
- 290: <span class="ruby-identifier">manager</span> = <span class="ruby-ivar">@@__textdomainmanagers</span>[<span class="ruby-identifier">target</span>]
1814
- 291: <span class="ruby-keyword kw">for</span> <span class="ruby-identifier">textdomain</span> <span class="ruby-keyword kw">in</span> <span class="ruby-identifier">manager</span>.<span class="ruby-identifier">textdomains</span>
1815
- 292: <span class="ruby-identifier">msg</span> = <span class="ruby-identifier">textdomain</span>[<span class="ruby-value">1</span>].<span class="ruby-identifier">gettext</span>(<span class="ruby-identifier">msgid</span>)
1816
- 293: <span class="ruby-keyword kw">break</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">msg</span>
1817
- 294: <span class="ruby-keyword kw">end</span>
1818
- 295: <span class="ruby-keyword kw">break</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">msg</span>
1819
- 296: <span class="ruby-keyword kw">end</span>
1820
- 297:
1821
- 298: <span class="ruby-identifier">msg</span> <span class="ruby-operator">||=</span> <span class="ruby-identifier">msgid</span>
1822
- 299: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">div</span> <span class="ruby-keyword kw">and</span> <span class="ruby-identifier">msg</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">msgid</span>
1823
- 300: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">index</span> = <span class="ruby-identifier">msg</span>.<span class="ruby-identifier">rindex</span>(<span class="ruby-identifier">div</span>)
1824
- 301: <span class="ruby-identifier">msg</span> = <span class="ruby-identifier">msg</span>[(<span class="ruby-identifier">index</span> <span class="ruby-operator">+</span> <span class="ruby-value">1</span>)<span class="ruby-operator">..</span><span class="ruby-value">-1</span>]
1825
- 302: <span class="ruby-keyword kw">end</span>
1826
- 303: <span class="ruby-keyword kw">end</span>
1827
- 304: <span class="ruby-ivar">@@__cache_msgids</span>[<span class="ruby-identifier">cached_key</span>] = <span class="ruby-identifier">msg</span>
1828
- 305: <span class="ruby-keyword kw">end</span>
1829
- </pre>
1830
- </div>
1831
- </div>
1832
- </div>
1833
-
1834
- <div id="method-M000086" class="method-detail">
1835
- <a name="M000086"></a>
1836
-
1837
- <div class="method-heading">
1838
- <a href="#M000086" class="method-signature">
1839
- <span class="method-name">textdomain</span><span class="method-args">(domainname)</span>
1840
- </a>
1841
- </div>
1842
-
1843
- <div class="method-description">
1844
- <p>
1845
- Binds a existed <a href="GetText.html#M000086">textdomain</a> to your
1846
- program. This is the same function with <a
1847
- href="GetText.html#M000084">GetText.bindtextdomain</a> but simpler(and
1848
- faster) than <a href="GetText.html#M000084">bindtextdomain</a>. Notice that
1849
- you need to call <a href="GetText.html#M000084">GetText.bindtextdomain</a>
1850
- first. If the domainname hasn&#8216;t bound yet, raises <a
1851
- href="GetText/NoboundTextDomainError.html">GetText::NoboundTextDomainError</a>.
1852
- </p>
1853
- <ul>
1854
- <li>domainname: a <a href="GetText.html#M000086">textdomain</a> name.
1855
-
1856
- </li>
1857
- <li>Returns: the <a
1858
- href="GetText/TextDomainManager.html">GetText::TextDomainManager</a>.
1859
-
1860
- </li>
1861
- </ul>
1862
- <p><a class="source-toggle" href="#"
1863
- onclick="toggleCode('M000086-source');return false;">[Source]</a></p>
1864
- <div class="method-source-code" id="M000086-source">
1865
- <pre>
1866
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 128</span>
1867
- 128: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">textdomain</span>(<span class="ruby-identifier">domainname</span>)
1868
- 129: <span class="ruby-identifier">domain</span> = <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">textdomain</span>(<span class="ruby-identifier">domainname</span>)
1869
- 130: <span class="ruby-identifier">raise</span> <span class="ruby-constant">NoboundTextDomainError</span>, <span class="ruby-node">&quot;#{domainname} is not bound.&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">domain</span>
1870
- 131: <span class="ruby-identifier">target_key</span> = <span class="ruby-identifier">bound_target</span>
1871
- 132: <span class="ruby-identifier">manager</span> = <span class="ruby-ivar">@@__textdomainmanagers</span>[<span class="ruby-identifier">target_key</span>]
1872
- 133: <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">manager</span>
1873
- 134: <span class="ruby-identifier">manager</span> = <span class="ruby-constant">TextDomainManager</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">target_key</span>, <span class="ruby-constant">Locale</span>.<span class="ruby-identifier">get</span>)
1874
- 135: <span class="ruby-ivar">@@__textdomainmanagers</span>[<span class="ruby-identifier">target_key</span>] = <span class="ruby-identifier">manager</span>
1875
- 136: <span class="ruby-keyword kw">end</span>
1876
- 137: <span class="ruby-identifier">manager</span>.<span class="ruby-identifier">set_locale</span>(<span class="ruby-constant">Locale</span>.<span class="ruby-identifier">get</span>)
1877
- 138: <span class="ruby-identifier">manager</span>.<span class="ruby-identifier">add_textdomain</span>(<span class="ruby-identifier">domainname</span>)
1878
- 139: <span class="ruby-identifier">manager</span>
1879
- 140: <span class="ruby-keyword kw">end</span>
1880
- </pre>
1881
- </div>
1882
- </div>
1883
- </div>
1884
-
1885
- <div id="method-M000087" class="method-detail">
1886
- <a name="M000087"></a>
1887
-
1888
- <div class="method-heading">
1889
- <a href="#M000087" class="method-signature">
1890
- <span class="method-name">textdomain_to</span><span class="method-args">(klass, domainname)</span>
1891
- </a>
1892
- </div>
1893
-
1894
- <div class="method-description">
1895
- <p>
1896
- Includes <a href="GetText.html">GetText</a> module and bind an exsited <a
1897
- href="GetText.html#M000086">textdomain</a> to a class. See <a
1898
- href="GetText.html#M000086">textdomain</a> for more detail.
1899
- </p>
1900
- <ul>
1901
- <li>klass: the target ruby class.
1902
-
1903
- </li>
1904
- <li>domainname: the <a href="GetText.html#M000086">textdomain</a> name.
1905
-
1906
- </li>
1907
- </ul>
1908
- <p><a class="source-toggle" href="#"
1909
- onclick="toggleCode('M000087-source');return false;">[Source]</a></p>
1910
- <div class="method-source-code" id="M000087-source">
1911
- <pre>
1912
- <span class="ruby-comment cmt"># File lib/gettext.rb, line 146</span>
1913
- 146: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">textdomain_to</span>(<span class="ruby-identifier">klass</span>, <span class="ruby-identifier">domainname</span>)
1914
- 147: <span class="ruby-identifier">ret</span> = <span class="ruby-keyword kw">nil</span>
1915
- 148: <span class="ruby-identifier">klass</span>.<span class="ruby-identifier">module_eval</span> {
1916
- 149: <span class="ruby-identifier">include</span> <span class="ruby-constant">GetText</span>
1917
- 150: <span class="ruby-identifier">ret</span> = <span class="ruby-identifier">textdomain</span>(<span class="ruby-identifier">domainname</span>)
1918
- 151: }
1919
- 152: <span class="ruby-identifier">ret</span>
1920
- 153: <span class="ruby-keyword kw">end</span>
1921
- </pre>
1922
- </div>
1923
- </div>
1924
- </div>
1925
-
1926
- <div id="method-M000074" class="method-detail">
1927
- <a name="M000074"></a>
1928
-
1929
- <div class="method-heading">
1930
- <a href="#M000074" class="method-signature">
1931
- <span class="method-name">update_pofiles</span><span class="method-args">(textdomain, files, app_version, po_root = &quot;po&quot;, refpot = &quot;tmp.pot&quot;)</span>
1932
- </a>
1933
- </div>
1934
-
1935
- <div class="method-description">
1936
- <p>
1937
- At first, this creates the #{po_root}/#{domainname}.pot file using <a
1938
- href="GetText.html#M000075">GetText.rgettext</a>. Since 2nd time, this
1939
- updates(merges) the #{po_root}/#{domainname}.pot and all of the
1940
- #{po_root}/#{lang}/#{domainname}.po files under &quot;po_root&quot; using
1941
- &quot;<a href="GetText.html#M000072">msgmerge</a>&quot;.
1942
- </p>
1943
- <p>
1944
- <b>Note</b> &quot;<a href="GetText.html#M000072">msgmerge</a>&quot; tool is
1945
- included in GNU <a href="GetText.html">GetText</a>. So you need to install
1946
- GNU <a href="GetText.html">GetText</a>.
1947
- </p>
1948
- <p>
1949
- See &lt;HOWTO maintain po/mo files(<a
1950
- href="http://www.yotabanana.com/hiki/ruby-gettext-howto-manage.html">www.yotabanana.com/hiki/ruby-gettext-howto-manage.html</a>)&gt;
1951
- for more detals.
1952
- </p>
1953
- <ul>
1954
- <li>domainname: the <a href="GetText.html#M000086">textdomain</a> name.
1955
-
1956
- </li>
1957
- <li>targetfiles: An Array of target files or nil (See <a
1958
- href="GetText.html#M000075">GetText.rgettext</a> for more details).
1959
-
1960
- </li>
1961
- <li>app_version: the application information which appears
1962
- &quot;Project-Id-Version: #{app_version}&quot; in the pot/po-files.
1963
-
1964
- </li>
1965
- <li>po_root: the root directory of po-files.
1966
-
1967
- </li>
1968
- <li>refpot: set the temporary file name. You shouldn&#8216;t use this(It will
1969
- be removed).
1970
-
1971
- </li>
1972
- </ul>
1973
- <pre>
1974
- (e.g.) GetText.update_pofiles(&quot;myapp&quot;, Dir.glob(&quot;lib/*.rb&quot;), &quot;myapp 1.0.0&quot;)
1975
- </pre>
1976
- <p><a class="source-toggle" href="#"
1977
- onclick="toggleCode('M000074-source');return false;">[Source]</a></p>
1978
- <div class="method-source-code" id="M000074-source">
1979
- <pre>
1980
- <span class="ruby-comment cmt"># File lib/gettext/utils.rb, line 145</span>
1981
- 145: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">update_pofiles</span>(<span class="ruby-identifier">textdomain</span>, <span class="ruby-identifier">files</span>, <span class="ruby-identifier">app_version</span>, <span class="ruby-identifier">po_root</span> = <span class="ruby-value str">&quot;po&quot;</span>, <span class="ruby-identifier">refpot</span> = <span class="ruby-value str">&quot;tmp.pot&quot;</span>)
1982
- 146: <span class="ruby-identifier">rgettext</span>(<span class="ruby-identifier">files</span>, <span class="ruby-identifier">refpot</span>)
1983
- 147: <span class="ruby-identifier">msgmerge_all</span>(<span class="ruby-identifier">textdomain</span>, <span class="ruby-identifier">app_version</span>, <span class="ruby-identifier">po_root</span>, <span class="ruby-identifier">refpot</span>)
1984
- 148: <span class="ruby-constant">File</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-identifier">refpot</span>)
1985
- 149: <span class="ruby-keyword kw">end</span>
1986
- </pre>
1987
- </div>
1988
- </div>
1989
- </div>
1990
-
1991
-
1992
- </div>
1993
-
1994
-
1995
- </div>
1996
-
1997
-
1998
- <div id="validator-badges">
1999
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
2000
- </div>
2001
-
2002
- </body>
2003
- </html>