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
File without changes
File without changes
File without changes
@@ -0,0 +1,32 @@
1
+ # Finnish translations for PACKAGE package.
2
+ # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # Automatically generated, 2009.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: rbot\n"
9
+ "POT-Creation-Date: 2009-03-20 16:03+0100\n"
10
+ "PO-Revision-Date: 2009-03-20 16:03+0100\n"
11
+ "Last-Translator: Automatically generated\n"
12
+ "Language-Team: none\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: data/rbot/plugins/wall.rb:19
19
+ msgid "figlet method to use to display the writing on the wall (nil for none)"
20
+ msgstr ""
21
+
22
+ #: data/rbot/plugins/wall.rb:28
23
+ msgid "writing on the wall not implemented yet"
24
+ msgstr ""
25
+
26
+ #: data/rbot/plugins/wall.rb:34
27
+ msgid "No writing on the wall"
28
+ msgstr ""
29
+
30
+ #: data/rbot/plugins/wall.rb:52
31
+ msgid "The writing on the wall reads: %{wall}"
32
+ msgstr ""
File without changes
@@ -0,0 +1,205 @@
1
+ # Finnish translations for PACKAGE package.
2
+ # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # Automatically generated, 2009.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: rbot\n"
9
+ "POT-Creation-Date: 2009-03-20 15:57+0100\n"
10
+ "PO-Revision-Date: 2009-03-20 15:57+0100\n"
11
+ "Last-Translator: Automatically generated\n"
12
+ "Language-Team: none\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: data/rbot/plugins/games/wheelfortune.rb:54
19
+ msgid " [Letters called so far: %{red}%{letters}%{nocolor}]"
20
+ msgstr ""
21
+
22
+ #: data/rbot/plugins/games/wheelfortune.rb:240
23
+ msgid ""
24
+ "wof [<channel>] play [<name>] for <single> to <max> => starts a wheel-of-"
25
+ "fortune game on channel <channel> (default: current channel), named <name> "
26
+ "(default: wheelfortune.game_name config setting, or the last game name used "
27
+ "by the user), with <single> points per round. the game is won when a player "
28
+ "reachers <max> points. vowels cost <single>*<single>/<max> points. The user "
29
+ "that starts the game is the game manager and must set up the clues and "
30
+ "answers in private. All the other users have to learn the answer to each "
31
+ "clue by saying single consonants or the whole sentence. Every time a "
32
+ "consonant is guessed, the bot will reveal the partial answer, showing the "
33
+ "missing letters as * (asterisks)."
34
+ msgstr ""
35
+
36
+ #: data/rbot/plugins/games/wheelfortune.rb:242
37
+ msgid ""
38
+ "wof <channel> [category: <cat>,] clue: <clue>, answer: <ans> => set up a new "
39
+ "question for the wheel-of-fortune game being played on channel <channel>. "
40
+ "This command must be sent in private by the game manager. The category <cat> "
41
+ "can be omitted. If you make mistakes, you can use 'wof replace' (see help) "
42
+ "before the question gets asked"
43
+ msgstr ""
44
+
45
+ #: data/rbot/plugins/games/wheelfortune.rb:244
46
+ msgid ""
47
+ "wof <channel> replace <round> [category: <cat>,] [clue: <clue>,] [answer: "
48
+ "<ans>] => fix the question for round <round> of the wheel-of-fortune game "
49
+ "being played on <channel> by replacing the category and/or clue and/or answer"
50
+ msgstr ""
51
+
52
+ #: data/rbot/plugins/games/wheelfortune.rb:246
53
+ msgid ""
54
+ "wof cancel => cancels the wheel-of-fortune being played on the current "
55
+ "channel"
56
+ msgstr ""
57
+
58
+ #: data/rbot/plugins/games/wheelfortune.rb:248
59
+ msgid ""
60
+ "wof buy <vowel> => buy the vowel <vowel>: the user buying the vowel will "
61
+ "lose points equal to the vowel price, and the corresponding vowel will be "
62
+ "revealed in the answer (if present)"
63
+ msgstr ""
64
+
65
+ #: data/rbot/plugins/games/wheelfortune.rb:250
66
+ msgid ""
67
+ "wof: wheel-of-fortune plugin. topics: play, category, clue, answer, replace, "
68
+ "cancel, buy"
69
+ msgstr ""
70
+
71
+ #: data/rbot/plugins/games/wheelfortune.rb:257
72
+ msgid "you must specify a channel"
73
+ msgstr ""
74
+
75
+ #: data/rbot/plugins/games/wheelfortune.rb:263
76
+ msgid "there's already a %{name} game on %{chan}, managed by %{who}"
77
+ msgstr ""
78
+
79
+ #: data/rbot/plugins/games/wheelfortune.rb:277
80
+ msgid ""
81
+ "%{who} just created a new %{name} game to %{max} points (%{single} per "
82
+ "question, %{price} per vowel)"
83
+ msgstr ""
84
+
85
+ #: data/rbot/plugins/games/wheelfortune.rb:284
86
+ msgid ""
87
+ "ok, the game has been created. now add clues and answers with \"wof %{chan} "
88
+ "[category: <category>,] clue: <clue>, answer: <ans>\". if the clue and "
89
+ "answer don't fit in one line, add the answer separately with \"wof %{chan} "
90
+ "answer <answer>\""
91
+ msgstr ""
92
+
93
+ #: data/rbot/plugins/games/wheelfortune.rb:292
94
+ #: data/rbot/plugins/games/wheelfortune.rb:353
95
+ #: data/rbot/plugins/games/wheelfortune.rb:423
96
+ #: data/rbot/plugins/games/wheelfortune.rb:536
97
+ #: data/rbot/plugins/games/wheelfortune.rb:573
98
+ msgid "there's no %{name} game running on %{chan}"
99
+ msgstr ""
100
+
101
+ #: data/rbot/plugins/games/wheelfortune.rb:301
102
+ msgid "you can't add questions to the %{name} game on %{chan}"
103
+ msgstr ""
104
+
105
+ #: data/rbot/plugins/games/wheelfortune.rb:311
106
+ #: data/rbot/plugins/games/wheelfortune.rb:394
107
+ msgid "sorry, the answer cannot contain the '*' character"
108
+ msgstr ""
109
+
110
+ #: data/rbot/plugins/games/wheelfortune.rb:318
111
+ msgid "ok, clue added for %{name} round %{count} on %{chan}: %{catclue}"
112
+ msgstr ""
113
+
114
+ #: data/rbot/plugins/games/wheelfortune.rb:320
115
+ msgid ""
116
+ "there's already a pending clue for %{name} round %{count} on %{chan}: %"
117
+ "{catclue}"
118
+ msgstr ""
119
+
120
+ #: data/rbot/plugins/games/wheelfortune.rb:333
121
+ msgid ""
122
+ "ok, QA added for %{name} round %{count} on %{chan}: %{catclue} => %{ans}"
123
+ msgstr ""
124
+
125
+ #: data/rbot/plugins/games/wheelfortune.rb:335
126
+ msgid "there's no pending clue for %{name} on %{chan}!"
127
+ msgstr ""
128
+
129
+ #: data/rbot/plugins/games/wheelfortune.rb:346
130
+ msgid ""
131
+ "something went wrong, I can't seem to understand what you're trying to set up"
132
+ msgstr ""
133
+
134
+ #: data/rbot/plugins/games/wheelfortune.rb:362
135
+ msgid "you can't replace questions to the %{name} game on %{chan}"
136
+ msgstr ""
137
+
138
+ #: data/rbot/plugins/games/wheelfortune.rb:375
139
+ msgid ""
140
+ "there are no questions in the %{name} game on %{chan} which can be replaced"
141
+ msgstr ""
142
+
143
+ #: data/rbot/plugins/games/wheelfortune.rb:380
144
+ msgid ""
145
+ "you can only replace questions between rounds %{min} and %{max} in the %"
146
+ "{name} game on %{chan}"
147
+ msgstr ""
148
+
149
+ #: data/rbot/plugins/games/wheelfortune.rb:409
150
+ msgid ""
151
+ "ok, replaced QA for %{name} round %{count} on %{chan}: %{catclue} => %{ans}"
152
+ msgstr ""
153
+
154
+ #: data/rbot/plugins/games/wheelfortune.rb:435
155
+ #: data/rbot/plugins/games/wheelfortune.rb:542
156
+ msgid ""
157
+ "there are no %{name} questions for %{chan}, I'm waiting for %{who} to add "
158
+ "them"
159
+ msgstr ""
160
+
161
+ #: data/rbot/plugins/games/wheelfortune.rb:443
162
+ msgid "%{bold}%{color}%{name}%{bold}, round %{count}:%{nocolor} %{qa}"
163
+ msgstr ""
164
+
165
+ #: data/rbot/plugins/games/wheelfortune.rb:458
166
+ msgid "no scores"
167
+ msgstr ""
168
+
169
+ #: data/rbot/plugins/games/wheelfortune.rb:479
170
+ msgid "You must buy the %{vowel}"
171
+ msgstr ""
172
+
173
+ #: data/rbot/plugins/games/wheelfortune.rb:489
174
+ msgid "%{who} got it! The answer was: %{ans}"
175
+ msgstr ""
176
+
177
+ #: data/rbot/plugins/games/wheelfortune.rb:495
178
+ msgid ""
179
+ "%{bold}%{color}%{name}%{bold}%{nocolor}: %{who} %{bold}wins%{bold} after %"
180
+ "{count} rounds!\n"
181
+ "The final score is"
182
+ msgstr ""
183
+
184
+ #: data/rbot/plugins/games/wheelfortune.rb:506
185
+ msgid ""
186
+ "%{bold}%{color}%{name}%{bold}, round %{count}%{nocolor} -- score so far:"
187
+ msgstr ""
188
+
189
+ #: data/rbot/plugins/games/wheelfortune.rb:552
190
+ msgid "%{who} buys a %{vowel} for %{price} points"
191
+ msgstr ""
192
+
193
+ #: data/rbot/plugins/games/wheelfortune.rb:560
194
+ msgid ""
195
+ "you can't buy a %{vowel}, %{who}: it costs %{price} points and you only have "
196
+ "%{score}"
197
+ msgstr ""
198
+
199
+ #: data/rbot/plugins/games/wheelfortune.rb:583
200
+ msgid "you can't cancel the current game"
201
+ msgstr ""
202
+
203
+ #: data/rbot/plugins/games/wheelfortune.rb:590
204
+ msgid "%{name} game cancelled after %{count} rounds. Partial score:"
205
+ msgstr ""
File without changes
File without changes
@@ -0,0 +1,58 @@
1
+ # Finnish translations for PACKAGE package.
2
+ # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # Automatically generated, 2009.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: rbot\n"
9
+ "POT-Creation-Date: 2009-03-20 15:57+0100\n"
10
+ "PO-Revision-Date: 2009-03-20 15:57+0100\n"
11
+ "Last-Translator: Automatically generated\n"
12
+ "Language-Team: none\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: data/rbot/plugins/youtube.rb:33
19
+ msgid ""
20
+ "Category: %{cat}. Rating: %{rating}. Author: %{author}. Duration: %"
21
+ "{duration}. %{views} views, faved %{faves} times. %{desc}"
22
+ msgstr ""
23
+
24
+ #: data/rbot/plugins/youtube.rb:77 data/rbot/plugins/youtube.rb:107
25
+ msgid "unknown duration"
26
+ msgstr ""
27
+
28
+ #: data/rbot/plugins/youtube.rb:183
29
+ msgid ""
30
+ "%{bold}%{title}%{bold} [%{cat}] %{rating} @ %{url} by %{author} (%"
31
+ "{duration}). %{views} views, faved %{faves} times. %{desc}"
32
+ msgstr ""
33
+
34
+ #: data/rbot/plugins/youtube.rb:186
35
+ msgid ""
36
+ "\n"
37
+ " -- also available at: "
38
+ msgstr ""
39
+
40
+ #: data/rbot/plugins/youtube.rb:193
41
+ msgid "couldn't retrieve video info"
42
+ msgstr ""
43
+
44
+ #: data/rbot/plugins/youtube.rb:203
45
+ msgid "error looking for %{what} on youtube: %{e}"
46
+ msgstr ""
47
+
48
+ #: data/rbot/plugins/youtube.rb:211
49
+ msgid "no videos found for %{what}"
50
+ msgstr ""
51
+
52
+ #: data/rbot/plugins/youtube.rb:215
53
+ msgid "One video found for %{what}: %{show}"
54
+ msgstr ""
55
+
56
+ #: data/rbot/plugins/youtube.rb:222
57
+ msgid "Videos for %{what}: %{shorts}"
58
+ msgstr ""
@@ -0,0 +1,1152 @@
1
+ # Gettext template file for rbot
2
+ # Copyright (C) 2007 Tom Gilbert
3
+ # This file is distributed under the same license as the rbot package.
4
+ # Raine Virta <rane@kapsi.fi>
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: rbot\n"
9
+ "POT-Creation-Date: 2009-03-01 23:49+0100\n"
10
+ "PO-Revision-Date: 2007-07-14 00:06-0400\n"
11
+ "Last-Translator: Yaohan Chen <yaohan.chen@gmail.com>\n"
12
+ "Language-Team: English\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: lib/rbot/botuser.rb:40
19
+ msgid "Password for the bot owner"
20
+ msgstr "Password for the bot owner"
21
+
22
+ #: lib/rbot/botuser.rb:43
23
+ msgid ""
24
+ "Set false to prevent new botusers from logging in without a password when "
25
+ "the user netmask is known"
26
+ msgstr ""
27
+ "Set false to prevent new botusers from logging in without a password when "
28
+ "the user netmask is known"
29
+
30
+ #: lib/rbot/botuser.rb:46
31
+ msgid ""
32
+ "Set false to prevent new botusers from recognizing IRC users without a need "
33
+ "to manually login"
34
+ msgstr ""
35
+ "Set false to prevent new botusers from recognizing IRC users without a need "
36
+ "to manually login"
37
+
38
+ #: lib/rbot/botuser.rb:49
39
+ msgid "Set true to allow new botusers to be created automatically"
40
+ msgstr ""
41
+
42
+ #: lib/rbot/botuser.rb:913
43
+ msgid "%{user}, you don't have '%{command}' permissions here"
44
+ msgstr "%{user}, you don't have '%{command}' permissions here"
45
+
46
+ #: lib/rbot/config.rb:219
47
+ msgid "%{desc} [valid values are: %{values}]"
48
+ msgstr "%{desc} [valid values are: %{values}]"
49
+
50
+ #: lib/rbot/config.rb:372
51
+ msgid "First time rbot configuration wizard"
52
+ msgstr "First time rbot configuration wizard"
53
+
54
+ #: lib/rbot/config.rb:375
55
+ msgid "This wizard will ask you a few questions to get you started."
56
+ msgstr "This wizard will ask you a few questions to get you started."
57
+
58
+ #: lib/rbot/config.rb:376
59
+ msgid ""
60
+ "The rest of rbot's configuration can be manipulated via IRC once rbot is "
61
+ "connected and you are auth'd."
62
+ msgstr ""
63
+ "The rest of rbot's configuration can be manipulated via IRC once rbot is "
64
+ "connected and you are auth'd."
65
+
66
+ #: lib/rbot/core/auth.rb:76
67
+ msgid "please do not use + or - in front of command %{command} when resetting"
68
+ msgstr "please do not use + or - in front of command %{command} when resetting"
69
+
70
+ #: lib/rbot/core/auth.rb:78
71
+ msgid "+ or - expected in front of %{string}"
72
+ msgstr "+ or - expected in front of %{string}"
73
+
74
+ #: lib/rbot/core/auth.rb:91
75
+ msgid "'%{string}' doesn't look like a channel name"
76
+ msgstr ""
77
+
78
+ #: lib/rbot/core/auth.rb:100
79
+ msgid "trailing comma"
80
+ msgstr "trailing comma"
81
+
82
+ #: lib/rbot/core/auth.rb:101
83
+ msgid "you probably forgot a comma"
84
+ msgstr "you probably forgot a comma"
85
+
86
+ #: lib/rbot/core/auth.rb:116 lib/rbot/core/auth.rb:170
87
+ #: lib/rbot/core/auth.rb:236
88
+ msgid "couldn't find botuser %{name}"
89
+ msgstr "couldn't find botuser %{name}"
90
+
91
+ #: lib/rbot/core/auth.rb:118
92
+ msgid "you can't change permissions for %{username}"
93
+ msgstr "you can't change permissions for %{username}"
94
+
95
+ #: lib/rbot/core/auth.rb:125
96
+ msgid "couldn't satisfy your request: %{errors}"
97
+ msgstr "couldn't satisfy your request: %{errors}"
98
+
99
+ #: lib/rbot/core/auth.rb:164
100
+ msgid "you are owner, you can do anything"
101
+ msgstr "you are owner, you can do anything"
102
+
103
+ #: lib/rbot/core/auth.rb:167
104
+ msgid "owner can do anything"
105
+ msgstr "owner can do anything"
106
+
107
+ #: lib/rbot/core/auth.rb:178
108
+ msgid "on any channel: "
109
+ msgstr "on any channel: "
110
+
111
+ #: lib/rbot/core/auth.rb:180
112
+ msgid "in private: "
113
+ msgstr "in private: "
114
+
115
+ #: lib/rbot/core/auth.rb:192
116
+ msgid "no permissions set for %{user}"
117
+ msgstr "no permissions set for %{user}"
118
+
119
+ #: lib/rbot/core/auth.rb:194
120
+ msgid "permissions for %{user}:: %{permissions}"
121
+ msgstr "permissions for %{user}:: %{permissions}"
122
+
123
+ #: lib/rbot/core/auth.rb:204
124
+ msgid ". only %{max} will be shown"
125
+ msgstr ""
126
+
127
+ #: lib/rbot/core/auth.rb:205
128
+ msgid "%{count} commands found matching %{pattern}%{extra}"
129
+ msgstr ""
130
+
131
+ #: lib/rbot/core/auth.rb:210
132
+ msgid "%{cmd}: %{perms}"
133
+ msgstr ""
134
+
135
+ #: lib/rbot/core/auth.rb:271
136
+ msgid "%{user} can already do that"
137
+ msgstr ""
138
+
139
+ #: lib/rbot/core/auth.rb:273
140
+ msgid "%{user} can't do that already"
141
+ msgstr ""
142
+
143
+ #: lib/rbot/core/auth.rb:283
144
+ msgid ""
145
+ "sorry, %{cmd} doesn't look like a valid command. maybe you misspelled it, or "
146
+ "you need to specify it should be in private?"
147
+ msgstr ""
148
+
149
+ #: lib/rbot/core/auth.rb:306
150
+ msgid "welcome, %{user}"
151
+ msgstr "welcome, %{user}"
152
+
153
+ #: lib/rbot/core/auth.rb:321
154
+ msgid "sorry, can't do"
155
+ msgstr "sorry, can't do"
156
+
157
+ #: lib/rbot/core/auth.rb:324
158
+ msgid "couldn't login: %{exception}"
159
+ msgstr "couldn't login: %{exception}"
160
+
161
+ #: lib/rbot/core/auth.rb:332
162
+ msgid "I couldn't find anything to let you login automatically"
163
+ msgstr "I couldn't find anything to let you login automatically"
164
+
165
+ #: lib/rbot/core/auth.rb:343
166
+ msgid "you are %{who}"
167
+ msgstr "you are %{who}"
168
+
169
+ #: lib/rbot/core/auth.rb:345 lib/rbot/core/auth.rb:358
170
+ msgid "no one that I know"
171
+ msgstr "no one that I know"
172
+
173
+ #: lib/rbot/core/auth.rb:346 lib/rbot/core/auth.rb:359
174
+ msgid "my boss"
175
+ msgstr "my boss"
176
+
177
+ #: lib/rbot/core/auth.rb:366
178
+ msgid ""
179
+ "login [<botuser>] [<pass>]: logs in to the bot as botuser <botuser> with "
180
+ "password <pass>. When using the full form, you must contact the bot in "
181
+ "private. <pass> can be omitted if <botuser> allows login-by-mask and your "
182
+ "netmask is among the known ones. if <botuser> is omitted too autologin will "
183
+ "be attempted"
184
+ msgstr ""
185
+ "login [<botuser>] [<pass>]: logs in to the bot as botuser <botuser> with "
186
+ "password <pass>. When using the full form, you must contact the bot in "
187
+ "private. <pass> can be omitted if <botuser> allows login-by-mask and your "
188
+ "netmask is among the known ones. if <botuser> is omitted too autologin will "
189
+ "be attempted"
190
+
191
+ #: lib/rbot/core/auth.rb:368
192
+ msgid "whoami: names the botuser you're linked to"
193
+ msgstr "whoami: names the botuser you're linked to"
194
+
195
+ #: lib/rbot/core/auth.rb:370
196
+ msgid "who is <user>: names the botuser <user> is linked to"
197
+ msgstr "whoami: names the botuser you're linked to"
198
+
199
+ #: lib/rbot/core/auth.rb:374
200
+ msgid ""
201
+ "a permission is specified as module::path::to::cmd; when you want to enable "
202
+ "it, prefix it with +; when you want to disable it, prefix it with -; when "
203
+ "using the +reset+ command, do not use any prefix"
204
+ msgstr ""
205
+ "a permission is specified as module::path::to::cmd; when you want to enable "
206
+ "it, prefix it with +; when you want to disable it, prefix it with -; when "
207
+ "using the +reset+ command, do not use any prefix"
208
+
209
+ #: lib/rbot/core/auth.rb:376
210
+ msgid ""
211
+ "permissions [re]set <permission> [in <channel>] for <user>: sets or resets "
212
+ "the permissions for botuser <user> in channel <channel> (use ? to change the "
213
+ "permissions for private addressing)"
214
+ msgstr ""
215
+ "permissions [re]set <permission> [in <channel>] for <user>: sets or resets "
216
+ "the permissions for botuser <user> in channel <channel> (use ? to change the "
217
+ "permissions for private addressing)"
218
+
219
+ #: lib/rbot/core/auth.rb:378
220
+ msgid "permissions view [for <user>]: display the permissions for user <user>"
221
+ msgstr "permissions view [for <user>]: display the permissions for user <user>"
222
+
223
+ #: lib/rbot/core/auth.rb:380
224
+ msgid ""
225
+ "permissions search <pattern>: display the permissions associated with the "
226
+ "commands matching <pattern>"
227
+ msgstr "permissions view [for <user>]: display the permissions for user <user>"
228
+
229
+ #: lib/rbot/core/auth.rb:382
230
+ msgid "permission topics: syntax, (re)set, view, search"
231
+ msgstr "permission topics: syntax, (re)set, view"
232
+
233
+ #: lib/rbot/core/auth.rb:387
234
+ msgid ""
235
+ "user show <what> : shows info about the user; <what> can be any of "
236
+ "autologin, login-by-mask, netmasks"
237
+ msgstr ""
238
+ "user show <what> : shows info about the user; <what> can be any of "
239
+ "autologin, login-by-mask, netmasks"
240
+
241
+ #: lib/rbot/core/auth.rb:389
242
+ msgid ""
243
+ "user enable|disable <what> : turns on or off <what> (autologin, login-by-"
244
+ "mask)"
245
+ msgstr ""
246
+ "user enable|disable <what> : turns on or off <what> (autologin, login-by-"
247
+ "mask)"
248
+
249
+ #: lib/rbot/core/auth.rb:391
250
+ msgid ""
251
+ "user set password <blah> : sets the user password to <blah>; passwords can "
252
+ "only contain upper and lowercase letters and numbers, and must be at least 4 "
253
+ "characters long"
254
+ msgstr ""
255
+ "user set password <blah> : sets the user password to <blah>; passwords can "
256
+ "only contain upper and lowercase letters and numbers, and must be at least 4 "
257
+ "characters long"
258
+
259
+ #: lib/rbot/core/auth.rb:393
260
+ msgid ""
261
+ "user add|rm netmask <mask> : adds/removes netmask <mask> from the list of "
262
+ "netmasks known to the botuser you're linked to"
263
+ msgstr ""
264
+ "user add|rm netmask <mask> : adds/removes netmask <mask> from the list of "
265
+ "netmasks known to the botuser you're linked to"
266
+
267
+ #: lib/rbot/core/auth.rb:395
268
+ msgid ""
269
+ "user reset <what> : resets <what> to the default values. <what> can be "
270
+ "+netmasks+ (the list will be emptied), +autologin+ or +login-by-mask+ (will "
271
+ "be reset to the default value) or +password+ (a new one will be generated "
272
+ "and you'll be told in private)"
273
+ msgstr ""
274
+ "user reset <what> : resets <what> to the default values. <what> can be "
275
+ "+netmasks+ (the list will be emptied), +autologin+ or +login-by-mask+ (will "
276
+ "be reset to the default value) or +password+ (a new one will be generated "
277
+ "and you'll be told in private)"
278
+
279
+ #: lib/rbot/core/auth.rb:397
280
+ msgid ""
281
+ "user tell <who> the password for <botuser> : contacts <who> in private to "
282
+ "tell him/her the password for <botuser>"
283
+ msgstr ""
284
+ "user tell <who> the password for <botuser> : contacts <who> in private to "
285
+ "tell him/her the password for <botuser>"
286
+
287
+ #: lib/rbot/core/auth.rb:399
288
+ msgid ""
289
+ "user create <name> <password> : create botuser named <name> with password "
290
+ "<password>. The password can be omitted, in which case a random one will be "
291
+ "generated. The <name> should only contain alphanumeric characters and the "
292
+ "underscore (_)"
293
+ msgstr ""
294
+ "user create <name> <password> : create botuser named <name> with password "
295
+ "<password>. The password can be omitted, in which case a random one will be "
296
+ "generated. The <name> should only contain alphanumeric characters and the "
297
+ "underscore (_)"
298
+
299
+ #: lib/rbot/core/auth.rb:401
300
+ msgid "user list : lists all the botusers"
301
+ msgstr "user list : lists all the botusers"
302
+
303
+ #: lib/rbot/core/auth.rb:403
304
+ msgid ""
305
+ "user destroy <botuser> : destroys <botuser>. This function %{highlight}must%"
306
+ "{highlight} be called in two steps. On the first call <botuser> is queued "
307
+ "for destruction. On the second call, which must be in the form 'user confirm "
308
+ "destroy <botuser>', the botuser will be destroyed. If you want to cancel the "
309
+ "destruction, issue the command 'user cancel destroy <botuser>'"
310
+ msgstr ""
311
+ "user destroy <botuser> <password> : destroys <botuser>; this function %"
312
+ "{highlight}must%{highlight} be called in two steps. On the first call, no "
313
+ "password must be specified: <botuser> is then queued for destruction. On the "
314
+ "second call, you must specify the correct password for <botuser>, and it "
315
+ "will be destroyed. If you want to cancel the destruction, issue the command "
316
+ "+user cancel destroy <botuser>+"
317
+
318
+ #: lib/rbot/core/auth.rb:405
319
+ msgid ""
320
+ "user topics: show, enable|disable, add|rm netmask, set, reset, tell, create, "
321
+ "list, destroy"
322
+ msgstr ""
323
+ "user topics: show, enable|disable, add|rm netmask, set, reset, tell, create, "
324
+ "list, destroy"
325
+
326
+ #: lib/rbot/core/auth.rb:408
327
+ msgid ""
328
+ "auth <masterpassword>: log in as the bot owner; other commands: login, "
329
+ "whoami, permissions syntax, permissions [re]set, permissions view, user, "
330
+ "meet, hello, allow, prevent"
331
+ msgstr ""
332
+ "auth <masterpassword>: log in as the bot owner; other commands: login, "
333
+ "whoami, permission syntax, permissions [re]set, permissions view, user"
334
+
335
+ #: lib/rbot/core/auth.rb:410
336
+ msgid ""
337
+ "meet <nick> [as <user>]: creates a bot user for nick, calling it user "
338
+ "(defaults to the nick itself)"
339
+ msgstr ""
340
+
341
+ #: lib/rbot/core/auth.rb:412
342
+ msgid "hello: creates a bot user for the person issuing the command"
343
+ msgstr ""
344
+
345
+ #: lib/rbot/core/auth.rb:415
346
+ msgid ""
347
+ "allow <user> to do <sample command> [<where>]: gives botuser <user> the "
348
+ "permissions to execute a command such as the provided sample command"
349
+ msgstr ""
350
+
351
+ #: lib/rbot/core/auth.rb:416 lib/rbot/core/auth.rb:424
352
+ msgid "(in private or in channel, according to the optional <where>)."
353
+ msgstr ""
354
+
355
+ #: lib/rbot/core/auth.rb:417 lib/rbot/core/auth.rb:425
356
+ msgid ""
357
+ "<sample command> should be a full command, not just the command keyword --"
358
+ msgstr ""
359
+
360
+ #: lib/rbot/core/auth.rb:418
361
+ msgid "correct: allow user to do addquote stuff --"
362
+ msgstr ""
363
+
364
+ #: lib/rbot/core/auth.rb:419
365
+ msgid "wrong: allow user to do addquote."
366
+ msgstr ""
367
+
368
+ #: lib/rbot/core/auth.rb:423
369
+ msgid ""
370
+ "deny <user> from doing <sample command> [<where>]: removes from botuser "
371
+ "<user> the permissions to execute a command such as the provided sample "
372
+ "command"
373
+ msgstr ""
374
+
375
+ #: lib/rbot/core/auth.rb:426
376
+ msgid "correct: deny user from doing addquote stuff --"
377
+ msgstr ""
378
+
379
+ #: lib/rbot/core/auth.rb:427
380
+ msgid "wrong: deny user from doing addquote."
381
+ msgstr ""
382
+
383
+ #: lib/rbot/core/auth.rb:430
384
+ msgid ""
385
+ "auth commands: auth, login, whoami, who, permission[s], user, meet, hello, "
386
+ "allow, deny"
387
+ msgstr "auth commands: auth, login, whoami, permission[s], user"
388
+
389
+ #: lib/rbot/core/auth.rb:435
390
+ msgid "sorry, I need more arguments to %{command}"
391
+ msgstr "sorry, I need more arguments to %{command}"
392
+
393
+ #: lib/rbot/core/auth.rb:439
394
+ msgid "I can only %{command} these: %{arguments}"
395
+ msgstr "I can only %{command} these: %{arguments}"
396
+
397
+ #: lib/rbot/core/auth.rb:474
398
+ msgid "no such bot user %{user}"
399
+ msgstr "no such botuser %{user}"
400
+
401
+ #: lib/rbot/core/auth.rb:477
402
+ msgid "you can't mess with %{user}"
403
+ msgstr "you can't mess with %{user}"
404
+
405
+ #: lib/rbot/core/auth.rb:489
406
+ msgid "you can't see the properties of %{user}"
407
+ msgstr "you can't see the properties of %{user}"
408
+
409
+ #: lib/rbot/core/auth.rb:498
410
+ msgid "no way I'm telling you the master password!"
411
+ msgstr "no way I'm telling you the master password!"
412
+
413
+ #: lib/rbot/core/auth.rb:499
414
+ msgid "you can't ask for someone else's password"
415
+ msgstr "you can't ask for someone else's password"
416
+
417
+ #: lib/rbot/core/auth.rb:501
418
+ msgid ""
419
+ "c'mon, you can't be asking me seriously to tell you the password in public!"
420
+ msgstr ""
421
+ "c'mon, you can't be asking me seriously to tell you the password in public!"
422
+
423
+ #: lib/rbot/core/auth.rb:502
424
+ msgid "the password for %{user} is %{password}"
425
+ msgstr "the password for %{user} is %{password}"
426
+
427
+ #: lib/rbot/core/auth.rb:516
428
+ msgid "can %{action}"
429
+ msgstr "can %{action}"
430
+
431
+ #: lib/rbot/core/auth.rb:518
432
+ msgid "can not %{action}"
433
+ msgstr "can not %{action}"
434
+
435
+ #: lib/rbot/core/auth.rb:522
436
+ msgid "knows no netmasks"
437
+ msgstr "knows no netmasks"
438
+
439
+ #: lib/rbot/core/auth.rb:524
440
+ msgid "knows %{netmasks}"
441
+ msgstr "knows %{netmasks}"
442
+
443
+ #: lib/rbot/core/auth.rb:531 lib/rbot/core/auth.rb:558
444
+ #: lib/rbot/core/auth.rb:576 lib/rbot/core/auth.rb:608
445
+ msgid "you can't change the default user"
446
+ msgstr "you can't change the default user"
447
+
448
+ #: lib/rbot/core/auth.rb:532 lib/rbot/core/auth.rb:560
449
+ #: lib/rbot/core/auth.rb:578 lib/rbot/core/auth.rb:610
450
+ msgid "you can't edit %{user}"
451
+ msgstr "you can't edit %{user}"
452
+
453
+ #: lib/rbot/core/auth.rb:547 lib/rbot/core/auth.rb:594
454
+ msgid "I ignored %{things} because %{reason}"
455
+ msgstr "I ignored %{things} because %{reason}"
456
+
457
+ #: lib/rbot/core/auth.rb:551 lib/rbot/core/auth.rb:598
458
+ msgid "I haven't changed anything"
459
+ msgstr "I haven't changed anything"
460
+
461
+ #: lib/rbot/core/auth.rb:569
462
+ msgid "is that a joke? setting the password in public?"
463
+ msgstr "is that a joke? setting the password in public?"
464
+
465
+ #: lib/rbot/core/auth.rb:601
466
+ msgid "the password for %{user} is now %{password}"
467
+ msgstr "the password for %{user} is now %{password}"
468
+
469
+ #: lib/rbot/core/auth.rb:615
470
+ msgid ""
471
+ "I can only add/remove netmasks. See +help user add+ for more instructions"
472
+ msgstr ""
473
+ "I can only add/remove netmasks. See +help user add+ for more instructions"
474
+
475
+ #: lib/rbot/core/auth.rb:636
476
+ msgid "sorry, I don't know how to %{request}"
477
+ msgstr "sorry, I don't know how to %{request}"
478
+
479
+ #: lib/rbot/core/auth.rb:639
480
+ msgid "couldn't %{cmd}: %{exception}"
481
+ msgstr "couldn't login: %{exception}"
482
+
483
+ #: lib/rbot/core/auth.rb:668
484
+ msgid ""
485
+ "you are now registered as %{buname}. I created a random password for you : %"
486
+ "{pass} and you can change it at any time by telling me 'user set password "
487
+ "<password>' in private"
488
+ msgstr ""
489
+
490
+ #: lib/rbot/core/auth.rb:675
491
+ msgid "but I already know %{buname}"
492
+ msgstr ""
493
+
494
+ #: lib/rbot/core/auth.rb:677
495
+ msgid "I had problems meeting %{nick}: %{e}"
496
+ msgstr ""
497
+
498
+ #: lib/rbot/core/auth.rb:686
499
+ msgid "couldn't find botuser %{user}"
500
+ msgstr "couldn't find botuser %{user}"
501
+
502
+ #: lib/rbot/core/auth.rb:688
503
+ msgid "I'm not telling the master password to anyone, pal"
504
+ msgstr "I'm not telling the master password to anyone, pal"
505
+
506
+ #: lib/rbot/core/auth.rb:689
507
+ msgid "the password for botuser %{user} is %{password}"
508
+ msgstr "the password for botuser %{user} is %{password}"
509
+
510
+ #: lib/rbot/core/auth.rb:692
511
+ msgid "I told %{user} that %{message}"
512
+ msgstr "I told %{user} that %{message}"
513
+
514
+ #: lib/rbot/core/auth.rb:698
515
+ msgid "are you nuts, creating a botuser with a publicly known password?"
516
+ msgstr "are you nuts, creating a botuser with a publicly known password?"
517
+
518
+ #: lib/rbot/core/auth.rb:703
519
+ msgid "failed to create %{user}: %{exception}"
520
+ msgstr "failed to create %{user}: %{exception}"
521
+
522
+ #: lib/rbot/core/auth.rb:707
523
+ msgid "created botuser %{user}"
524
+ msgstr "created botuser %{user}"
525
+
526
+ #: lib/rbot/core/auth.rb:715
527
+ msgid " (queued for destruction)"
528
+ msgstr " (queued for destruction)"
529
+
530
+ #: lib/rbot/core/auth.rb:718
531
+ msgid "I have no botusers other than the default ones"
532
+ msgstr "I have no botusers other than the default ones"
533
+
534
+ #: lib/rbot/core/auth.rb:719
535
+ msgid "botuser: %{list}"
536
+ msgid_plural "botusers: %{list}"
537
+ msgstr[0] "botuser: %{list}"
538
+ msgstr[1] "botusers: %{list}"
539
+
540
+ #: lib/rbot/core/auth.rb:726
541
+ msgid "You can't destroy %{user}"
542
+ msgstr "You can't destroy %{user}"
543
+
544
+ #: lib/rbot/core/auth.rb:736
545
+ msgid "no such botuser %{user}"
546
+ msgstr "no such botuser %{user}"
547
+
548
+ #: lib/rbot/core/auth.rb:743
549
+ msgid "%{user} removed from the destruction queue"
550
+ msgstr "%{user} removed from the destruction queue"
551
+
552
+ #: lib/rbot/core/auth.rb:745
553
+ msgid "%{user} was not queued for destruction"
554
+ msgstr "%{user} was not queued for destruction"
555
+
556
+ #: lib/rbot/core/auth.rb:750
557
+ msgid ""
558
+ "%{user} already queued for destruction, use %{highlight}user confirm destroy "
559
+ "%{user}%{highlight} to destroy it"
560
+ msgstr ""
561
+ "%{user} already queued for destruction, use %{highlight}user destroy %{user} "
562
+ "<password>%{highlight} to destroy it"
563
+
564
+ #: lib/rbot/core/auth.rb:753
565
+ msgid ""
566
+ "%{user} queued for destruction, use %{highlight}user confirm destroy %{user}%"
567
+ "{highlight} to destroy it"
568
+ msgstr ""
569
+ "%{user} queued for destruction, use %{highlight}user destroy %{user} "
570
+ "<password>%{highlight} to destroy it"
571
+
572
+ #: lib/rbot/core/auth.rb:757
573
+ msgid "%{user} is not queued for destruction yet"
574
+ msgstr "%{user} is not queued for destruction yet"
575
+
576
+ #: lib/rbot/core/auth.rb:766 lib/rbot/core/auth.rb:806
577
+ msgid "failed: %{exception}"
578
+ msgstr "failed: %{exception}"
579
+
580
+ #: lib/rbot/core/auth.rb:768
581
+ msgid "botuser %{user} destroyed"
582
+ msgstr "botuser %{user} destroyed"
583
+
584
+ #: lib/rbot/core/auth.rb:775
585
+ msgid "please don't touch the default users"
586
+ msgstr "please don't touch the default users"
587
+
588
+ #: lib/rbot/core/auth.rb:784
589
+ msgid "no such botuser %{source}"
590
+ msgstr "no such botuser %{source}"
591
+
592
+ #: lib/rbot/core/auth.rb:786
593
+ msgid "botuser %{dest} exists already"
594
+ msgstr "botuser %{dest} exists already"
595
+
596
+ #: lib/rbot/core/auth.rb:809
597
+ msgid "botuser %{source} copied to %{dest}"
598
+ msgstr "botuser %{source} copied to %{dest}"
599
+
600
+ #: lib/rbot/core/auth.rb:812
601
+ msgid "botuser %{source} renamed to %{dest}"
602
+ msgstr "botuser %{source} renamed to %{dest}"
603
+
604
+ #: lib/rbot/core/auth.rb:832
605
+ msgid "selecting data to export ..."
606
+ msgstr "selecting data to export ..."
607
+
608
+ #: lib/rbot/core/auth.rb:848
609
+ msgid "preparing data for export ..."
610
+ msgstr "preparing data for export ..."
611
+
612
+ #: lib/rbot/core/auth.rb:871
613
+ msgid "failed to prepare data: %{exception}"
614
+ msgstr "failed to prepare data: %{exception}"
615
+
616
+ #: lib/rbot/core/auth.rb:876
617
+ msgid "exporting to %{file} ..."
618
+ msgstr "exporting to %{file} ..."
619
+
620
+ #: lib/rbot/core/auth.rb:883
621
+ msgid "failed to export users: %{exception}"
622
+ msgstr "failed to export users: %{exception}"
623
+
624
+ #: lib/rbot/core/auth.rb:887 lib/rbot/core/auth.rb:965
625
+ msgid "done"
626
+ msgstr "done"
627
+
628
+ #: lib/rbot/core/auth.rb:904
629
+ msgid "reading %{file} ..."
630
+ msgstr "reading %{file} ..."
631
+
632
+ #: lib/rbot/core/auth.rb:908
633
+ msgid "failed to import from: %{exception}"
634
+ msgstr "failed to import from: %{exception}"
635
+
636
+ #: lib/rbot/core/auth.rb:915
637
+ msgid "selecting data to import ..."
638
+ msgstr "selecting data to import ..."
639
+
640
+ #: lib/rbot/core/auth.rb:925
641
+ msgid "parsing data from import ..."
642
+ msgstr "parsing data from import ..."
643
+
644
+ #: lib/rbot/core/auth.rb:945
645
+ msgid "failed to parse data: %{exception}"
646
+ msgstr "failed to parse data: %{exception}"
647
+
648
+ #: lib/rbot/core/basics.rb:133
649
+ msgid "quit [<message>] => quit IRC with message <message>"
650
+ msgstr "quit [<message>] => quit IRC with message <message>"
651
+
652
+ #: lib/rbot/core/basics.rb:135
653
+ msgid "restart => completely stop and restart the bot (including reconnect)"
654
+ msgstr "restart => completely stop and restart the bot (including reconnect)"
655
+
656
+ #: lib/rbot/core/basics.rb:139
657
+ msgid "part"
658
+ msgstr "part"
659
+
660
+ #: lib/rbot/core/basics.rb:141
661
+ msgid "hide => part all channels"
662
+ msgstr "hide => part all channels"
663
+
664
+ #: lib/rbot/core/basics.rb:143
665
+ msgid ""
666
+ "say <channel>|<nick> <message> => say <message> to <channel> or in private "
667
+ "message to <nick>"
668
+ msgstr ""
669
+ "say <channel>|<nick> <message> => say <message> to <channel> or in private "
670
+ "message to <nick>"
671
+
672
+ #: lib/rbot/core/basics.rb:145
673
+ msgid ""
674
+ "action <channel>|<nick> <message> => does a /me <message> to <channel> or in "
675
+ "private message to <nick>"
676
+ msgstr ""
677
+ "action <channel>|<nick> <message> => does a /me <message> to <channel> or in "
678
+ "private message to <nick>"
679
+
680
+ #: lib/rbot/core/basics.rb:147
681
+ msgid ""
682
+ "quiet [in here|<channel>] => with no arguments, stop speaking in all "
683
+ "channels, if \"in here\", stop speaking in this channel, or stop speaking in "
684
+ "<channel>"
685
+ msgstr ""
686
+ "quiet [in here|<channel>] => with no arguments, stop speaking in all "
687
+ "channels, if \"in here\", stop speaking in this channel, or stop speaking in "
688
+ "<channel>"
689
+
690
+ #: lib/rbot/core/basics.rb:149
691
+ msgid ""
692
+ "talk [in here|<channel>] => with no arguments, resume speaking in all "
693
+ "channels, if \"in here\", resume speaking in this channel, or resume "
694
+ "speaking in <channel>"
695
+ msgstr ""
696
+ "talk [in here|<channel>] => with no arguments, resume speaking in all "
697
+ "channels, if \"in here\", resume speaking in this channel, or resume "
698
+ "speaking in <channel>"
699
+
700
+ #: lib/rbot/core/basics.rb:151
701
+ msgid "ping => replies with a pong"
702
+ msgstr "ping => replies with a pong"
703
+
704
+ #: lib/rbot/core/basics.rb:153
705
+ msgid ""
706
+ "mode <channel> <mode> <nicks> => set channel modes for <nicks> on <channel> "
707
+ "to <mode>"
708
+ msgstr ""
709
+ "mode <channel> <mode> <nicks> => set channel modes for <nicks> on <channel> "
710
+ "to <mode>"
711
+
712
+ #: lib/rbot/core/basics.rb:159
713
+ #, fuzzy
714
+ msgid ""
715
+ "%{name}: quit, restart, join, part, hide, save, say, action, topic, quiet, "
716
+ "talk, ping, mode"
717
+ msgstr ""
718
+ "%{name}: quit, restart, join, part, hide, save, nick, say, action, topic, "
719
+ "quiet, talk,version, ping, mode"
720
+
721
+ #: lib/rbot/core/config.rb:12
722
+ msgid " [%{secs} ago]"
723
+ msgstr ""
724
+
725
+ #: lib/rbot/core/config.rb:18
726
+ msgid "I'm a v. %{version}%{ago} rubybot%{copyright}%{url}"
727
+ msgstr ""
728
+
729
+ #: lib/rbot/core/config.rb:39
730
+ msgid "no such module %{module}"
731
+ msgstr "no such module %{module}"
732
+
733
+ #: lib/rbot/core/config.rb:55 lib/rbot/core/config.rb:66
734
+ #: lib/rbot/core/config.rb:88 lib/rbot/core/config.rb:101
735
+ #: lib/rbot/core/config.rb:127 lib/rbot/core/config.rb:150
736
+ msgid "no such config key %{key}"
737
+ msgstr "no such config key %{key}"
738
+
739
+ #: lib/rbot/core/config.rb:78
740
+ msgid "no config key found matching %{r}"
741
+ msgstr ""
742
+
743
+ #: lib/rbot/core/config.rb:80
744
+ msgid "possible keys: %{kl}"
745
+ msgstr ""
746
+
747
+ #: lib/rbot/core/config.rb:93 lib/rbot/core/config.rb:112
748
+ #: lib/rbot/core/config.rb:142 lib/rbot/core/config.rb:165
749
+ msgid "this config change will take effect on the next restart"
750
+ msgstr "this config change will take effect on the next restart"
751
+
752
+ #: lib/rbot/core/config.rb:94 lib/rbot/core/config.rb:115
753
+ #: lib/rbot/core/config.rb:143 lib/rbot/core/config.rb:166
754
+ msgid "this config change will take effect on the next rescan"
755
+ msgstr "this config change will take effect on the next rescan"
756
+
757
+ #: lib/rbot/core/config.rb:108
758
+ msgid "failed to set %{key}: %{error}"
759
+ msgstr "failed to set %{key}: %{error}"
760
+
761
+ #: lib/rbot/core/config.rb:131 lib/rbot/core/config.rb:154
762
+ msgid "config key %{key} is not an array"
763
+ msgstr "config key %{key} is not an array"
764
+
765
+ #: lib/rbot/core/config.rb:138
766
+ msgid "failed to add %{value} to %{key}: %{error}"
767
+ msgstr "failed to add %{value} to %{key}: %{error}"
768
+
769
+ #: lib/rbot/core/config.rb:161
770
+ msgid "failed to remove %{value} from %{key}: %{error}"
771
+ msgstr "failed to remove %{value} from %{key}: %{error}"
772
+
773
+ #: lib/rbot/core/config.rb:175
774
+ msgid "saving ..."
775
+ msgstr "saving ..."
776
+
777
+ #: lib/rbot/core/config.rb:177
778
+ msgid "rescanning ..."
779
+ msgstr "rescanning ..."
780
+
781
+ #: lib/rbot/core/config.rb:179
782
+ msgid "done. %{plugin_status}"
783
+ msgstr "done. %{plugin_status}"
784
+
785
+ #: lib/rbot/core/config.rb:221
786
+ msgid ""
787
+ "config list => list configuration modules, config list <module> => list "
788
+ "configuration keys for module <module>"
789
+ msgstr ""
790
+ "config list => list configuration modules, config list <module> => list "
791
+ "configuration keys for module <module>"
792
+
793
+ #: lib/rbot/core/config.rb:223
794
+ msgid "config get <key> => get configuration value for key <key>"
795
+ msgstr "config get <key> => get configuration value for key <key>"
796
+
797
+ #: lib/rbot/core/config.rb:225
798
+ msgid "reset key <key> to the default"
799
+ msgstr "reset key <key> to the default"
800
+
801
+ #: lib/rbot/core/config.rb:227
802
+ msgid ""
803
+ "config set <key> <value> => set configuration value for key <key> to <value>"
804
+ msgstr ""
805
+ "config set <key> <value> => set configuration value for key <key> to <value>"
806
+
807
+ #: lib/rbot/core/config.rb:229
808
+ msgid "config desc <key> => describe what key <key> configures"
809
+ msgstr "config desc <key> => describe what key <key> configures"
810
+
811
+ #: lib/rbot/core/config.rb:231
812
+ msgid ""
813
+ "config add <value> to <key> => add value <value> to key <key> if <key> is an "
814
+ "array"
815
+ msgstr ""
816
+ "config add <value> to <key> => add value <value> to key <key> if <key> is an "
817
+ "array"
818
+
819
+ #: lib/rbot/core/config.rb:233
820
+ msgid ""
821
+ "config rm <value> from <key> => remove value <value> from key <key> if <key> "
822
+ "is an array"
823
+ msgstr ""
824
+ "config rm <value> from <key> => remove value <value> from key <key> if <key> "
825
+ "is an array"
826
+
827
+ #: lib/rbot/core/config.rb:235
828
+ msgid ""
829
+ "config module - bot configuration. usage: list, desc, get, set, unset, add, "
830
+ "rm"
831
+ msgstr ""
832
+ "config module - bot configuration. usage: list, desc, get, set, unset, add, "
833
+ "rm"
834
+
835
+ #: lib/rbot/core/config.rb:240
836
+ msgid "nick <newnick> => change the bot nick to <newnick>, if possible"
837
+ msgstr "nick <nick> => attempt to change nick to <nick>"
838
+
839
+ #: lib/rbot/core/config.rb:242
840
+ msgid "status => display some information on the bot's status"
841
+ msgstr ""
842
+
843
+ #: lib/rbot/core/config.rb:244
844
+ msgid "save => save current dynamic data and configuration"
845
+ msgstr "save => save current dynamic data and configuration"
846
+
847
+ #: lib/rbot/core/config.rb:246
848
+ msgid "rescan => reload modules and static facts"
849
+ msgstr "rescan => reload modules and static facts"
850
+
851
+ #: lib/rbot/core/config.rb:248
852
+ msgid "version => describes software version"
853
+ msgstr "version => describes software version"
854
+
855
+ #: lib/rbot/core/config.rb:250
856
+ msgid "config-related tasks: config, save, rescan, version, nick, status"
857
+ msgstr "config-related tasks: config, save, rescan"
858
+
859
+ #: lib/rbot/core/filters_ui.rb:25
860
+ msgid "no filters in group %{g}"
861
+ msgstr ""
862
+
863
+ #: lib/rbot/core/filters_ui.rb:27
864
+ msgid "no known filters"
865
+ msgstr ""
866
+
867
+ #: lib/rbot/core/filters_ui.rb:30
868
+ msgid "known filters: "
869
+ msgstr ""
870
+
871
+ #: lib/rbot/core/filters_ui.rb:38
872
+ msgid "no known filter groups"
873
+ msgstr ""
874
+
875
+ #: lib/rbot/core/filters_ui.rb:40
876
+ msgid "known filter groups: "
877
+ msgstr ""
878
+
879
+ #: lib/rbot/core/filters_ui.rb:50
880
+ msgid "no filters match %{pat}"
881
+ msgstr ""
882
+
883
+ #: lib/rbot/core/filters_ui.rb:52
884
+ msgid "filters matching %{pat}: "
885
+ msgstr ""
886
+
887
+ #: lib/rbot/core/userdata.rb:161
888
+ msgid "%{key} data for %{user}: %{data}"
889
+ msgstr "%{word} learned from %{user} on %{date}"
890
+
891
+ #: lib/rbot/core/userdata.rb:167
892
+ #, fuzzy
893
+ msgid "sorry, no %{key} data for %{user}"
894
+ msgstr "%{word} learned from %{user} on %{date}"
895
+
896
+ #: lib/rbot/core/utils/utils.rb:204
897
+ msgid "year"
898
+ msgstr "vuosi"
899
+
900
+ #: lib/rbot/core/utils/utils.rb:204
901
+ msgid "years"
902
+ msgstr "vuotta"
903
+
904
+ #: lib/rbot/core/utils/utils.rb:206
905
+ msgid "month"
906
+ msgstr "kuukausi"
907
+
908
+ #: lib/rbot/core/utils/utils.rb:206
909
+ msgid "months"
910
+ msgstr "kuukautta"
911
+
912
+ #: lib/rbot/core/utils/utils.rb:208
913
+ msgid "day"
914
+ msgstr "päivä"
915
+
916
+ #: lib/rbot/core/utils/utils.rb:208
917
+ msgid "days"
918
+ msgstr "päivää"
919
+
920
+ #: lib/rbot/core/utils/utils.rb:210
921
+ msgid "hour"
922
+ msgstr "tunti"
923
+
924
+ #: lib/rbot/core/utils/utils.rb:210
925
+ msgid "hours"
926
+ msgstr "tuntia"
927
+
928
+ #: lib/rbot/core/utils/utils.rb:212
929
+ msgid "minute"
930
+ msgstr "minuutti"
931
+
932
+ #: lib/rbot/core/utils/utils.rb:212
933
+ msgid "minutes"
934
+ msgstr "minuuttia"
935
+
936
+ #: lib/rbot/core/utils/utils.rb:214
937
+ msgid "second"
938
+ msgstr "sekunti"
939
+
940
+ #: lib/rbot/core/utils/utils.rb:214
941
+ msgid "seconds"
942
+ msgstr "sekuntia"
943
+
944
+ #: lib/rbot/core/utils/utils.rb:221
945
+ msgid " and "
946
+ msgstr " ja "
947
+
948
+ #: lib/rbot/core/utils/utils.rb:252
949
+ msgid "right now"
950
+ msgstr "tällä hetkellä"
951
+
952
+ #: lib/rbot/core/utils/utils.rb:256
953
+ msgid "%{d} from now"
954
+ msgstr "%{d} tästä hetkestä"
955
+
956
+ #: lib/rbot/core/utils/utils.rb:258
957
+ msgid "%{d} ago"
958
+ msgstr "%{d} sitten"
959
+
960
+ #: lib/rbot/core/utils/utils.rb:270
961
+ msgid "%{m} years"
962
+ msgstr "%{m} vuotta"
963
+
964
+ #: lib/rbot/core/utils/utils.rb:272
965
+ msgid "%{m} months"
966
+ msgstr "%{m} kuukautta"
967
+
968
+ #: lib/rbot/core/utils/utils.rb:274
969
+ msgid "%{m} weeks"
970
+ msgstr "%{m} viikkoa"
971
+
972
+ #: lib/rbot/core/utils/utils.rb:276
973
+ msgid "%{m} days"
974
+ msgstr "%{m} päivää"
975
+
976
+ #: lib/rbot/core/utils/utils.rb:278
977
+ msgid "%{m} hours"
978
+ msgstr "%{m} tuntia"
979
+
980
+ #: lib/rbot/core/utils/utils.rb:280
981
+ msgid "half an hour"
982
+ msgstr "puoli tuntia"
983
+
984
+ #: lib/rbot/core/utils/utils.rb:283
985
+ msgid "an hour"
986
+ msgstr "tunti"
987
+
988
+ #: lib/rbot/core/utils/utils.rb:285
989
+ msgid "an hour and a half"
990
+ msgstr "puolitoista tuntia"
991
+
992
+ #: lib/rbot/core/utils/utils.rb:287
993
+ msgid "%{m} minutes"
994
+ msgstr "%{m} minuuttia"
995
+
996
+ #: lib/rbot/core/utils/utils.rb:289
997
+ msgid "%{m} seconds"
998
+ msgstr "%{m} sekuntia"
999
+
1000
+ #: lib/rbot/core/utils/utils.rb:291
1001
+ msgid "one second"
1002
+ msgstr "sekunti"
1003
+
1004
+ #: lib/rbot/core/wordlist_ui.rb:10
1005
+ msgid "wordlist list [<pattern>] => list wordlists (matching <pattern>)"
1006
+ msgstr ""
1007
+
1008
+ #: lib/rbot/core/wordlist_ui.rb:16
1009
+ msgid "no wordlist found"
1010
+ msgstr ""
1011
+
1012
+ #: lib/rbot/core/wordlist_ui.rb:18
1013
+ msgid "Wordlists: %{found}"
1014
+ msgstr ""
1015
+
1016
+ #: lib/rbot/ircbot.rb:1325
1017
+ msgid "help topics: "
1018
+ msgstr ""
1019
+
1020
+ #: lib/rbot/ircbot.rb:1327
1021
+ msgid " (help <topic> for more info)"
1022
+ msgstr ""
1023
+
1024
+ #: lib/rbot/ircbot.rb:1330
1025
+ msgid "no help for topic %{topic}"
1026
+ msgstr ""
1027
+
1028
+ #: lib/rbot/ircbot.rb:1341
1029
+ msgid ""
1030
+ "Uptime %{up}, %{plug} plugins active, %{sent} lines sent, %{recv} received."
1031
+ msgstr ""
1032
+
1033
+ #: lib/rbot/plugins.rb:344
1034
+ msgid "incorrect usage, ask for help using '%{command}'"
1035
+ msgstr "incorrect usage, ask for help using '%{command}'"
1036
+
1037
+ #: lib/rbot/plugins.rb:707
1038
+ msgid "%{count} core module loaded"
1039
+ msgid_plural "%{count} core modules loaded"
1040
+ msgstr[0] "%{count} core module loaded"
1041
+ msgstr[1] "%{count} core modules loaded"
1042
+
1043
+ #: lib/rbot/plugins.rb:710
1044
+ msgid "%{count} core module: %{list}"
1045
+ msgid_plural "%{count} core modules: %{list}"
1046
+ msgstr[0] "%{count} core module: %{list}"
1047
+ msgstr[1] "%{count} core modules: %{list}"
1048
+
1049
+ #: lib/rbot/plugins.rb:716
1050
+ msgid "no core botmodules loaded"
1051
+ msgstr "no core botmodules loaded"
1052
+
1053
+ #: lib/rbot/plugins.rb:721
1054
+ msgid "%{count} plugin loaded"
1055
+ msgid_plural "%{count} plugins loaded"
1056
+ msgstr[0] "%{count} plugin loaded"
1057
+ msgstr[1] "%{count} plugins loaded"
1058
+
1059
+ #: lib/rbot/plugins.rb:724
1060
+ msgid "%{count} plugin: %{list}"
1061
+ msgid_plural "%{count} plugins: %{list}"
1062
+ msgstr[0] "%{count} plugin: %{list}"
1063
+ msgstr[1] "%{count} plugins: %{list}"
1064
+
1065
+ #: lib/rbot/plugins.rb:735
1066
+ msgid "%{highlight}%{count} plugin ignored%{highlight}"
1067
+ msgid_plural "%{highlight}%{count} plugins ignored%{highlight}"
1068
+ msgstr[0] "%{highlight}%{count} plugin ignored%{highlight}"
1069
+ msgstr[1] "%{highlight}%{count} plugins ignored%{highlight}"
1070
+
1071
+ #: lib/rbot/plugins.rb:740
1072
+ msgid ""
1073
+ "%{highlight}%{count} plugin ignored%{highlight}: use %{bold}%{command}%"
1074
+ "{bold} to see why"
1075
+ msgid_plural ""
1076
+ "%{highlight}%{count} plugins ignored%{highlight}: use %{bold}%{command}%"
1077
+ "{bold} to see why"
1078
+ msgstr[0] ""
1079
+ "%{highlight}%{count} plugin ignored%{highlight}: use %{bold}%{command}%"
1080
+ "{bold} to see why"
1081
+ msgstr[1] ""
1082
+ "%{highlight}%{count} plugins ignored%{highlight}: use %{bold}%{command}%"
1083
+ "{bold} to see why"
1084
+
1085
+ #: lib/rbot/plugins.rb:750
1086
+ msgid "%{highlight}%{count} plugin failed to load%{highlight}"
1087
+ msgid_plural "%{highlight}%{count} plugins failed to load%{highlight}"
1088
+ msgstr[0] "%{highlight}%{count} plugin failed to load%{highlight}"
1089
+ msgstr[1] "%{highlight}%{count} plugins failed to load%{highlight}"
1090
+
1091
+ #: lib/rbot/plugins.rb:755
1092
+ msgid ""
1093
+ "%{highlight}%{count} plugin failed to load%{highlight}: use %{bold}%"
1094
+ "{command}%{bold} to see why"
1095
+ msgid_plural ""
1096
+ "%{highlight}%{count} plugins failed to load%{highlight}: use %{bold}%"
1097
+ "{command}%{bold} to see why"
1098
+ msgstr[0] ""
1099
+ "%{highlight}%{count} plugin failed to load%{highlight}: use %{bold}%"
1100
+ "{command}%{bold} to see why"
1101
+ msgstr[1] ""
1102
+ "%{highlight}%{count} plugins failed to load%{highlight}: use %{bold}%"
1103
+ "{command}%{bold} to see why"
1104
+
1105
+ #: lib/rbot/plugins.rb:785
1106
+ msgid "no plugins failed to load"
1107
+ msgstr "no plugins failed to load"
1108
+
1109
+ #: lib/rbot/plugins.rb:787
1110
+ msgid ""
1111
+ "%{highlight}%{plugin}%{highlight} in %{dir} failed with error %{exception}: %"
1112
+ "{reason}"
1113
+ msgstr ""
1114
+ "%{highlight}%{plugin}%{highlight} in %{dir} failed with error %{exception}: %"
1115
+ "{reason}"
1116
+
1117
+ #: lib/rbot/plugins.rb:791
1118
+ msgid "at %{backtrace}"
1119
+ msgstr "at %{backtrace}"
1120
+
1121
+ #: lib/rbot/plugins.rb:797
1122
+ msgid "no plugins were ignored"
1123
+ msgstr "no plugins were ignored"
1124
+
1125
+ #: lib/rbot/plugins.rb:801
1126
+ msgid "overruled by previous"
1127
+ msgstr "overruled by previous"
1128
+
1129
+ #: lib/rbot/registry.rb:22
1130
+ msgid ""
1131
+ "upgrading old-style (rbot 0.9.5 or earlier) plugin registry to new format"
1132
+ msgstr ""
1133
+ "upgrading old-style (rbot 0.9.5 or earlier) plugin registry to new format"
1134
+
1135
+ #: lib/rbot/registry.rb:41
1136
+ msgid ""
1137
+ "upgrading previous (rbot 0.9.9 or earlier) plugin registry to new split "
1138
+ "format"
1139
+ msgstr ""
1140
+ "upgrading previous (rbot 0.9.9 or earlier) plugin registry to new split "
1141
+ "format"
1142
+
1143
+ #: lib/rbot/registry.rb:190
1144
+ msgid "marshal recovery failed, trying default"
1145
+ msgstr "marshal recovery failed, trying default"
1146
+
1147
+ #, fuzzy
1148
+ #~ msgid "on %{date}"
1149
+ #~ msgstr "can %{action}"
1150
+
1151
+ #~ msgid "nick <nick> => attempt to change nick to <nick>"
1152
+ #~ msgstr "nick <nick> => attempt to change nick to <nick>"