rbot 0.9.14 → 0.9.15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (368) hide show
  1. data/AUTHORS +6 -2
  2. data/REQUIREMENTS +7 -1
  3. data/Rakefile +10 -32
  4. data/bin/rbot +6 -1
  5. data/bin/svnwatch-postcommit-hook +68 -0
  6. data/data/rbot/contrib/plugins/stats.rb +3 -3
  7. data/data/rbot/contrib/plugins/vandale.rb +1 -1
  8. data/data/rbot/filters/rss.rb +72 -0
  9. data/data/rbot/languages/finnish.lang +50 -0
  10. data/data/rbot/plugins/alias.rb +6 -6
  11. data/data/rbot/plugins/autorejoin.rb +41 -2
  12. data/data/rbot/plugins/bans.rb +100 -6
  13. data/data/rbot/plugins/bash.rb +9 -4
  14. data/data/rbot/plugins/cal.rb +1 -1
  15. data/data/rbot/plugins/chucknorris.rb +6 -6
  16. data/data/rbot/plugins/debugger.rb +7 -3
  17. data/data/rbot/plugins/deepthoughts.rb +1 -1
  18. data/data/rbot/plugins/delicious.rb +6 -2
  19. data/data/rbot/plugins/dice.rb +7 -7
  20. data/data/rbot/plugins/dict.rb +4 -3
  21. data/data/rbot/plugins/dictclient.rb +17 -13
  22. data/data/rbot/plugins/digg.rb +3 -3
  23. data/data/rbot/plugins/eightball.rb +1 -1
  24. data/data/rbot/plugins/factoids.rb +13 -4
  25. data/data/rbot/plugins/figlet.rb +4 -4
  26. data/data/rbot/plugins/forecast.rb +3 -3
  27. data/data/rbot/plugins/fortune.rb +14 -8
  28. data/data/rbot/plugins/freshmeat.rb +2 -2
  29. data/data/rbot/plugins/games/azgame.rb +72 -19
  30. data/data/rbot/plugins/games/hangman.rb +499 -0
  31. data/data/rbot/plugins/games/quiz.rb +15 -13
  32. data/data/rbot/plugins/games/roshambo.rb +1 -1
  33. data/data/rbot/plugins/games/roulette.rb +4 -4
  34. data/data/rbot/plugins/games/shiritori.rb +31 -31
  35. data/data/rbot/plugins/games/uno.rb +28 -6
  36. data/data/rbot/plugins/games/wheelfortune.rb +1 -3
  37. data/data/rbot/plugins/geoip.rb +83 -28
  38. data/data/rbot/plugins/googlefight.rb +64 -0
  39. data/data/rbot/plugins/greet.rb +45 -0
  40. data/data/rbot/plugins/grouphug.rb +40 -12
  41. data/data/rbot/plugins/imdb.rb +4 -4
  42. data/data/rbot/plugins/insult.rb +2 -2
  43. data/data/rbot/plugins/karma.rb +6 -5
  44. data/data/rbot/plugins/keywords.rb +26 -22
  45. data/data/rbot/plugins/lart.rb +5 -6
  46. data/data/rbot/plugins/lastfm.rb +488 -125
  47. data/data/rbot/plugins/lib_spotify.rb +84 -0
  48. data/data/rbot/plugins/linkbot.rb +1 -1
  49. data/data/rbot/plugins/markov.rb +567 -78
  50. data/data/rbot/plugins/math.rb +3 -3
  51. data/data/rbot/plugins/modes.rb +1 -1
  52. data/data/rbot/plugins/nickrecover.rb +1 -1
  53. data/data/rbot/plugins/nickserv.rb +7 -7
  54. data/data/rbot/plugins/note.rb +55 -0
  55. data/data/rbot/plugins/nslookup.rb +2 -2
  56. data/data/rbot/plugins/quakeauth.rb +4 -4
  57. data/data/rbot/plugins/quotes.rb +53 -19
  58. data/data/rbot/plugins/reaction.rb +76 -19
  59. data/data/rbot/plugins/remind.rb +3 -96
  60. data/data/rbot/plugins/ri.rb +1 -1
  61. data/data/rbot/plugins/rot13.rb +1 -1
  62. data/data/rbot/plugins/rss.rb +296 -190
  63. data/data/rbot/plugins/salut.rb +8 -8
  64. data/data/rbot/plugins/script.rb +48 -11
  65. data/data/rbot/plugins/search.rb +124 -28
  66. data/data/rbot/plugins/seen.rb +162 -31
  67. data/data/rbot/plugins/shortenurls.rb +1 -1
  68. data/data/rbot/plugins/slashdot.rb +19 -6
  69. data/data/rbot/plugins/spotify.rb +78 -0
  70. data/data/rbot/plugins/theyfightcrime.rb +10 -10
  71. data/data/rbot/plugins/time.rb +2 -2
  72. data/data/rbot/plugins/translator.rb +161 -85
  73. data/data/rbot/plugins/tube.rb +2 -2
  74. data/data/rbot/plugins/tumblr.rb +143 -0
  75. data/data/rbot/plugins/twitter.rb +25 -6
  76. data/data/rbot/plugins/urban.rb +6 -4
  77. data/data/rbot/plugins/url.rb +49 -10
  78. data/data/rbot/plugins/weather.rb +6 -6
  79. data/data/rbot/plugins/wserver.rb +5 -5
  80. data/data/rbot/plugins/youtube.rb +12 -12
  81. data/data/rbot/templates/lart/larts-italian +1 -1
  82. data/launch_here.rb +68 -0
  83. data/lib/rbot/botuser.rb +1 -1
  84. data/lib/rbot/compat19.rb +70 -0
  85. data/lib/rbot/config.rb +8 -6
  86. data/lib/rbot/core/auth.rb +37 -21
  87. data/lib/rbot/core/basics.rb +33 -2
  88. data/lib/rbot/core/config.rb +24 -17
  89. data/lib/rbot/core/filters_ui.rb +2 -2
  90. data/lib/rbot/core/irclog.rb +20 -11
  91. data/lib/rbot/core/remote.rb +9 -9
  92. data/lib/rbot/core/unicode.rb +4 -0
  93. data/lib/rbot/core/userdata.rb +16 -1
  94. data/lib/rbot/core/utils/extends.rb +76 -0
  95. data/lib/rbot/core/utils/filters.rb +47 -0
  96. data/lib/rbot/core/utils/httputil.rb +36 -26
  97. data/lib/rbot/core/utils/parse_time.rb +193 -0
  98. data/lib/rbot/core/utils/utils.rb +81 -56
  99. data/lib/rbot/core/utils/wordlist.rb +66 -0
  100. data/lib/rbot/core/wordlist_ui.rb +27 -0
  101. data/lib/rbot/irc.rb +59 -19
  102. data/lib/rbot/ircbot.rb +190 -58
  103. data/lib/rbot/ircsocket.rb +14 -8
  104. data/lib/rbot/language.rb +4 -3
  105. data/lib/rbot/load-gettext.rb +22 -9
  106. data/lib/rbot/message.rb +89 -18
  107. data/lib/rbot/messagemapper.rb +71 -19
  108. data/lib/rbot/plugins.rb +112 -44
  109. data/lib/rbot/{registry.rb → registry/bdb.rb} +226 -22
  110. data/lib/rbot/registry/tc.rb +531 -0
  111. data/lib/rbot/rfc2812.rb +33 -8
  112. data/lib/rbot/timer.rb +12 -20
  113. data/po/en_US/rbot-autorejoin.po +3 -0
  114. data/po/en_US/rbot-azgame.po +51 -43
  115. data/po/en_US/rbot-bash.po +15 -0
  116. data/po/en_US/rbot-dictclient.po +20 -20
  117. data/po/en_US/rbot-factoids.po +9 -9
  118. data/po/en_US/rbot-geoip.po +0 -0
  119. data/po/en_US/rbot-googlefight.po +24 -0
  120. data/po/en_US/rbot-grouphug.po +4 -4
  121. data/po/en_US/rbot-hangman.po +114 -0
  122. data/po/en_US/rbot-keywords.po +3 -3
  123. data/po/en_US/rbot-lastfm.po +268 -70
  124. data/po/en_US/rbot-markov.po +73 -2
  125. data/po/en_US/rbot-quotes.po +21 -21
  126. data/po/en_US/rbot-rss.po +6 -2
  127. data/po/en_US/rbot-script.po +3 -0
  128. data/po/en_US/rbot-seen.po +72 -0
  129. data/po/en_US/rbot-spell.po +2 -2
  130. data/po/en_US/rbot-translator.po +13 -13
  131. data/po/en_US/rbot-twitter.po +3 -3
  132. data/po/en_US/rbot-uno.po +131 -114
  133. data/po/en_US/rbot-wall.po +12 -13
  134. data/po/en_US/rbot-wheelfortune.po +41 -41
  135. data/po/en_US/rbot.po +254 -194
  136. data/po/fi/rbot-alias.po +82 -0
  137. data/po/fi/rbot-autoop.po +0 -0
  138. data/po/fi/rbot-autorejoin.po +20 -0
  139. data/po/fi/rbot-azgame.po +194 -0
  140. data/po/fi/rbot-bans.po +0 -0
  141. data/po/fi/rbot-bash.po +32 -0
  142. data/po/fi/rbot-botsnack.po +0 -0
  143. data/po/fi/rbot-cal.po +20 -0
  144. data/po/fi/rbot-chanserv.po +0 -0
  145. data/po/fi/rbot-chucknorris.po +0 -0
  146. data/po/fi/rbot-debugger.po +0 -0
  147. data/po/fi/rbot-deepthoughts.po +0 -0
  148. data/po/fi/rbot-delicious.po +0 -0
  149. data/po/fi/rbot-dice.po +0 -0
  150. data/po/fi/rbot-dict.po +0 -0
  151. data/po/fi/rbot-dictclient.po +111 -0
  152. data/po/fi/rbot-digg.po +0 -0
  153. data/po/fi/rbot-eightball.po +0 -0
  154. data/po/fi/rbot-excuse.po +0 -0
  155. data/po/fi/rbot-factoids.po +107 -0
  156. data/po/fi/rbot-figlet.po +36 -0
  157. data/po/fi/rbot-fish.po +0 -0
  158. data/po/fi/rbot-forecast.po +0 -0
  159. data/po/fi/rbot-fortune.po +0 -0
  160. data/po/fi/rbot-freshmeat.po +0 -0
  161. data/po/fi/rbot-geoip.po +0 -0
  162. data/po/fi/rbot-googlefight.po +24 -0
  163. data/po/fi/rbot-grouphug.po +35 -0
  164. data/po/fi/rbot-hangman.po +121 -0
  165. data/po/fi/rbot-hl2.po +0 -0
  166. data/po/fi/rbot-host.po +20 -0
  167. data/po/fi/rbot-imdb.po +0 -0
  168. data/po/fi/rbot-insult.po +0 -0
  169. data/po/fi/rbot-iplookup.po +0 -0
  170. data/po/fi/rbot-karma.po +0 -0
  171. data/po/fi/rbot-keywords.po +24 -0
  172. data/po/fi/rbot-lart.po +0 -0
  173. data/po/fi/rbot-lastfm.po +377 -0
  174. data/po/fi/rbot-linkbot.po +0 -0
  175. data/po/fi/rbot-markov.po +91 -0
  176. data/po/fi/rbot-math.po +0 -0
  177. data/po/fi/rbot-modes.po +0 -0
  178. data/po/fi/rbot-nickrecover.po +36 -0
  179. data/po/fi/rbot-nickserv.po +104 -0
  180. data/po/fi/rbot-nslookup.po +0 -0
  181. data/po/fi/rbot-quakeauth.po +0 -0
  182. data/po/fi/rbot-quiz.po +0 -0
  183. data/po/fi/rbot-quotes.po +108 -0
  184. data/po/fi/rbot-reaction.po +0 -0
  185. data/po/fi/rbot-remind.po +0 -0
  186. data/po/fi/rbot-remotectl.po +0 -0
  187. data/po/fi/rbot-ri.po +0 -0
  188. data/po/fi/rbot-roshambo.po +0 -0
  189. data/po/fi/rbot-rot13.po +0 -0
  190. data/po/fi/rbot-roulette.po +0 -0
  191. data/po/fi/rbot-rss.po +24 -0
  192. data/po/fi/rbot-salut.po +0 -0
  193. data/po/fi/rbot-script.po +20 -0
  194. data/po/fi/rbot-search.po +0 -0
  195. data/po/fi/rbot-seen.po +92 -0
  196. data/po/fi/rbot-shiritori.po +102 -0
  197. data/po/fi/rbot-shortenurls.po +0 -0
  198. data/po/fi/rbot-slashdot.po +0 -0
  199. data/po/fi/rbot-spell.po +54 -0
  200. data/po/fi/rbot-theyfightcrime.po +0 -0
  201. data/po/fi/rbot-threat.po +0 -0
  202. data/po/fi/rbot-time.po +0 -0
  203. data/po/fi/rbot-topic.po +0 -0
  204. data/po/fi/rbot-translator.po +77 -0
  205. data/po/fi/rbot-tube.po +0 -0
  206. data/po/fi/rbot-twitter.po +24 -0
  207. data/po/fi/rbot-uno.po +529 -0
  208. data/po/fi/rbot-urban.po +0 -0
  209. data/po/fi/rbot-url.po +0 -0
  210. data/po/fi/rbot-usermodes.po +0 -0
  211. data/po/fi/rbot-wall.po +32 -0
  212. data/po/fi/rbot-weather.po +0 -0
  213. data/po/fi/rbot-wheelfortune.po +205 -0
  214. data/po/fi/rbot-wow.po +0 -0
  215. data/po/fi/rbot-wserver.po +0 -0
  216. data/po/fi/rbot-youtube.po +58 -0
  217. data/po/fi/rbot.po +1152 -0
  218. data/po/fr/rbot-autorejoin.po +3 -0
  219. data/po/fr/rbot-azgame.po +51 -43
  220. data/po/fr/rbot-bash.po +15 -0
  221. data/po/fr/rbot-dictclient.po +20 -20
  222. data/po/fr/rbot-factoids.po +9 -9
  223. data/po/fr/rbot-geoip.po +0 -0
  224. data/po/fr/rbot-googlefight.po +24 -0
  225. data/po/fr/rbot-grouphug.po +4 -4
  226. data/po/fr/rbot-hangman.po +114 -0
  227. data/po/fr/rbot-keywords.po +3 -3
  228. data/po/fr/rbot-lastfm.po +268 -70
  229. data/po/fr/rbot-markov.po +74 -2
  230. data/po/fr/rbot-quotes.po +21 -21
  231. data/po/fr/rbot-rss.po +6 -2
  232. data/po/fr/rbot-script.po +3 -0
  233. data/po/fr/rbot-seen.po +72 -0
  234. data/po/fr/rbot-spell.po +2 -2
  235. data/po/fr/rbot-translator.po +13 -13
  236. data/po/fr/rbot-twitter.po +3 -3
  237. data/po/fr/rbot-uno.po +132 -114
  238. data/po/fr/rbot-wall.po +8 -9
  239. data/po/fr/rbot-wheelfortune.po +41 -41
  240. data/po/fr/rbot.po +268 -197
  241. data/po/it/rbot-autorejoin.po +3 -0
  242. data/po/it/rbot-azgame.po +50 -42
  243. data/po/it/rbot-bash.po +15 -0
  244. data/po/it/rbot-dictclient.po +20 -20
  245. data/po/it/rbot-factoids.po +9 -9
  246. data/po/it/rbot-geoip.po +0 -0
  247. data/po/it/rbot-googlefight.po +24 -0
  248. data/po/it/rbot-grouphug.po +4 -4
  249. data/po/it/rbot-hangman.po +114 -0
  250. data/po/it/rbot-keywords.po +3 -3
  251. data/po/it/rbot-lastfm.po +268 -70
  252. data/po/it/rbot-markov.po +75 -3
  253. data/po/it/rbot-quotes.po +21 -21
  254. data/po/it/rbot-rss.po +7 -3
  255. data/po/it/rbot-script.po +19 -0
  256. data/po/it/rbot-seen.po +72 -0
  257. data/po/it/rbot-spell.po +2 -2
  258. data/po/it/rbot-translator.po +13 -13
  259. data/po/it/rbot-twitter.po +3 -3
  260. data/po/it/rbot-uno.po +137 -116
  261. data/po/it/rbot-wall.po +8 -9
  262. data/po/it/rbot-wheelfortune.po +41 -41
  263. data/po/it/rbot.po +265 -208
  264. data/po/ja/rbot-autorejoin.po +3 -0
  265. data/po/ja/rbot-azgame.po +51 -43
  266. data/po/ja/rbot-bash.po +15 -0
  267. data/po/ja/rbot-dictclient.po +20 -20
  268. data/po/ja/rbot-factoids.po +9 -9
  269. data/po/ja/rbot-geoip.po +0 -0
  270. data/po/ja/rbot-googlefight.po +24 -0
  271. data/po/ja/rbot-grouphug.po +4 -4
  272. data/po/ja/rbot-hangman.po +114 -0
  273. data/po/ja/rbot-keywords.po +3 -3
  274. data/po/ja/rbot-lastfm.po +268 -70
  275. data/po/ja/rbot-markov.po +73 -2
  276. data/po/ja/rbot-quotes.po +21 -21
  277. data/po/ja/rbot-rss.po +6 -2
  278. data/po/ja/rbot-script.po +3 -0
  279. data/po/ja/rbot-seen.po +72 -0
  280. data/po/ja/rbot-spell.po +2 -2
  281. data/po/ja/rbot-translator.po +13 -13
  282. data/po/ja/rbot-twitter.po +3 -3
  283. data/po/ja/rbot-uno.po +131 -114
  284. data/po/ja/rbot-wall.po +8 -9
  285. data/po/ja/rbot-wheelfortune.po +41 -41
  286. data/po/ja/rbot.po +248 -192
  287. data/po/rbot-alias.pot +2 -2
  288. data/po/rbot-autorejoin.pot +21 -0
  289. data/po/rbot-azgame.pot +51 -43
  290. data/po/rbot-bash.pot +33 -0
  291. data/po/rbot-cal.pot +2 -2
  292. data/po/rbot-dictclient.pot +21 -21
  293. data/po/rbot-factoids.pot +10 -10
  294. data/po/rbot-figlet.pot +2 -2
  295. data/po/rbot-geoip.pot +0 -0
  296. data/po/rbot-googlefight.pot +25 -0
  297. data/po/rbot-grouphug.pot +6 -6
  298. data/po/rbot-hangman.pot +115 -0
  299. data/po/rbot-host.pot +2 -2
  300. data/po/rbot-keywords.pot +4 -4
  301. data/po/rbot-lastfm.pot +270 -72
  302. data/po/rbot-markov.pot +74 -3
  303. data/po/rbot-nickrecover.pot +2 -2
  304. data/po/rbot-nickserv.pot +2 -2
  305. data/po/rbot-quotes.pot +22 -22
  306. data/po/rbot-rss.pot +7 -3
  307. data/po/rbot-script.pot +21 -0
  308. data/po/rbot-seen.pot +90 -0
  309. data/po/rbot-shiritori.pot +2 -2
  310. data/po/rbot-spell.pot +3 -3
  311. data/po/rbot-translator.pot +14 -14
  312. data/po/rbot-twitter.pot +4 -4
  313. data/po/rbot-uno.pot +132 -115
  314. data/po/rbot-wall.pot +2 -2
  315. data/po/rbot-wheelfortune.pot +42 -42
  316. data/po/rbot-youtube.pot +2 -2
  317. data/po/rbot.pot +249 -193
  318. data/po/zh_CN/rbot-autorejoin.po +3 -0
  319. data/po/zh_CN/rbot-azgame.po +50 -42
  320. data/po/zh_CN/rbot-bash.po +15 -0
  321. data/po/zh_CN/rbot-dictclient.po +20 -20
  322. data/po/zh_CN/rbot-factoids.po +9 -9
  323. data/po/zh_CN/rbot-geoip.po +0 -0
  324. data/po/zh_CN/rbot-googlefight.po +24 -0
  325. data/po/zh_CN/rbot-grouphug.po +4 -4
  326. data/po/zh_CN/rbot-hangman.po +114 -0
  327. data/po/zh_CN/rbot-keywords.po +3 -3
  328. data/po/zh_CN/rbot-lastfm.po +268 -70
  329. data/po/zh_CN/rbot-markov.po +73 -2
  330. data/po/zh_CN/rbot-quotes.po +21 -21
  331. data/po/zh_CN/rbot-rss.po +6 -2
  332. data/po/zh_CN/rbot-script.po +3 -0
  333. data/po/zh_CN/rbot-seen.po +72 -0
  334. data/po/zh_CN/rbot-spell.po +2 -2
  335. data/po/zh_CN/rbot-translator.po +13 -13
  336. data/po/zh_CN/rbot-twitter.po +3 -3
  337. data/po/zh_CN/rbot-uno.po +131 -114
  338. data/po/zh_CN/rbot-wall.po +7 -8
  339. data/po/zh_CN/rbot-wheelfortune.po +41 -41
  340. data/po/zh_CN/rbot.po +248 -192
  341. data/po/zh_TW/rbot-autorejoin.po +3 -0
  342. data/po/zh_TW/rbot-azgame.po +50 -42
  343. data/po/zh_TW/rbot-bash.po +15 -0
  344. data/po/zh_TW/rbot-dictclient.po +20 -20
  345. data/po/zh_TW/rbot-factoids.po +9 -9
  346. data/po/zh_TW/rbot-geoip.po +0 -0
  347. data/po/zh_TW/rbot-googlefight.po +24 -0
  348. data/po/zh_TW/rbot-grouphug.po +4 -4
  349. data/po/zh_TW/rbot-hangman.po +114 -0
  350. data/po/zh_TW/rbot-keywords.po +3 -3
  351. data/po/zh_TW/rbot-lastfm.po +268 -70
  352. data/po/zh_TW/rbot-markov.po +73 -2
  353. data/po/zh_TW/rbot-quotes.po +21 -21
  354. data/po/zh_TW/rbot-rss.po +6 -2
  355. data/po/zh_TW/rbot-script.po +3 -0
  356. data/po/zh_TW/rbot-seen.po +72 -0
  357. data/po/zh_TW/rbot-spell.po +2 -2
  358. data/po/zh_TW/rbot-translator.po +13 -13
  359. data/po/zh_TW/rbot-twitter.po +3 -3
  360. data/po/zh_TW/rbot-uno.po +131 -114
  361. data/po/zh_TW/rbot-wall.po +7 -8
  362. data/po/zh_TW/rbot-wheelfortune.po +41 -41
  363. data/po/zh_TW/rbot.po +253 -194
  364. data/setup.rb +4 -4
  365. metadata +127 -18
  366. data/README +0 -43
  367. data/data/rbot/plugins/fish.rb +0 -121
  368. data/lib/rbot/dbhash.rb +0 -199
@@ -7,8 +7,8 @@
7
7
  msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: rbot\n"
10
- "POT-Creation-Date: 2008-07-07 18:01+0200\n"
11
- "PO-Revision-Date: 2008-07-07 18:01+0200\n"
10
+ "POT-Creation-Date: 2009-03-20 16:03+0100\n"
11
+ "PO-Revision-Date: 2009-03-20 16:03+0100\n"
12
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
14
  "MIME-Version: 1.0\n"
@@ -7,8 +7,8 @@
7
7
  msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: rbot\n"
10
- "POT-Creation-Date: 2008-06-20 01:49+0200\n"
11
- "PO-Revision-Date: 2008-06-05 22:14-0400\n"
10
+ "POT-Creation-Date: 2009-03-20 15:57+0100\n"
11
+ "PO-Revision-Date: 2009-03-20 15:57+0100\n"
12
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
14
  "MIME-Version: 1.0\n"
@@ -16,11 +16,11 @@ msgstr ""
16
16
  "Content-Transfer-Encoding: 8bit\n"
17
17
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
18
 
19
- #: data/rbot/plugins/games/wheelfortune.rb:48
19
+ #: data/rbot/plugins/games/wheelfortune.rb:54
20
20
  msgid " [Letters called so far: %{red}%{letters}%{nocolor}]"
21
21
  msgstr ""
22
22
 
23
- #: data/rbot/plugins/games/wheelfortune.rb:230
23
+ #: data/rbot/plugins/games/wheelfortune.rb:240
24
24
  msgid ""
25
25
  "wof [<channel>] play [<name>] for <single> to <max> => starts a wheel-of-"
26
26
  "fortune game on channel <channel> (default: current channel), named <name> "
@@ -34,7 +34,7 @@ msgid ""
34
34
  "missing letters as * (asterisks)."
35
35
  msgstr ""
36
36
 
37
- #: data/rbot/plugins/games/wheelfortune.rb:232
37
+ #: data/rbot/plugins/games/wheelfortune.rb:242
38
38
  msgid ""
39
39
  "wof <channel> [category: <cat>,] clue: <clue>, answer: <ans> => set up a new "
40
40
  "question for the wheel-of-fortune game being played on channel <channel>. "
@@ -43,47 +43,47 @@ msgid ""
43
43
  "before the question gets asked"
44
44
  msgstr ""
45
45
 
46
- #: data/rbot/plugins/games/wheelfortune.rb:234
46
+ #: data/rbot/plugins/games/wheelfortune.rb:244
47
47
  msgid ""
48
48
  "wof <channel> replace <round> [category: <cat>,] [clue: <clue>,] [answer: "
49
49
  "<ans>] => fix the question for round <round> of the wheel-of-fortune game "
50
50
  "being played on <channel> by replacing the category and/or clue and/or answer"
51
51
  msgstr ""
52
52
 
53
- #: data/rbot/plugins/games/wheelfortune.rb:236
53
+ #: data/rbot/plugins/games/wheelfortune.rb:246
54
54
  msgid ""
55
55
  "wof cancel => cancels the wheel-of-fortune being played on the current "
56
56
  "channel"
57
57
  msgstr ""
58
58
 
59
- #: data/rbot/plugins/games/wheelfortune.rb:238
59
+ #: data/rbot/plugins/games/wheelfortune.rb:248
60
60
  msgid ""
61
61
  "wof buy <vowel> => buy the vowel <vowel>: the user buying the vowel will "
62
62
  "lose points equal to the vowel price, and the corresponding vowel will be "
63
63
  "revealed in the answer (if present)"
64
64
  msgstr ""
65
65
 
66
- #: data/rbot/plugins/games/wheelfortune.rb:240
66
+ #: data/rbot/plugins/games/wheelfortune.rb:250
67
67
  msgid ""
68
68
  "wof: wheel-of-fortune plugin. topics: play, category, clue, answer, replace, "
69
69
  "cancel, buy"
70
70
  msgstr ""
71
71
 
72
- #: data/rbot/plugins/games/wheelfortune.rb:247
72
+ #: data/rbot/plugins/games/wheelfortune.rb:257
73
73
  msgid "you must specify a channel"
74
74
  msgstr ""
75
75
 
76
- #: data/rbot/plugins/games/wheelfortune.rb:253
76
+ #: data/rbot/plugins/games/wheelfortune.rb:263
77
77
  msgid "there's already a %{name} game on %{chan}, managed by %{who}"
78
78
  msgstr ""
79
79
 
80
- #: data/rbot/plugins/games/wheelfortune.rb:267
80
+ #: data/rbot/plugins/games/wheelfortune.rb:277
81
81
  msgid ""
82
82
  "%{who} just created a new %{name} game to %{max} points (%{single} per "
83
83
  "question, %{price} per vowel)"
84
84
  msgstr ""
85
85
 
86
- #: data/rbot/plugins/games/wheelfortune.rb:274
86
+ #: data/rbot/plugins/games/wheelfortune.rb:284
87
87
  msgid ""
88
88
  "ok, the game has been created. now add clues and answers with \"wof %{chan} "
89
89
  "[category: <category>,] clue: <clue>, answer: <ans>\". if the clue and "
@@ -91,116 +91,116 @@ msgid ""
91
91
  "answer <answer>\""
92
92
  msgstr ""
93
93
 
94
- #: data/rbot/plugins/games/wheelfortune.rb:282
95
- #: data/rbot/plugins/games/wheelfortune.rb:343
96
- #: data/rbot/plugins/games/wheelfortune.rb:412
97
- #: data/rbot/plugins/games/wheelfortune.rb:522
98
- #: data/rbot/plugins/games/wheelfortune.rb:559
94
+ #: data/rbot/plugins/games/wheelfortune.rb:292
95
+ #: data/rbot/plugins/games/wheelfortune.rb:353
96
+ #: data/rbot/plugins/games/wheelfortune.rb:423
97
+ #: data/rbot/plugins/games/wheelfortune.rb:536
98
+ #: data/rbot/plugins/games/wheelfortune.rb:573
99
99
  msgid "there's no %{name} game running on %{chan}"
100
100
  msgstr ""
101
101
 
102
- #: data/rbot/plugins/games/wheelfortune.rb:291
102
+ #: data/rbot/plugins/games/wheelfortune.rb:301
103
103
  msgid "you can't add questions to the %{name} game on %{chan}"
104
104
  msgstr ""
105
105
 
106
- #: data/rbot/plugins/games/wheelfortune.rb:301
107
- #: data/rbot/plugins/games/wheelfortune.rb:383
106
+ #: data/rbot/plugins/games/wheelfortune.rb:311
107
+ #: data/rbot/plugins/games/wheelfortune.rb:394
108
108
  msgid "sorry, the answer cannot contain the '*' character"
109
109
  msgstr ""
110
110
 
111
- #: data/rbot/plugins/games/wheelfortune.rb:308
111
+ #: data/rbot/plugins/games/wheelfortune.rb:318
112
112
  msgid "ok, clue added for %{name} round %{count} on %{chan}: %{catclue}"
113
113
  msgstr ""
114
114
 
115
- #: data/rbot/plugins/games/wheelfortune.rb:310
115
+ #: data/rbot/plugins/games/wheelfortune.rb:320
116
116
  msgid ""
117
117
  "there's already a pending clue for %{name} round %{count} on %{chan}: %"
118
118
  "{catclue}"
119
119
  msgstr ""
120
120
 
121
- #: data/rbot/plugins/games/wheelfortune.rb:323
121
+ #: data/rbot/plugins/games/wheelfortune.rb:333
122
122
  msgid ""
123
123
  "ok, QA added for %{name} round %{count} on %{chan}: %{catclue} => %{ans}"
124
124
  msgstr ""
125
125
 
126
- #: data/rbot/plugins/games/wheelfortune.rb:325
126
+ #: data/rbot/plugins/games/wheelfortune.rb:335
127
127
  msgid "there's no pending clue for %{name} on %{chan}!"
128
128
  msgstr ""
129
129
 
130
- #: data/rbot/plugins/games/wheelfortune.rb:336
130
+ #: data/rbot/plugins/games/wheelfortune.rb:346
131
131
  msgid ""
132
132
  "something went wrong, I can't seem to understand what you're trying to set up"
133
133
  msgstr ""
134
134
 
135
- #: data/rbot/plugins/games/wheelfortune.rb:352
135
+ #: data/rbot/plugins/games/wheelfortune.rb:362
136
136
  msgid "you can't replace questions to the %{name} game on %{chan}"
137
137
  msgstr ""
138
138
 
139
- #: data/rbot/plugins/games/wheelfortune.rb:365
139
+ #: data/rbot/plugins/games/wheelfortune.rb:375
140
140
  msgid ""
141
141
  "there are no questions in the %{name} game on %{chan} which can be replaced"
142
142
  msgstr ""
143
143
 
144
- #: data/rbot/plugins/games/wheelfortune.rb:370
144
+ #: data/rbot/plugins/games/wheelfortune.rb:380
145
145
  msgid ""
146
146
  "you can only replace questions between rounds %{min} and %{max} in the %"
147
147
  "{name} game on %{chan}"
148
148
  msgstr ""
149
149
 
150
- #: data/rbot/plugins/games/wheelfortune.rb:398
150
+ #: data/rbot/plugins/games/wheelfortune.rb:409
151
151
  msgid ""
152
152
  "ok, replaced QA for %{name} round %{count} on %{chan}: %{catclue} => %{ans}"
153
153
  msgstr ""
154
154
 
155
- #: data/rbot/plugins/games/wheelfortune.rb:421
156
- #: data/rbot/plugins/games/wheelfortune.rb:528
155
+ #: data/rbot/plugins/games/wheelfortune.rb:435
156
+ #: data/rbot/plugins/games/wheelfortune.rb:542
157
157
  msgid ""
158
158
  "there are no %{name} questions for %{chan}, I'm waiting for %{who} to add "
159
159
  "them"
160
160
  msgstr ""
161
161
 
162
- #: data/rbot/plugins/games/wheelfortune.rb:429
162
+ #: data/rbot/plugins/games/wheelfortune.rb:443
163
163
  msgid "%{bold}%{color}%{name}%{bold}, round %{count}:%{nocolor} %{qa}"
164
164
  msgstr ""
165
165
 
166
- #: data/rbot/plugins/games/wheelfortune.rb:444
166
+ #: data/rbot/plugins/games/wheelfortune.rb:458
167
167
  msgid "no scores"
168
168
  msgstr ""
169
169
 
170
- #: data/rbot/plugins/games/wheelfortune.rb:465
170
+ #: data/rbot/plugins/games/wheelfortune.rb:479
171
171
  msgid "You must buy the %{vowel}"
172
172
  msgstr ""
173
173
 
174
- #: data/rbot/plugins/games/wheelfortune.rb:476
174
+ #: data/rbot/plugins/games/wheelfortune.rb:489
175
175
  msgid "%{who} got it! The answer was: %{ans}"
176
176
  msgstr ""
177
177
 
178
- #: data/rbot/plugins/games/wheelfortune.rb:482
178
+ #: data/rbot/plugins/games/wheelfortune.rb:495
179
179
  msgid ""
180
180
  "%{bold}%{color}%{name}%{bold}%{nocolor}: %{who} %{bold}wins%{bold} after %"
181
181
  "{count} rounds!\n"
182
182
  "The final score is"
183
183
  msgstr ""
184
184
 
185
- #: data/rbot/plugins/games/wheelfortune.rb:493
185
+ #: data/rbot/plugins/games/wheelfortune.rb:506
186
186
  msgid ""
187
187
  "%{bold}%{color}%{name}%{bold}, round %{count}%{nocolor} -- score so far:"
188
188
  msgstr ""
189
189
 
190
- #: data/rbot/plugins/games/wheelfortune.rb:538
190
+ #: data/rbot/plugins/games/wheelfortune.rb:552
191
191
  msgid "%{who} buys a %{vowel} for %{price} points"
192
192
  msgstr ""
193
193
 
194
- #: data/rbot/plugins/games/wheelfortune.rb:546
194
+ #: data/rbot/plugins/games/wheelfortune.rb:560
195
195
  msgid ""
196
196
  "you can't buy a %{vowel}, %{who}: it costs %{price} points and you only have "
197
197
  "%{score}"
198
198
  msgstr ""
199
199
 
200
- #: data/rbot/plugins/games/wheelfortune.rb:569
200
+ #: data/rbot/plugins/games/wheelfortune.rb:583
201
201
  msgid "you can't cancel the current game"
202
202
  msgstr ""
203
203
 
204
- #: data/rbot/plugins/games/wheelfortune.rb:576
204
+ #: data/rbot/plugins/games/wheelfortune.rb:590
205
205
  msgid "%{name} game cancelled after %{count} rounds. Partial score:"
206
206
  msgstr ""
@@ -7,8 +7,8 @@
7
7
  msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: rbot\n"
10
- "POT-Creation-Date: 2008-06-20 01:49+0200\n"
11
- "PO-Revision-Date: 2008-06-05 22:15-0400\n"
10
+ "POT-Creation-Date: 2009-03-20 15:57+0100\n"
11
+ "PO-Revision-Date: 2009-03-20 15:57+0100\n"
12
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
14
  "MIME-Version: 1.0\n"
@@ -7,8 +7,8 @@
7
7
  msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: rbot\n"
10
- "POT-Creation-Date: 2008-07-30 23:38+0200\n"
11
- "PO-Revision-Date: 2008-07-30 23:38+0200\n"
10
+ "POT-Creation-Date: 2009-03-20 15:57+0100\n"
11
+ "PO-Revision-Date: 2009-03-20 15:57+0100\n"
12
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
14
  "MIME-Version: 1.0\n"
@@ -44,15 +44,15 @@ msgstr ""
44
44
  msgid "%{desc} [valid values are: %{values}]"
45
45
  msgstr ""
46
46
 
47
- #: lib/rbot/config.rb:370
47
+ #: lib/rbot/config.rb:372
48
48
  msgid "First time rbot configuration wizard"
49
49
  msgstr ""
50
50
 
51
- #: lib/rbot/config.rb:373
51
+ #: lib/rbot/config.rb:375
52
52
  msgid "This wizard will ask you a few questions to get you started."
53
53
  msgstr ""
54
54
 
55
- #: lib/rbot/config.rb:374
55
+ #: lib/rbot/config.rb:376
56
56
  msgid ""
57
57
  "The rest of rbot's configuration can be manipulated via IRC once rbot is "
58
58
  "connected and you are auth'd."
@@ -127,49 +127,49 @@ msgstr ""
127
127
  msgid "%{cmd}: %{perms}"
128
128
  msgstr ""
129
129
 
130
- #: lib/rbot/core/auth.rb:267
130
+ #: lib/rbot/core/auth.rb:271
131
131
  msgid "%{user} can already do that"
132
132
  msgstr ""
133
133
 
134
- #: lib/rbot/core/auth.rb:269
134
+ #: lib/rbot/core/auth.rb:273
135
135
  msgid "%{user} can't do that already"
136
136
  msgstr ""
137
137
 
138
- #: lib/rbot/core/auth.rb:279
138
+ #: lib/rbot/core/auth.rb:283
139
139
  msgid ""
140
140
  "sorry, %{cmd} doesn't look like a valid command. maybe you misspelled it, or "
141
141
  "you need to specify it should be in private?"
142
142
  msgstr ""
143
143
 
144
- #: lib/rbot/core/auth.rb:302
144
+ #: lib/rbot/core/auth.rb:306
145
145
  msgid "welcome, %{user}"
146
146
  msgstr ""
147
147
 
148
- #: lib/rbot/core/auth.rb:317
148
+ #: lib/rbot/core/auth.rb:321
149
149
  msgid "sorry, can't do"
150
150
  msgstr ""
151
151
 
152
- #: lib/rbot/core/auth.rb:320
152
+ #: lib/rbot/core/auth.rb:324
153
153
  msgid "couldn't login: %{exception}"
154
154
  msgstr ""
155
155
 
156
- #: lib/rbot/core/auth.rb:328
156
+ #: lib/rbot/core/auth.rb:332
157
157
  msgid "I couldn't find anything to let you login automatically"
158
158
  msgstr ""
159
159
 
160
- #: lib/rbot/core/auth.rb:339
160
+ #: lib/rbot/core/auth.rb:343
161
161
  msgid "you are %{who}"
162
162
  msgstr ""
163
163
 
164
- #: lib/rbot/core/auth.rb:341 lib/rbot/core/auth.rb:354
164
+ #: lib/rbot/core/auth.rb:345 lib/rbot/core/auth.rb:358
165
165
  msgid "no one that I know"
166
166
  msgstr ""
167
167
 
168
- #: lib/rbot/core/auth.rb:342 lib/rbot/core/auth.rb:355
168
+ #: lib/rbot/core/auth.rb:346 lib/rbot/core/auth.rb:359
169
169
  msgid "my boss"
170
170
  msgstr ""
171
171
 
172
- #: lib/rbot/core/auth.rb:362
172
+ #: lib/rbot/core/auth.rb:366
173
173
  msgid ""
174
174
  "login [<botuser>] [<pass>]: logs in to the bot as botuser <botuser> with "
175
175
  "password <pass>. When using the full form, you must contact the bot in "
@@ -178,68 +178,68 @@ msgid ""
178
178
  "be attempted"
179
179
  msgstr ""
180
180
 
181
- #: lib/rbot/core/auth.rb:364
181
+ #: lib/rbot/core/auth.rb:368
182
182
  msgid "whoami: names the botuser you're linked to"
183
183
  msgstr ""
184
184
 
185
- #: lib/rbot/core/auth.rb:366
185
+ #: lib/rbot/core/auth.rb:370
186
186
  msgid "who is <user>: names the botuser <user> is linked to"
187
187
  msgstr ""
188
188
 
189
- #: lib/rbot/core/auth.rb:370
189
+ #: lib/rbot/core/auth.rb:374
190
190
  msgid ""
191
191
  "a permission is specified as module::path::to::cmd; when you want to enable "
192
192
  "it, prefix it with +; when you want to disable it, prefix it with -; when "
193
193
  "using the +reset+ command, do not use any prefix"
194
194
  msgstr ""
195
195
 
196
- #: lib/rbot/core/auth.rb:372
196
+ #: lib/rbot/core/auth.rb:376
197
197
  msgid ""
198
198
  "permissions [re]set <permission> [in <channel>] for <user>: sets or resets "
199
199
  "the permissions for botuser <user> in channel <channel> (use ? to change the "
200
200
  "permissions for private addressing)"
201
201
  msgstr ""
202
202
 
203
- #: lib/rbot/core/auth.rb:374
203
+ #: lib/rbot/core/auth.rb:378
204
204
  msgid "permissions view [for <user>]: display the permissions for user <user>"
205
205
  msgstr ""
206
206
 
207
- #: lib/rbot/core/auth.rb:376
207
+ #: lib/rbot/core/auth.rb:380
208
208
  msgid ""
209
209
  "permissions search <pattern>: display the permissions associated with the "
210
210
  "commands matching <pattern>"
211
211
  msgstr ""
212
212
 
213
- #: lib/rbot/core/auth.rb:378
213
+ #: lib/rbot/core/auth.rb:382
214
214
  msgid "permission topics: syntax, (re)set, view, search"
215
215
  msgstr ""
216
216
 
217
- #: lib/rbot/core/auth.rb:383
217
+ #: lib/rbot/core/auth.rb:387
218
218
  msgid ""
219
219
  "user show <what> : shows info about the user; <what> can be any of "
220
220
  "autologin, login-by-mask, netmasks"
221
221
  msgstr ""
222
222
 
223
- #: lib/rbot/core/auth.rb:385
223
+ #: lib/rbot/core/auth.rb:389
224
224
  msgid ""
225
225
  "user enable|disable <what> : turns on or off <what> (autologin, login-by-"
226
226
  "mask)"
227
227
  msgstr ""
228
228
 
229
- #: lib/rbot/core/auth.rb:387
229
+ #: lib/rbot/core/auth.rb:391
230
230
  msgid ""
231
231
  "user set password <blah> : sets the user password to <blah>; passwords can "
232
232
  "only contain upper and lowercase letters and numbers, and must be at least 4 "
233
233
  "characters long"
234
234
  msgstr ""
235
235
 
236
- #: lib/rbot/core/auth.rb:389
236
+ #: lib/rbot/core/auth.rb:393
237
237
  msgid ""
238
238
  "user add|rm netmask <mask> : adds/removes netmask <mask> from the list of "
239
239
  "netmasks known to the botuser you're linked to"
240
240
  msgstr ""
241
241
 
242
- #: lib/rbot/core/auth.rb:391
242
+ #: lib/rbot/core/auth.rb:395
243
243
  msgid ""
244
244
  "user reset <what> : resets <what> to the default values. <what> can be "
245
245
  "+netmasks+ (the list will be emptied), +autologin+ or +login-by-mask+ (will "
@@ -247,13 +247,13 @@ msgid ""
247
247
  "and you'll be told in private)"
248
248
  msgstr ""
249
249
 
250
- #: lib/rbot/core/auth.rb:393
250
+ #: lib/rbot/core/auth.rb:397
251
251
  msgid ""
252
252
  "user tell <who> the password for <botuser> : contacts <who> in private to "
253
253
  "tell him/her the password for <botuser>"
254
254
  msgstr ""
255
255
 
256
- #: lib/rbot/core/auth.rb:395
256
+ #: lib/rbot/core/auth.rb:399
257
257
  msgid ""
258
258
  "user create <name> <password> : create botuser named <name> with password "
259
259
  "<password>. The password can be omitted, in which case a random one will be "
@@ -261,11 +261,11 @@ msgid ""
261
261
  "underscore (_)"
262
262
  msgstr ""
263
263
 
264
- #: lib/rbot/core/auth.rb:397
264
+ #: lib/rbot/core/auth.rb:401
265
265
  msgid "user list : lists all the botusers"
266
266
  msgstr ""
267
267
 
268
- #: lib/rbot/core/auth.rb:399
268
+ #: lib/rbot/core/auth.rb:403
269
269
  msgid ""
270
270
  "user destroy <botuser> : destroys <botuser>. This function %{highlight}must%"
271
271
  "{highlight} be called in two steps. On the first call <botuser> is queued "
@@ -274,355 +274,379 @@ msgid ""
274
274
  "destruction, issue the command 'user cancel destroy <botuser>'"
275
275
  msgstr ""
276
276
 
277
- #: lib/rbot/core/auth.rb:401
277
+ #: lib/rbot/core/auth.rb:405
278
278
  msgid ""
279
279
  "user topics: show, enable|disable, add|rm netmask, set, reset, tell, create, "
280
280
  "list, destroy"
281
281
  msgstr ""
282
282
 
283
- #: lib/rbot/core/auth.rb:404
283
+ #: lib/rbot/core/auth.rb:408
284
284
  msgid ""
285
285
  "auth <masterpassword>: log in as the bot owner; other commands: login, "
286
286
  "whoami, permissions syntax, permissions [re]set, permissions view, user, "
287
287
  "meet, hello, allow, prevent"
288
288
  msgstr ""
289
289
 
290
- #: lib/rbot/core/auth.rb:406
290
+ #: lib/rbot/core/auth.rb:410
291
291
  msgid ""
292
292
  "meet <nick> [as <user>]: creates a bot user for nick, calling it user "
293
293
  "(defaults to the nick itself)"
294
294
  msgstr ""
295
295
 
296
- #: lib/rbot/core/auth.rb:408
296
+ #: lib/rbot/core/auth.rb:412
297
297
  msgid "hello: creates a bot user for the person issuing the command"
298
298
  msgstr ""
299
299
 
300
- #: lib/rbot/core/auth.rb:410
300
+ #: lib/rbot/core/auth.rb:415
301
301
  msgid ""
302
302
  "allow <user> to do <sample command> [<where>]: gives botuser <user> the "
303
- "permissions to execute a command such as the provided sample command (in "
304
- "private or in channel, according to the optional <where>)"
303
+ "permissions to execute a command such as the provided sample command"
305
304
  msgstr ""
306
305
 
307
- #: lib/rbot/core/auth.rb:412
306
+ #: lib/rbot/core/auth.rb:416 lib/rbot/core/auth.rb:424
307
+ msgid "(in private or in channel, according to the optional <where>)."
308
+ msgstr ""
309
+
310
+ #: lib/rbot/core/auth.rb:417 lib/rbot/core/auth.rb:425
311
+ msgid ""
312
+ "<sample command> should be a full command, not just the command keyword --"
313
+ msgstr ""
314
+
315
+ #: lib/rbot/core/auth.rb:418
316
+ msgid "correct: allow user to do addquote stuff --"
317
+ msgstr ""
318
+
319
+ #: lib/rbot/core/auth.rb:419
320
+ msgid "wrong: allow user to do addquote."
321
+ msgstr ""
322
+
323
+ #: lib/rbot/core/auth.rb:423
308
324
  msgid ""
309
325
  "deny <user> from doing <sample command> [<where>]: removes from botuser "
310
326
  "<user> the permissions to execute a command such as the provided sample "
311
- "command (in private or in channel, according to the optional <where>)"
327
+ "command"
328
+ msgstr ""
329
+
330
+ #: lib/rbot/core/auth.rb:426
331
+ msgid "correct: deny user from doing addquote stuff --"
312
332
  msgstr ""
313
333
 
314
- #: lib/rbot/core/auth.rb:414
334
+ #: lib/rbot/core/auth.rb:427
335
+ msgid "wrong: deny user from doing addquote."
336
+ msgstr ""
337
+
338
+ #: lib/rbot/core/auth.rb:430
315
339
  msgid ""
316
340
  "auth commands: auth, login, whoami, who, permission[s], user, meet, hello, "
317
341
  "allow, deny"
318
342
  msgstr ""
319
343
 
320
- #: lib/rbot/core/auth.rb:419
344
+ #: lib/rbot/core/auth.rb:435
321
345
  msgid "sorry, I need more arguments to %{command}"
322
346
  msgstr ""
323
347
 
324
- #: lib/rbot/core/auth.rb:423
348
+ #: lib/rbot/core/auth.rb:439
325
349
  msgid "I can only %{command} these: %{arguments}"
326
350
  msgstr ""
327
351
 
328
- #: lib/rbot/core/auth.rb:458
352
+ #: lib/rbot/core/auth.rb:474
329
353
  msgid "no such bot user %{user}"
330
354
  msgstr ""
331
355
 
332
- #: lib/rbot/core/auth.rb:461
356
+ #: lib/rbot/core/auth.rb:477
333
357
  msgid "you can't mess with %{user}"
334
358
  msgstr ""
335
359
 
336
- #: lib/rbot/core/auth.rb:473
360
+ #: lib/rbot/core/auth.rb:489
337
361
  msgid "you can't see the properties of %{user}"
338
362
  msgstr ""
339
363
 
340
- #: lib/rbot/core/auth.rb:482
364
+ #: lib/rbot/core/auth.rb:498
341
365
  msgid "no way I'm telling you the master password!"
342
366
  msgstr ""
343
367
 
344
- #: lib/rbot/core/auth.rb:483
368
+ #: lib/rbot/core/auth.rb:499
345
369
  msgid "you can't ask for someone else's password"
346
370
  msgstr ""
347
371
 
348
- #: lib/rbot/core/auth.rb:485
372
+ #: lib/rbot/core/auth.rb:501
349
373
  msgid ""
350
374
  "c'mon, you can't be asking me seriously to tell you the password in public!"
351
375
  msgstr ""
352
376
 
353
- #: lib/rbot/core/auth.rb:486
377
+ #: lib/rbot/core/auth.rb:502
354
378
  msgid "the password for %{user} is %{password}"
355
379
  msgstr ""
356
380
 
357
- #: lib/rbot/core/auth.rb:500
381
+ #: lib/rbot/core/auth.rb:516
358
382
  msgid "can %{action}"
359
383
  msgstr ""
360
384
 
361
- #: lib/rbot/core/auth.rb:502
385
+ #: lib/rbot/core/auth.rb:518
362
386
  msgid "can not %{action}"
363
387
  msgstr ""
364
388
 
365
- #: lib/rbot/core/auth.rb:506
389
+ #: lib/rbot/core/auth.rb:522
366
390
  msgid "knows no netmasks"
367
391
  msgstr ""
368
392
 
369
- #: lib/rbot/core/auth.rb:508
393
+ #: lib/rbot/core/auth.rb:524
370
394
  msgid "knows %{netmasks}"
371
395
  msgstr ""
372
396
 
373
- #: lib/rbot/core/auth.rb:515 lib/rbot/core/auth.rb:542
374
- #: lib/rbot/core/auth.rb:560 lib/rbot/core/auth.rb:592
397
+ #: lib/rbot/core/auth.rb:531 lib/rbot/core/auth.rb:558
398
+ #: lib/rbot/core/auth.rb:576 lib/rbot/core/auth.rb:608
375
399
  msgid "you can't change the default user"
376
400
  msgstr ""
377
401
 
378
- #: lib/rbot/core/auth.rb:516 lib/rbot/core/auth.rb:544
379
- #: lib/rbot/core/auth.rb:562 lib/rbot/core/auth.rb:594
402
+ #: lib/rbot/core/auth.rb:532 lib/rbot/core/auth.rb:560
403
+ #: lib/rbot/core/auth.rb:578 lib/rbot/core/auth.rb:610
380
404
  msgid "you can't edit %{user}"
381
405
  msgstr ""
382
406
 
383
- #: lib/rbot/core/auth.rb:531 lib/rbot/core/auth.rb:578
407
+ #: lib/rbot/core/auth.rb:547 lib/rbot/core/auth.rb:594
384
408
  msgid "I ignored %{things} because %{reason}"
385
409
  msgstr ""
386
410
 
387
- #: lib/rbot/core/auth.rb:535 lib/rbot/core/auth.rb:582
411
+ #: lib/rbot/core/auth.rb:551 lib/rbot/core/auth.rb:598
388
412
  msgid "I haven't changed anything"
389
413
  msgstr ""
390
414
 
391
- #: lib/rbot/core/auth.rb:553
415
+ #: lib/rbot/core/auth.rb:569
392
416
  msgid "is that a joke? setting the password in public?"
393
417
  msgstr ""
394
418
 
395
- #: lib/rbot/core/auth.rb:585
419
+ #: lib/rbot/core/auth.rb:601
396
420
  msgid "the password for %{user} is now %{password}"
397
421
  msgstr ""
398
422
 
399
- #: lib/rbot/core/auth.rb:599
423
+ #: lib/rbot/core/auth.rb:615
400
424
  msgid ""
401
425
  "I can only add/remove netmasks. See +help user add+ for more instructions"
402
426
  msgstr ""
403
427
 
404
- #: lib/rbot/core/auth.rb:620
428
+ #: lib/rbot/core/auth.rb:636
405
429
  msgid "sorry, I don't know how to %{request}"
406
430
  msgstr ""
407
431
 
408
- #: lib/rbot/core/auth.rb:623
432
+ #: lib/rbot/core/auth.rb:639
409
433
  msgid "couldn't %{cmd}: %{exception}"
410
434
  msgstr ""
411
435
 
412
- #: lib/rbot/core/auth.rb:652
436
+ #: lib/rbot/core/auth.rb:668
413
437
  msgid ""
414
438
  "you are now registered as %{buname}. I created a random password for you : %"
415
439
  "{pass} and you can change it at any time by telling me 'user set password "
416
440
  "<password>' in private"
417
441
  msgstr ""
418
442
 
419
- #: lib/rbot/core/auth.rb:659
443
+ #: lib/rbot/core/auth.rb:675
420
444
  msgid "but I already know %{buname}"
421
445
  msgstr ""
422
446
 
423
- #: lib/rbot/core/auth.rb:661
447
+ #: lib/rbot/core/auth.rb:677
424
448
  msgid "I had problems meeting %{nick}: %{e}"
425
449
  msgstr ""
426
450
 
427
- #: lib/rbot/core/auth.rb:670
451
+ #: lib/rbot/core/auth.rb:686
428
452
  msgid "couldn't find botuser %{user}"
429
453
  msgstr ""
430
454
 
431
- #: lib/rbot/core/auth.rb:672
455
+ #: lib/rbot/core/auth.rb:688
432
456
  msgid "I'm not telling the master password to anyone, pal"
433
457
  msgstr ""
434
458
 
435
- #: lib/rbot/core/auth.rb:673
459
+ #: lib/rbot/core/auth.rb:689
436
460
  msgid "the password for botuser %{user} is %{password}"
437
461
  msgstr ""
438
462
 
439
- #: lib/rbot/core/auth.rb:676
463
+ #: lib/rbot/core/auth.rb:692
440
464
  msgid "I told %{user} that %{message}"
441
465
  msgstr ""
442
466
 
443
- #: lib/rbot/core/auth.rb:682
467
+ #: lib/rbot/core/auth.rb:698
444
468
  msgid "are you nuts, creating a botuser with a publicly known password?"
445
469
  msgstr ""
446
470
 
447
- #: lib/rbot/core/auth.rb:687
471
+ #: lib/rbot/core/auth.rb:703
448
472
  msgid "failed to create %{user}: %{exception}"
449
473
  msgstr ""
450
474
 
451
- #: lib/rbot/core/auth.rb:691
475
+ #: lib/rbot/core/auth.rb:707
452
476
  msgid "created botuser %{user}"
453
477
  msgstr ""
454
478
 
455
- #: lib/rbot/core/auth.rb:699
479
+ #: lib/rbot/core/auth.rb:715
456
480
  msgid " (queued for destruction)"
457
481
  msgstr ""
458
482
 
459
- #: lib/rbot/core/auth.rb:702
483
+ #: lib/rbot/core/auth.rb:718
460
484
  msgid "I have no botusers other than the default ones"
461
485
  msgstr ""
462
486
 
463
- #: lib/rbot/core/auth.rb:703
487
+ #: lib/rbot/core/auth.rb:719
464
488
  msgid "botuser: %{list}"
465
489
  msgid_plural "botusers: %{list}"
466
490
  msgstr[0] ""
467
491
  msgstr[1] ""
468
492
 
469
- #: lib/rbot/core/auth.rb:710
493
+ #: lib/rbot/core/auth.rb:726
470
494
  msgid "You can't destroy %{user}"
471
495
  msgstr ""
472
496
 
473
- #: lib/rbot/core/auth.rb:720
497
+ #: lib/rbot/core/auth.rb:736
474
498
  msgid "no such botuser %{user}"
475
499
  msgstr ""
476
500
 
477
- #: lib/rbot/core/auth.rb:727
501
+ #: lib/rbot/core/auth.rb:743
478
502
  msgid "%{user} removed from the destruction queue"
479
503
  msgstr ""
480
504
 
481
- #: lib/rbot/core/auth.rb:729
505
+ #: lib/rbot/core/auth.rb:745
482
506
  msgid "%{user} was not queued for destruction"
483
507
  msgstr ""
484
508
 
485
- #: lib/rbot/core/auth.rb:734
509
+ #: lib/rbot/core/auth.rb:750
486
510
  msgid ""
487
511
  "%{user} already queued for destruction, use %{highlight}user confirm destroy "
488
512
  "%{user}%{highlight} to destroy it"
489
513
  msgstr ""
490
514
 
491
- #: lib/rbot/core/auth.rb:737
515
+ #: lib/rbot/core/auth.rb:753
492
516
  msgid ""
493
517
  "%{user} queued for destruction, use %{highlight}user confirm destroy %{user}%"
494
518
  "{highlight} to destroy it"
495
519
  msgstr ""
496
520
 
497
- #: lib/rbot/core/auth.rb:741
521
+ #: lib/rbot/core/auth.rb:757
498
522
  msgid "%{user} is not queued for destruction yet"
499
523
  msgstr ""
500
524
 
501
- #: lib/rbot/core/auth.rb:750 lib/rbot/core/auth.rb:790
525
+ #: lib/rbot/core/auth.rb:766 lib/rbot/core/auth.rb:806
502
526
  msgid "failed: %{exception}"
503
527
  msgstr ""
504
528
 
505
- #: lib/rbot/core/auth.rb:752
529
+ #: lib/rbot/core/auth.rb:768
506
530
  msgid "botuser %{user} destroyed"
507
531
  msgstr ""
508
532
 
509
- #: lib/rbot/core/auth.rb:759
533
+ #: lib/rbot/core/auth.rb:775
510
534
  msgid "please don't touch the default users"
511
535
  msgstr ""
512
536
 
513
- #: lib/rbot/core/auth.rb:768
537
+ #: lib/rbot/core/auth.rb:784
514
538
  msgid "no such botuser %{source}"
515
539
  msgstr ""
516
540
 
517
- #: lib/rbot/core/auth.rb:770
541
+ #: lib/rbot/core/auth.rb:786
518
542
  msgid "botuser %{dest} exists already"
519
543
  msgstr ""
520
544
 
521
- #: lib/rbot/core/auth.rb:793
545
+ #: lib/rbot/core/auth.rb:809
522
546
  msgid "botuser %{source} copied to %{dest}"
523
547
  msgstr ""
524
548
 
525
- #: lib/rbot/core/auth.rb:796
549
+ #: lib/rbot/core/auth.rb:812
526
550
  msgid "botuser %{source} renamed to %{dest}"
527
551
  msgstr ""
528
552
 
529
- #: lib/rbot/core/auth.rb:816
553
+ #: lib/rbot/core/auth.rb:832
530
554
  msgid "selecting data to export ..."
531
555
  msgstr ""
532
556
 
533
- #: lib/rbot/core/auth.rb:832
557
+ #: lib/rbot/core/auth.rb:848
534
558
  msgid "preparing data for export ..."
535
559
  msgstr ""
536
560
 
537
- #: lib/rbot/core/auth.rb:855
561
+ #: lib/rbot/core/auth.rb:871
538
562
  msgid "failed to prepare data: %{exception}"
539
563
  msgstr ""
540
564
 
541
- #: lib/rbot/core/auth.rb:860
565
+ #: lib/rbot/core/auth.rb:876
542
566
  msgid "exporting to %{file} ..."
543
567
  msgstr ""
544
568
 
545
- #: lib/rbot/core/auth.rb:867
569
+ #: lib/rbot/core/auth.rb:883
546
570
  msgid "failed to export users: %{exception}"
547
571
  msgstr ""
548
572
 
549
- #: lib/rbot/core/auth.rb:871 lib/rbot/core/auth.rb:949
573
+ #: lib/rbot/core/auth.rb:887 lib/rbot/core/auth.rb:965
550
574
  msgid "done"
551
575
  msgstr ""
552
576
 
553
- #: lib/rbot/core/auth.rb:888
577
+ #: lib/rbot/core/auth.rb:904
554
578
  msgid "reading %{file} ..."
555
579
  msgstr ""
556
580
 
557
- #: lib/rbot/core/auth.rb:892
581
+ #: lib/rbot/core/auth.rb:908
558
582
  msgid "failed to import from: %{exception}"
559
583
  msgstr ""
560
584
 
561
- #: lib/rbot/core/auth.rb:899
585
+ #: lib/rbot/core/auth.rb:915
562
586
  msgid "selecting data to import ..."
563
587
  msgstr ""
564
588
 
565
- #: lib/rbot/core/auth.rb:909
589
+ #: lib/rbot/core/auth.rb:925
566
590
  msgid "parsing data from import ..."
567
591
  msgstr ""
568
592
 
569
- #: lib/rbot/core/auth.rb:929
593
+ #: lib/rbot/core/auth.rb:945
570
594
  msgid "failed to parse data: %{exception}"
571
595
  msgstr ""
572
596
 
573
- #: lib/rbot/core/basics.rb:107
597
+ #: lib/rbot/core/basics.rb:133
574
598
  msgid "quit [<message>] => quit IRC with message <message>"
575
599
  msgstr ""
576
600
 
577
- #: lib/rbot/core/basics.rb:109
601
+ #: lib/rbot/core/basics.rb:135
578
602
  msgid "restart => completely stop and restart the bot (including reconnect)"
579
603
  msgstr ""
580
604
 
581
- #: lib/rbot/core/basics.rb:113
605
+ #: lib/rbot/core/basics.rb:139
582
606
  msgid "part"
583
607
  msgstr ""
584
608
 
585
- #: lib/rbot/core/basics.rb:115
609
+ #: lib/rbot/core/basics.rb:141
586
610
  msgid "hide => part all channels"
587
611
  msgstr ""
588
612
 
589
- #: lib/rbot/core/basics.rb:117
613
+ #: lib/rbot/core/basics.rb:143
590
614
  msgid ""
591
615
  "say <channel>|<nick> <message> => say <message> to <channel> or in private "
592
616
  "message to <nick>"
593
617
  msgstr ""
594
618
 
595
- #: lib/rbot/core/basics.rb:119
619
+ #: lib/rbot/core/basics.rb:145
596
620
  msgid ""
597
621
  "action <channel>|<nick> <message> => does a /me <message> to <channel> or in "
598
622
  "private message to <nick>"
599
623
  msgstr ""
600
624
 
601
- #: lib/rbot/core/basics.rb:121
625
+ #: lib/rbot/core/basics.rb:147
602
626
  msgid ""
603
627
  "quiet [in here|<channel>] => with no arguments, stop speaking in all "
604
628
  "channels, if \"in here\", stop speaking in this channel, or stop speaking in "
605
629
  "<channel>"
606
630
  msgstr ""
607
631
 
608
- #: lib/rbot/core/basics.rb:123
632
+ #: lib/rbot/core/basics.rb:149
609
633
  msgid ""
610
634
  "talk [in here|<channel>] => with no arguments, resume speaking in all "
611
635
  "channels, if \"in here\", resume speaking in this channel, or resume "
612
636
  "speaking in <channel>"
613
637
  msgstr ""
614
638
 
615
- #: lib/rbot/core/basics.rb:125
639
+ #: lib/rbot/core/basics.rb:151
616
640
  msgid "ping => replies with a pong"
617
641
  msgstr ""
618
642
 
619
- #: lib/rbot/core/basics.rb:127
643
+ #: lib/rbot/core/basics.rb:153
620
644
  msgid ""
621
645
  "mode <channel> <mode> <nicks> => set channel modes for <nicks> on <channel> "
622
646
  "to <mode>"
623
647
  msgstr ""
624
648
 
625
- #: lib/rbot/core/basics.rb:133
649
+ #: lib/rbot/core/basics.rb:159
626
650
  msgid ""
627
651
  "%{name}: quit, restart, join, part, hide, save, say, action, topic, quiet, "
628
652
  "talk, ping, mode"
@@ -642,7 +666,7 @@ msgstr ""
642
666
 
643
667
  #: lib/rbot/core/config.rb:55 lib/rbot/core/config.rb:66
644
668
  #: lib/rbot/core/config.rb:88 lib/rbot/core/config.rb:101
645
- #: lib/rbot/core/config.rb:127 lib/rbot/core/config.rb:150
669
+ #: lib/rbot/core/config.rb:127 lib/rbot/core/config.rb:152
646
670
  msgid "no such config key %{key}"
647
671
  msgstr ""
648
672
 
@@ -655,12 +679,12 @@ msgid "possible keys: %{kl}"
655
679
  msgstr ""
656
680
 
657
681
  #: lib/rbot/core/config.rb:93 lib/rbot/core/config.rb:112
658
- #: lib/rbot/core/config.rb:142 lib/rbot/core/config.rb:165
682
+ #: lib/rbot/core/config.rb:144 lib/rbot/core/config.rb:169
659
683
  msgid "this config change will take effect on the next restart"
660
684
  msgstr ""
661
685
 
662
686
  #: lib/rbot/core/config.rb:94 lib/rbot/core/config.rb:115
663
- #: lib/rbot/core/config.rb:143 lib/rbot/core/config.rb:166
687
+ #: lib/rbot/core/config.rb:145 lib/rbot/core/config.rb:170
664
688
  msgid "this config change will take effect on the next rescan"
665
689
  msgstr ""
666
690
 
@@ -668,92 +692,92 @@ msgstr ""
668
692
  msgid "failed to set %{key}: %{error}"
669
693
  msgstr ""
670
694
 
671
- #: lib/rbot/core/config.rb:131 lib/rbot/core/config.rb:154
695
+ #: lib/rbot/core/config.rb:131 lib/rbot/core/config.rb:156
672
696
  msgid "config key %{key} is not an array"
673
697
  msgstr ""
674
698
 
675
- #: lib/rbot/core/config.rb:138
699
+ #: lib/rbot/core/config.rb:139
676
700
  msgid "failed to add %{value} to %{key}: %{error}"
677
701
  msgstr ""
678
702
 
679
- #: lib/rbot/core/config.rb:161
703
+ #: lib/rbot/core/config.rb:164
680
704
  msgid "failed to remove %{value} from %{key}: %{error}"
681
705
  msgstr ""
682
706
 
683
- #: lib/rbot/core/config.rb:175
707
+ #: lib/rbot/core/config.rb:179
684
708
  msgid "saving ..."
685
709
  msgstr ""
686
710
 
687
- #: lib/rbot/core/config.rb:177
711
+ #: lib/rbot/core/config.rb:181
688
712
  msgid "rescanning ..."
689
713
  msgstr ""
690
714
 
691
- #: lib/rbot/core/config.rb:179
715
+ #: lib/rbot/core/config.rb:183
692
716
  msgid "done. %{plugin_status}"
693
717
  msgstr ""
694
718
 
695
- #: lib/rbot/core/config.rb:221
719
+ #: lib/rbot/core/config.rb:225
696
720
  msgid ""
697
721
  "config list => list configuration modules, config list <module> => list "
698
722
  "configuration keys for module <module>"
699
723
  msgstr ""
700
724
 
701
- #: lib/rbot/core/config.rb:223
725
+ #: lib/rbot/core/config.rb:227
702
726
  msgid "config get <key> => get configuration value for key <key>"
703
727
  msgstr ""
704
728
 
705
- #: lib/rbot/core/config.rb:225
729
+ #: lib/rbot/core/config.rb:229
706
730
  msgid "reset key <key> to the default"
707
731
  msgstr ""
708
732
 
709
- #: lib/rbot/core/config.rb:227
733
+ #: lib/rbot/core/config.rb:231
710
734
  msgid ""
711
735
  "config set <key> <value> => set configuration value for key <key> to <value>"
712
736
  msgstr ""
713
737
 
714
- #: lib/rbot/core/config.rb:229
738
+ #: lib/rbot/core/config.rb:233
715
739
  msgid "config desc <key> => describe what key <key> configures"
716
740
  msgstr ""
717
741
 
718
- #: lib/rbot/core/config.rb:231
742
+ #: lib/rbot/core/config.rb:235
719
743
  msgid ""
720
- "config add <value> to <key> => add value <value> to key <key> if <key> is an "
721
- "array"
744
+ "config add <values> to <key> => add values <values> to key <key> if <key> is "
745
+ "an array"
722
746
  msgstr ""
723
747
 
724
- #: lib/rbot/core/config.rb:233
748
+ #: lib/rbot/core/config.rb:237
725
749
  msgid ""
726
750
  "config rm <value> from <key> => remove value <value> from key <key> if <key> "
727
751
  "is an array"
728
752
  msgstr ""
729
753
 
730
- #: lib/rbot/core/config.rb:235
754
+ #: lib/rbot/core/config.rb:239
731
755
  msgid ""
732
756
  "config module - bot configuration. usage: list, desc, get, set, unset, add, "
733
757
  "rm"
734
758
  msgstr ""
735
759
 
736
- #: lib/rbot/core/config.rb:240
760
+ #: lib/rbot/core/config.rb:244
737
761
  msgid "nick <newnick> => change the bot nick to <newnick>, if possible"
738
762
  msgstr ""
739
763
 
740
- #: lib/rbot/core/config.rb:242
764
+ #: lib/rbot/core/config.rb:246
741
765
  msgid "status => display some information on the bot's status"
742
766
  msgstr ""
743
767
 
744
- #: lib/rbot/core/config.rb:244
768
+ #: lib/rbot/core/config.rb:248
745
769
  msgid "save => save current dynamic data and configuration"
746
770
  msgstr ""
747
771
 
748
- #: lib/rbot/core/config.rb:246
772
+ #: lib/rbot/core/config.rb:250
749
773
  msgid "rescan => reload modules and static facts"
750
774
  msgstr ""
751
775
 
752
- #: lib/rbot/core/config.rb:248
776
+ #: lib/rbot/core/config.rb:252
753
777
  msgid "version => describes software version"
754
778
  msgstr ""
755
779
 
756
- #: lib/rbot/core/config.rb:250
780
+ #: lib/rbot/core/config.rb:254
757
781
  msgid "config-related tasks: config, save, rescan, version, nick, status"
758
782
  msgstr ""
759
783
 
@@ -785,162 +809,194 @@ msgstr ""
785
809
  msgid "filters matching %{pat}: "
786
810
  msgstr ""
787
811
 
788
- #: lib/rbot/core/userdata.rb:146
812
+ #: lib/rbot/core/userdata.rb:161
789
813
  msgid "%{key} data for %{user}: %{data}"
790
814
  msgstr ""
791
815
 
792
- #: lib/rbot/core/userdata.rb:152
816
+ #: lib/rbot/core/userdata.rb:167
793
817
  msgid "sorry, no %{key} data for %{user}"
794
818
  msgstr ""
795
819
 
796
- #: lib/rbot/core/utils/utils.rb:202
820
+ #: lib/rbot/core/utils/utils.rb:184
797
821
  msgid "year"
798
822
  msgstr ""
799
823
 
800
- #: lib/rbot/core/utils/utils.rb:202
824
+ #: lib/rbot/core/utils/utils.rb:184
801
825
  msgid "years"
802
826
  msgstr ""
803
827
 
804
- #: lib/rbot/core/utils/utils.rb:204
828
+ #: lib/rbot/core/utils/utils.rb:186
805
829
  msgid "month"
806
830
  msgstr ""
807
831
 
808
- #: lib/rbot/core/utils/utils.rb:204
832
+ #: lib/rbot/core/utils/utils.rb:186
809
833
  msgid "months"
810
834
  msgstr ""
811
835
 
812
- #: lib/rbot/core/utils/utils.rb:206
836
+ #: lib/rbot/core/utils/utils.rb:188
813
837
  msgid "day"
814
838
  msgstr ""
815
839
 
816
- #: lib/rbot/core/utils/utils.rb:206
840
+ #: lib/rbot/core/utils/utils.rb:188
817
841
  msgid "days"
818
842
  msgstr ""
819
843
 
820
- #: lib/rbot/core/utils/utils.rb:208
844
+ #: lib/rbot/core/utils/utils.rb:190
821
845
  msgid "hour"
822
846
  msgstr ""
823
847
 
824
- #: lib/rbot/core/utils/utils.rb:208
848
+ #: lib/rbot/core/utils/utils.rb:190
825
849
  msgid "hours"
826
850
  msgstr ""
827
851
 
828
- #: lib/rbot/core/utils/utils.rb:210
852
+ #: lib/rbot/core/utils/utils.rb:192
829
853
  msgid "minute"
830
854
  msgstr ""
831
855
 
832
- #: lib/rbot/core/utils/utils.rb:210
856
+ #: lib/rbot/core/utils/utils.rb:192
833
857
  msgid "minutes"
834
858
  msgstr ""
835
859
 
836
- #: lib/rbot/core/utils/utils.rb:212
860
+ #: lib/rbot/core/utils/utils.rb:194
837
861
  msgid "second"
838
862
  msgstr ""
839
863
 
840
- #: lib/rbot/core/utils/utils.rb:212
864
+ #: lib/rbot/core/utils/utils.rb:194
841
865
  msgid "seconds"
842
866
  msgstr ""
843
867
 
844
- #: lib/rbot/core/utils/utils.rb:219
868
+ #: lib/rbot/core/utils/utils.rb:201 lib/rbot/core/utils/utils.rb:710
845
869
  msgid " and "
846
870
  msgstr ""
847
871
 
848
- #: lib/rbot/core/utils/utils.rb:252
872
+ #: lib/rbot/core/utils/utils.rb:232
873
+ msgid "right now"
874
+ msgstr ""
875
+
876
+ #: lib/rbot/core/utils/utils.rb:236
849
877
  msgid "%{d} from now"
850
878
  msgstr ""
851
879
 
852
- #: lib/rbot/core/utils/utils.rb:254
880
+ #: lib/rbot/core/utils/utils.rb:238
853
881
  msgid "%{d} ago"
854
882
  msgstr ""
855
883
 
856
- #: lib/rbot/core/utils/utils.rb:257
857
- msgid "on %{date}"
884
+ #: lib/rbot/core/utils/utils.rb:250
885
+ msgid "%{m} years"
858
886
  msgstr ""
859
887
 
860
- #: lib/rbot/core/utils/utils.rb:266
861
- msgid "less than a minute"
888
+ #: lib/rbot/core/utils/utils.rb:252
889
+ msgid "%{m} months"
862
890
  msgstr ""
863
891
 
864
- #: lib/rbot/core/utils/utils.rb:268
865
- msgid "%{m} minutes"
892
+ #: lib/rbot/core/utils/utils.rb:254
893
+ msgid "%{m} weeks"
866
894
  msgstr ""
867
895
 
868
- #: lib/rbot/core/utils/utils.rb:270
869
- msgid "about one hour"
896
+ #: lib/rbot/core/utils/utils.rb:256
897
+ msgid "%{m} days"
870
898
  msgstr ""
871
899
 
872
- #: lib/rbot/core/utils/utils.rb:272
900
+ #: lib/rbot/core/utils/utils.rb:258
873
901
  msgid "%{m} hours"
874
902
  msgstr ""
875
903
 
876
- #: lib/rbot/core/utils/utils.rb:274
877
- msgid "one day"
904
+ #: lib/rbot/core/utils/utils.rb:260
905
+ msgid "half an hour"
878
906
  msgstr ""
879
907
 
880
- #: lib/rbot/core/utils/utils.rb:276
881
- msgid "about one day"
908
+ #: lib/rbot/core/utils/utils.rb:263
909
+ msgid "an hour"
882
910
  msgstr ""
883
911
 
884
- #: lib/rbot/core/utils/utils.rb:278
885
- msgid "%{m} days"
912
+ #: lib/rbot/core/utils/utils.rb:265
913
+ msgid "an hour and a half"
914
+ msgstr ""
915
+
916
+ #: lib/rbot/core/utils/utils.rb:267
917
+ msgid "%{m} minutes"
918
+ msgstr ""
919
+
920
+ #: lib/rbot/core/utils/utils.rb:269
921
+ msgid "%{m} seconds"
922
+ msgstr ""
923
+
924
+ #: lib/rbot/core/utils/utils.rb:271
925
+ msgid "one second"
926
+ msgstr ""
927
+
928
+ #: lib/rbot/core/wordlist_ui.rb:10
929
+ msgid "wordlist list [<pattern>] => list wordlists (matching <pattern>)"
930
+ msgstr ""
931
+
932
+ #: lib/rbot/core/wordlist_ui.rb:16
933
+ msgid "no wordlist found"
886
934
  msgstr ""
887
935
 
888
- #: lib/rbot/ircbot.rb:1233
936
+ #: lib/rbot/core/wordlist_ui.rb:18
937
+ msgid "Wordlists: %{found}"
938
+ msgstr ""
939
+
940
+ #: lib/rbot/ircbot.rb:1250
941
+ msgid "restarting, back in %{wait}..."
942
+ msgstr ""
943
+
944
+ #: lib/rbot/ircbot.rb:1333
889
945
  msgid "help topics: "
890
946
  msgstr ""
891
947
 
892
- #: lib/rbot/ircbot.rb:1235
948
+ #: lib/rbot/ircbot.rb:1335
893
949
  msgid " (help <topic> for more info)"
894
950
  msgstr ""
895
951
 
896
- #: lib/rbot/ircbot.rb:1238
952
+ #: lib/rbot/ircbot.rb:1338
897
953
  msgid "no help for topic %{topic}"
898
954
  msgstr ""
899
955
 
900
- #: lib/rbot/ircbot.rb:1249
956
+ #: lib/rbot/ircbot.rb:1349
901
957
  msgid ""
902
958
  "Uptime %{up}, %{plug} plugins active, %{sent} lines sent, %{recv} received."
903
959
  msgstr ""
904
960
 
905
- #: lib/rbot/plugins.rb:341
961
+ #: lib/rbot/plugins.rb:344
906
962
  msgid "incorrect usage, ask for help using '%{command}'"
907
963
  msgstr ""
908
964
 
909
- #: lib/rbot/plugins.rb:665
965
+ #: lib/rbot/plugins.rb:707
910
966
  msgid "%{count} core module loaded"
911
967
  msgid_plural "%{count} core modules loaded"
912
968
  msgstr[0] ""
913
969
  msgstr[1] ""
914
970
 
915
- #: lib/rbot/plugins.rb:668
971
+ #: lib/rbot/plugins.rb:710
916
972
  msgid "%{count} core module: %{list}"
917
973
  msgid_plural "%{count} core modules: %{list}"
918
974
  msgstr[0] ""
919
975
  msgstr[1] ""
920
976
 
921
- #: lib/rbot/plugins.rb:674
977
+ #: lib/rbot/plugins.rb:716
922
978
  msgid "no core botmodules loaded"
923
979
  msgstr ""
924
980
 
925
- #: lib/rbot/plugins.rb:679
981
+ #: lib/rbot/plugins.rb:721
926
982
  msgid "%{count} plugin loaded"
927
983
  msgid_plural "%{count} plugins loaded"
928
984
  msgstr[0] ""
929
985
  msgstr[1] ""
930
986
 
931
- #: lib/rbot/plugins.rb:682
987
+ #: lib/rbot/plugins.rb:724
932
988
  msgid "%{count} plugin: %{list}"
933
989
  msgid_plural "%{count} plugins: %{list}"
934
990
  msgstr[0] ""
935
991
  msgstr[1] ""
936
992
 
937
- #: lib/rbot/plugins.rb:693
993
+ #: lib/rbot/plugins.rb:735
938
994
  msgid "%{highlight}%{count} plugin ignored%{highlight}"
939
995
  msgid_plural "%{highlight}%{count} plugins ignored%{highlight}"
940
996
  msgstr[0] ""
941
997
  msgstr[1] ""
942
998
 
943
- #: lib/rbot/plugins.rb:698
999
+ #: lib/rbot/plugins.rb:740
944
1000
  msgid ""
945
1001
  "%{highlight}%{count} plugin ignored%{highlight}: use %{bold}%{command}%"
946
1002
  "{bold} to see why"
@@ -950,13 +1006,13 @@ msgid_plural ""
950
1006
  msgstr[0] ""
951
1007
  msgstr[1] ""
952
1008
 
953
- #: lib/rbot/plugins.rb:708
1009
+ #: lib/rbot/plugins.rb:750
954
1010
  msgid "%{highlight}%{count} plugin failed to load%{highlight}"
955
1011
  msgid_plural "%{highlight}%{count} plugins failed to load%{highlight}"
956
1012
  msgstr[0] ""
957
1013
  msgstr[1] ""
958
1014
 
959
- #: lib/rbot/plugins.rb:713
1015
+ #: lib/rbot/plugins.rb:755
960
1016
  msgid ""
961
1017
  "%{highlight}%{count} plugin failed to load%{highlight}: use %{bold}%"
962
1018
  "{command}%{bold} to see why"
@@ -966,34 +1022,34 @@ msgid_plural ""
966
1022
  msgstr[0] ""
967
1023
  msgstr[1] ""
968
1024
 
969
- #: lib/rbot/plugins.rb:743
1025
+ #: lib/rbot/plugins.rb:785
970
1026
  msgid "no plugins failed to load"
971
1027
  msgstr ""
972
1028
 
973
- #: lib/rbot/plugins.rb:745
1029
+ #: lib/rbot/plugins.rb:787
974
1030
  msgid ""
975
1031
  "%{highlight}%{plugin}%{highlight} in %{dir} failed with error %{exception}: %"
976
1032
  "{reason}"
977
1033
  msgstr ""
978
1034
 
979
- #: lib/rbot/plugins.rb:749
1035
+ #: lib/rbot/plugins.rb:791
980
1036
  msgid "at %{backtrace}"
981
1037
  msgstr ""
982
1038
 
983
- #: lib/rbot/plugins.rb:755
1039
+ #: lib/rbot/plugins.rb:797
984
1040
  msgid "no plugins were ignored"
985
1041
  msgstr ""
986
1042
 
987
- #: lib/rbot/plugins.rb:759
1043
+ #: lib/rbot/plugins.rb:801
988
1044
  msgid "overruled by previous"
989
1045
  msgstr ""
990
1046
 
991
- #: lib/rbot/registry.rb:20
1047
+ #: lib/rbot/registry.rb:22
992
1048
  msgid ""
993
1049
  "upgrading old-style (rbot 0.9.5 or earlier) plugin registry to new format"
994
1050
  msgstr ""
995
1051
 
996
- #: lib/rbot/registry.rb:40
1052
+ #: lib/rbot/registry.rb:41
997
1053
  msgid ""
998
1054
  "upgrading previous (rbot 0.9.9 or earlier) plugin registry to new split "
999
1055
  "format"