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
@@ -1,18 +1,18 @@
1
- #: data/rbot/plugins/grouphug.rb:21
1
+ #: data/rbot/plugins/grouphug.rb:23
2
2
  msgid ""
3
3
  "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess "
4
4
  "<number>' for specific one, 'confess <confession>' to share your own "
5
5
  "confession. Confessions must be at least 10 words."
6
6
  msgstr ""
7
7
 
8
- #: data/rbot/plugins/grouphug.rb:28
8
+ #: data/rbot/plugins/grouphug.rb:30
9
9
  msgid "Confession must be at least 10 words. You need %{m} more."
10
10
  msgstr ""
11
11
 
12
- #: data/rbot/plugins/grouphug.rb:42
12
+ #: data/rbot/plugins/grouphug.rb:44
13
13
  msgid "Confession posted: http://beta.grouphug.us/confessions/%{n}"
14
14
  msgstr ""
15
15
 
16
- #: data/rbot/plugins/grouphug.rb:44
16
+ #: data/rbot/plugins/grouphug.rb:46
17
17
  msgid "I couldn't share your confession."
18
18
  msgstr ""
@@ -0,0 +1,114 @@
1
+ # Chinese 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-01 23:50+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=INTEGER; plural=EXPRESSION;\n"
17
+
18
+ #: data/rbot/plugins/games/hangman.rb:245
19
+ msgid "hangman game plugin - topics: play, stop"
20
+ msgstr ""
21
+
22
+ #: data/rbot/plugins/games/hangman.rb:247
23
+ msgid ""
24
+ "hangman play on <channel> with word <word> => use in private chat with the "
25
+ "bot to start a game with custom word\n"
26
+ msgstr ""
27
+
28
+ #: data/rbot/plugins/games/hangman.rb:248
29
+ msgid ""
30
+ "hangman play random [with [max|min] length [<|>|== <length>]] => hangman "
31
+ "with a random word from %{site}\n"
32
+ msgstr ""
33
+
34
+ #: data/rbot/plugins/games/hangman.rb:249
35
+ msgid ""
36
+ "hangman play with wordlist <wordlist> => hangman with random word from "
37
+ "<wordlist>"
38
+ msgstr ""
39
+
40
+ #: data/rbot/plugins/games/hangman.rb:251
41
+ msgid "hangman stop => quits the current game"
42
+ msgstr ""
43
+
44
+ #: data/rbot/plugins/games/hangman.rb:253
45
+ msgid "define => seeks a definition for the previous answer using google"
46
+ msgstr ""
47
+
48
+ #: data/rbot/plugins/games/hangman.rb:264
49
+ msgid "no such wordlist"
50
+ msgstr ""
51
+
52
+ #: data/rbot/plugins/games/hangman.rb:285
53
+ msgid "suitable word not found in the set"
54
+ msgstr ""
55
+
56
+ #: data/rbot/plugins/games/hangman.rb:311
57
+ msgid "i'm not on that channel"
58
+ msgstr ""
59
+
60
+ #: data/rbot/plugins/games/hangman.rb:316
61
+ msgid "there's already a hangman game in progress on the channel"
62
+ msgstr ""
63
+
64
+ #: data/rbot/plugins/games/hangman.rb:320
65
+ msgid "%{nick} has started a hangman -- join the fun!"
66
+ msgstr ""
67
+
68
+ #: data/rbot/plugins/games/hangman.rb:344
69
+ msgid "oh well, the answer would've been %{answer}"
70
+ msgstr ""
71
+
72
+ #: data/rbot/plugins/games/hangman.rb:351
73
+ msgid "no ongoing game"
74
+ msgstr ""
75
+
76
+ #: data/rbot/plugins/games/hangman.rb:369
77
+ msgid "you nailed it!"
78
+ msgstr ""
79
+
80
+ #: data/rbot/plugins/games/hangman.rb:371
81
+ msgid "you've killed the poor guy :("
82
+ msgstr ""
83
+
84
+ #: data/rbot/plugins/games/hangman.rb:374
85
+ msgid "go %{b}again%{b}?"
86
+ msgstr ""
87
+
88
+ #: data/rbot/plugins/games/hangman.rb:391
89
+ msgid "%{sentence} %{again} %{scores}"
90
+ msgstr ""
91
+
92
+ #: data/rbot/plugins/games/hangman.rb:396
93
+ msgid "wondering what that means? try ´%{prefix}define´"
94
+ msgstr ""
95
+
96
+ #: data/rbot/plugins/games/hangman.rb:439
97
+ msgid "you got %{score} points after %{games} games"
98
+ msgstr ""
99
+
100
+ #: data/rbot/plugins/games/hangman.rb:444
101
+ msgid "you haven't played hangman, how about playing it right now? :)"
102
+ msgstr ""
103
+
104
+ #: data/rbot/plugins/games/hangman.rb:453
105
+ msgid "%{nick} has %{score} points after %{games} games"
106
+ msgstr ""
107
+
108
+ #: data/rbot/plugins/games/hangman.rb:459
109
+ msgid "%{nick} hasn't played hangman :("
110
+ msgstr ""
111
+
112
+ #: data/rbot/plugins/games/hangman.rb:471
113
+ msgid "%{games} games have been played on %{channel}"
114
+ msgstr ""
@@ -6,7 +6,7 @@
6
6
  msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: rbot\n"
9
- "POT-Creation-Date: 2008-06-20 01:49+0200\n"
9
+ "POT-Creation-Date: 2009-03-20 15:57+0100\n"
10
10
  "PO-Revision-Date: 2007-07-09 01:39-0400\n"
11
11
  "Last-Translator: Yaohan Chen <yaohan.chen@gmail.com>\n"
12
12
  "Language-Team: Chinese\n"
@@ -15,10 +15,10 @@ msgstr ""
15
15
  "Content-Transfer-Encoding: 8bit\n"
16
16
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
17
17
 
18
- #: data/rbot/plugins/keywords.rb:457
18
+ #: data/rbot/plugins/keywords.rb:461
19
19
  msgid "couldn't find keyword %{key}"
20
20
  msgstr ""
21
21
 
22
- #: data/rbot/plugins/keywords.rb:506
22
+ #: data/rbot/plugins/keywords.rb:510
23
23
  msgid "failed to export keywords as factoids (%{err})"
24
24
  msgstr ""
@@ -1,172 +1,370 @@
1
- #: data/rbot/plugins/lastfm.rb:32
1
+ #: data/rbot/plugins/lastfm.rb:36
2
2
  msgid " and %{n} more..."
3
3
  msgstr ""
4
4
 
5
- #: data/rbot/plugins/lastfm.rb:75
5
+ #: data/rbot/plugins/lastfm.rb:100
6
+ msgid ", where <period> can be one of: 3|6|12 months, a year"
7
+ msgstr ""
8
+
9
+ #: data/rbot/plugins/lastfm.rb:103
6
10
  msgid ""
7
11
  "lastfm [<num>] events in <location> => show information on events in or near "
8
12
  "<location>. lastfm [<num>] events by <artist/group> => show information on "
9
- "events by <artist/group>. The number of events <num> that can be displayed "
10
- "is optional, defaults to %{d} and cannot be higher than %{m}"
13
+ "events by <artist/group>. lastfm [<num>] events at <venue> => show "
14
+ "information on events at specific <venue>. The number of events <num> that "
15
+ "can be displayed is optional, defaults to %{d} and cannot be higher than %"
16
+ "{m}. Append 'sort by <what> [in <order> order]' to sort events. Events can "
17
+ "be sorted by attendance or date (default) in ascending or descending order."
11
18
  msgstr ""
12
19
 
13
- #: data/rbot/plugins/lastfm.rb:77
20
+ #: data/rbot/plugins/lastfm.rb:105
14
21
  msgid "lastfm artist <name> => show information on artist <name> from last.fm"
15
22
  msgstr ""
16
23
 
17
- #: data/rbot/plugins/lastfm.rb:79
24
+ #: data/rbot/plugins/lastfm.rb:107
18
25
  msgid ""
19
26
  "lastfm album <name> => show information on album <name> from last.fm [not "
20
27
  "implemented yet]"
21
28
  msgstr ""
22
29
 
23
- #: data/rbot/plugins/lastfm.rb:81
30
+ #: data/rbot/plugins/lastfm.rb:109
24
31
  msgid "lastfm track <name> => search tracks matching <name> on last.fm"
25
32
  msgstr ""
26
33
 
27
- #: data/rbot/plugins/lastfm.rb:83
34
+ #: data/rbot/plugins/lastfm.rb:111
28
35
  msgid ""
29
- "lastfm now [<user>] => show the now playing track from last.fm. np [<user>] "
36
+ "lastfm now [<nick>] => show the now playing track from last.fm. np [<nick>] "
30
37
  "does the same."
31
38
  msgstr ""
32
39
 
33
- #: data/rbot/plugins/lastfm.rb:85
40
+ #: data/rbot/plugins/lastfm.rb:113
34
41
  msgid ""
35
- "lastfm set nick <user> => associate your current irc nick with a last.fm "
36
- "user. lastfm set verb <present> <past> => set your preferred now playing "
37
- "verb. default \"listening\" and \"listened\"."
42
+ "lastfm set user <user> => associate your current irc nick with a last.fm "
43
+ "user. lastfm set verb <present>, <past> => set your preferred now playing/"
44
+ "just played verbs. default \"is listening to\" and \"listened to\"."
38
45
  msgstr ""
39
46
 
40
- #: data/rbot/plugins/lastfm.rb:87
47
+ #: data/rbot/plugins/lastfm.rb:115
41
48
  msgid ""
42
- "lastfm who [<nick>] => show who <nick> is at last.fm. if <nick> is empty, "
43
- "show who you are at lastfm."
49
+ "lastfm who [<nick>] => show who <nick> is on last.fm. if <nick> is empty, "
50
+ "show who you are on lastfm."
44
51
  msgstr ""
45
52
 
46
- #: data/rbot/plugins/lastfm.rb:89
53
+ #: data/rbot/plugins/lastfm.rb:117
47
54
  msgid ""
48
- "lastfm compare <nick1> <nick2> => show musical taste compatibility between "
49
- "nick1 and nick2."
55
+ "lastfm compare [<nick1>] <nick2> => show musical taste compatibility between "
56
+ "nick1 (or user if omitted) and nick2"
57
+ msgstr ""
58
+
59
+ #: data/rbot/plugins/lastfm.rb:119
60
+ msgid "lastfm shouts [<nick>] => show shouts to <nick>"
50
61
  msgstr ""
51
62
 
52
- #: data/rbot/plugins/lastfm.rb:91
63
+ #: data/rbot/plugins/lastfm.rb:121
64
+ msgid "lastfm friends [<nick>] => show <nick>'s friends"
65
+ msgstr ""
66
+
67
+ #: data/rbot/plugins/lastfm.rb:123
53
68
  msgid ""
54
- "lastfm [<user>] => show your or <user>'s now playing track at lastfm. np "
55
- "[<user>] => same as 'lastfm'. other topics: events, artist, album, track, "
56
- "now, set, who, compare"
69
+ "lastfm neighbors [<nick>] => show people who share similar musical taste as "
70
+ "<nick>"
57
71
  msgstr ""
58
72
 
59
- #: data/rbot/plugins/lastfm.rb:116
60
- msgid "Could not retrieve events"
73
+ #: data/rbot/plugins/lastfm.rb:125
74
+ msgid "lastfm loved[tracks] [<nick>] => show tracks that <nick> has loved"
61
75
  msgstr ""
62
76
 
63
- #: data/rbot/plugins/lastfm.rb:158 data/rbot/plugins/lastfm.rb:215
64
- #: data/rbot/plugins/lastfm.rb:274 data/rbot/plugins/lastfm.rb:296
65
- #: data/rbot/plugins/lastfm.rb:315 data/rbot/plugins/lastfm.rb:329
66
- msgid "last.fm parsing failed"
77
+ #: data/rbot/plugins/lastfm.rb:127
78
+ msgid ""
79
+ "lastfm recent[tracks] [<nick>] => show tracks that <nick> has recently played"
80
+ msgstr ""
81
+
82
+ #: data/rbot/plugins/lastfm.rb:129
83
+ msgid ""
84
+ "lastfm topalbums [<nick>] [over <period>] => show <nick>'s top albums%{p}"
85
+ msgstr ""
86
+
87
+ #: data/rbot/plugins/lastfm.rb:131
88
+ msgid ""
89
+ "lastfm topartists [<nick>] [over <period>] => show <nick>'s top artists%{p}"
67
90
  msgstr ""
68
91
 
69
- #: data/rbot/plugins/lastfm.rb:174
92
+ #: data/rbot/plugins/lastfm.rb:133
70
93
  msgid ""
71
- "%{u} doesn't exist at last.fm. Perhaps you need to: lastfm set <username>"
94
+ "lastfm toptracks [<nick>] [over <period>] => show <nick>'s top tracks%{p}"
72
95
  msgstr ""
73
96
 
74
- #: data/rbot/plugins/lastfm.rb:178
75
- msgid "Bad: %{e}"
97
+ #: data/rbot/plugins/lastfm.rb:135
98
+ msgid "lastfm weeklyalbumchart [<nick>] => show <nick>'s weekly album chart"
76
99
  msgstr ""
77
100
 
78
- #: data/rbot/plugins/lastfm.rb:187
101
+ #: data/rbot/plugins/lastfm.rb:137
102
+ msgid "lastfm weeklyartistchart [<nick>] => show <nick>'s weekly artist chart"
103
+ msgstr ""
104
+
105
+ #: data/rbot/plugins/lastfm.rb:139
106
+ msgid "lastfm weeklyartistchart [<nick>] => show <nick>'s weekly track chart"
107
+ msgstr ""
108
+
109
+ #: data/rbot/plugins/lastfm.rb:141
110
+ msgid ""
111
+ "last.fm plugin - topics: events, artist, album, track, now, set, who, "
112
+ "compare, shouts, friends, neighbors, (loved|recent)tracks, top(albums|tracks|"
113
+ "artists), weekly(album|artist|track)chart"
114
+ msgstr ""
115
+
116
+ #: data/rbot/plugins/lastfm.rb:193
117
+ msgid "no events found in %{location}"
118
+ msgstr ""
119
+
120
+ #: data/rbot/plugins/lastfm.rb:199
121
+ msgid "an error occurred looking for venue %{venue}: %{e}"
122
+ msgstr ""
123
+
124
+ #: data/rbot/plugins/lastfm.rb:206
125
+ msgid "no venue found matching %{venue}"
126
+ msgstr ""
127
+
128
+ #: data/rbot/plugins/lastfm.rb:211
129
+ msgid "no events found at %{venue}"
130
+ msgstr ""
131
+
132
+ #: data/rbot/plugins/lastfm.rb:214
133
+ msgid "no events found by %{artist}"
134
+ msgstr ""
135
+
136
+ #: data/rbot/plugins/lastfm.rb:217
137
+ msgid "%{user} is not attending any events"
138
+ msgstr ""
139
+
140
+ #: data/rbot/plugins/lastfm.rb:226
141
+ msgid "could not retrieve events"
142
+ msgstr ""
143
+
144
+ #: data/rbot/plugins/lastfm.rb:280 data/rbot/plugins/lastfm.rb:335
145
+ #: data/rbot/plugins/lastfm.rb:402 data/rbot/plugins/lastfm.rb:441
146
+ #: data/rbot/plugins/lastfm.rb:460 data/rbot/plugins/lastfm.rb:512
147
+ #: data/rbot/plugins/lastfm.rb:610
148
+ msgid "last.fm parsing failed"
149
+ msgstr ""
150
+
151
+ #: data/rbot/plugins/lastfm.rb:289
152
+ msgid "%{u} doesn't exist on last.fm"
153
+ msgstr ""
154
+
155
+ #: data/rbot/plugins/lastfm.rb:292 data/rbot/plugins/lastfm.rb:345
156
+ msgid "error: %{e}"
157
+ msgstr ""
158
+
159
+ #: data/rbot/plugins/lastfm.rb:300
79
160
  msgid "Super"
80
161
  msgstr ""
81
162
 
82
- #: data/rbot/plugins/lastfm.rb:189
163
+ #: data/rbot/plugins/lastfm.rb:302
83
164
  msgid "Very High"
84
165
  msgstr ""
85
166
 
86
- #: data/rbot/plugins/lastfm.rb:191
167
+ #: data/rbot/plugins/lastfm.rb:304
87
168
  msgid "High"
88
169
  msgstr ""
89
170
 
90
- #: data/rbot/plugins/lastfm.rb:193
171
+ #: data/rbot/plugins/lastfm.rb:306
91
172
  msgid "Medium"
92
173
  msgstr ""
93
174
 
94
- #: data/rbot/plugins/lastfm.rb:195
175
+ #: data/rbot/plugins/lastfm.rb:308
95
176
  msgid "Low"
96
177
  msgstr ""
97
178
 
98
- #: data/rbot/plugins/lastfm.rb:197
179
+ #: data/rbot/plugins/lastfm.rb:310
99
180
  msgid "Very Low"
100
181
  msgstr ""
101
182
 
102
- #: data/rbot/plugins/lastfm.rb:199
103
- msgid "%{a}'s and %{b}'s musical compatibility rating is: %{r}"
183
+ #: data/rbot/plugins/lastfm.rb:314
184
+ msgid " and music they have in common includes: %{artists}"
104
185
  msgstr ""
105
186
 
106
- #: data/rbot/plugins/lastfm.rb:229
107
- msgid "Error %{e}"
187
+ #: data/rbot/plugins/lastfm.rb:320
188
+ msgid ""
189
+ "%{a}'s and %{b}'s musical compatibility rating is %{bold}%{r}%{bold}%{common}"
108
190
  msgstr ""
109
191
 
110
- #: data/rbot/plugins/lastfm.rb:235
192
+ #: data/rbot/plugins/lastfm.rb:340
193
+ msgid ""
194
+ "%{user} doesn't exist on last.fm, perhaps they need to: lastfm user "
195
+ "<username>"
196
+ msgstr ""
197
+
198
+ #: data/rbot/plugins/lastfm.rb:351
111
199
  msgid "%{u} hasn't played anything recently"
112
200
  msgstr ""
113
201
 
114
- #: data/rbot/plugins/lastfm.rb:251
115
- msgid "listening"
202
+ #: data/rbot/plugins/lastfm.rb:362
203
+ msgid " [%{albumtext}, %{year}]"
116
204
  msgstr ""
117
205
 
118
- #: data/rbot/plugins/lastfm.rb:255
119
- msgid "%{u} is %{v} to \"%{t}\" by %{a} %{b}"
206
+ #: data/rbot/plugins/lastfm.rb:364
207
+ msgid " [%{albumtext}]"
120
208
  msgstr ""
121
209
 
122
- #: data/rbot/plugins/lastfm.rb:257
123
- msgid "listened"
210
+ #: data/rbot/plugins/lastfm.rb:376
211
+ msgid "is listening to"
124
212
  msgstr ""
125
213
 
126
- #: data/rbot/plugins/lastfm.rb:262
127
- msgid "%{u} %{v} to \"%{t}\" by %{a} %{b}%{p}"
214
+ #: data/rbot/plugins/lastfm.rb:380
215
+ msgid "%{u} %{v} \"%{t}\" by %{a}%{b}"
128
216
  msgstr ""
129
217
 
130
- #: data/rbot/plugins/lastfm.rb:269 data/rbot/plugins/lastfm.rb:290
131
- msgid "I had problems getting info for %{a}."
218
+ #: data/rbot/plugins/lastfm.rb:382
219
+ msgid "listened to"
132
220
  msgstr ""
133
221
 
134
- #: data/rbot/plugins/lastfm.rb:282
222
+ #: data/rbot/plugins/lastfm.rb:387
223
+ msgid "%{u} %{v} \"%{t}\" by %{a}%{b} %{p}"
224
+ msgstr ""
225
+
226
+ #: data/rbot/plugins/lastfm.rb:390 data/rbot/plugins/lastfm.rb:622
227
+ msgid "; see %{uri} for more"
228
+ msgstr ""
229
+
230
+ #: data/rbot/plugins/lastfm.rb:397 data/rbot/plugins/lastfm.rb:435
231
+ msgid "I had problems getting info for %{a}"
232
+ msgstr ""
233
+
234
+ #: data/rbot/plugins/lastfm.rb:418
235
+ msgid "%{b}%{a}%{b}"
236
+ msgstr ""
237
+
238
+ #: data/rbot/plugins/lastfm.rb:420
239
+ msgid "%{u}%{t}%{u}"
240
+ msgstr ""
241
+
242
+ #: data/rbot/plugins/lastfm.rb:421
135
243
  msgid ""
136
- "%{b}%{a}%{b} has been played %{c} times and is being listened to by %{l} "
137
- "people."
244
+ "%{b}%{a}%{b} <%{u}> has been played %{b}%{c}%{b} times and is being listened "
245
+ "to by %{b}%{l}%{b} people"
138
246
  msgstr ""
139
247
 
140
- #: data/rbot/plugins/lastfm.rb:305
248
+ #: data/rbot/plugins/lastfm.rb:423
249
+ msgid ". Tagged as: %{t}"
250
+ msgstr ""
251
+
252
+ #: data/rbot/plugins/lastfm.rb:425
253
+ msgid ". Similar artists: %{s}"
254
+ msgstr ""
255
+
256
+ #: data/rbot/plugins/lastfm.rb:450
141
257
  msgid "%{bold}%{t}%{bold} by %{bold}%{a}%{bold} (%{n} listeners)"
142
258
  msgstr ""
143
259
 
144
- #: data/rbot/plugins/lastfm.rb:318
260
+ #: data/rbot/plugins/lastfm.rb:463
145
261
  msgid "track %{a} not found"
146
262
  msgstr ""
147
263
 
148
- #: data/rbot/plugins/lastfm.rb:325
264
+ #: data/rbot/plugins/lastfm.rb:477
265
+ msgid ""
266
+ "%{b}%{name}%{b}, %{street}, %{u}%{city}%{u}, %{country}, see %{url} for more "
267
+ "info"
268
+ msgstr ""
269
+
270
+ #: data/rbot/plugins/lastfm.rb:501
271
+ msgid " and %{maps} for maps"
272
+ msgstr ""
273
+
274
+ #: data/rbot/plugins/lastfm.rb:508
149
275
  msgid "I had problems getting album info"
150
276
  msgstr ""
151
277
 
152
- #: data/rbot/plugins/lastfm.rb:347
278
+ #: data/rbot/plugins/lastfm.rb:530
153
279
  msgid "I couldn't locate: \"%{a}\" by %{r}"
154
280
  msgstr ""
155
281
 
156
- #: data/rbot/plugins/lastfm.rb:351
157
- msgid "The album \"%{a}\" by %{r} %{y}has been played %{c} times."
282
+ #: data/rbot/plugins/lastfm.rb:534
283
+ msgid "the album \"%{a}\" by %{r} %{y}has been played %{c} times"
158
284
  msgstr ""
159
285
 
160
- #: data/rbot/plugins/lastfm.rb:358
161
- msgid "Ok, I'll remember that %{n} is %{u} at last.fm"
286
+ #: data/rbot/plugins/lastfm.rb:541
287
+ msgid "okay, I'll remember that %{n} is %{u} on last.fm"
162
288
  msgstr ""
163
289
 
164
- #: data/rbot/plugins/lastfm.rb:367
165
- msgid "Ok, I'll remember that %{n} prefers %{r} and %{p}."
290
+ #: data/rbot/plugins/lastfm.rb:550
291
+ msgid "okay, I'll remember that %{n} prefers \"%{r}\" and \"%{p}\""
166
292
  msgstr ""
167
293
 
168
- #: data/rbot/plugins/lastfm.rb:381
294
+ #: data/rbot/plugins/lastfm.rb:562
295
+ msgid "%{nick} is %{user} on last.fm"
296
+ msgstr ""
297
+
298
+ #: data/rbot/plugins/lastfm.rb:567
169
299
  msgid ""
170
- "Sorry, I don't know who %{n} is at last.fm perhaps you need to: lastfm set "
171
- "<username>"
300
+ "sorry, I don't know who %{n} is on last.fm, perhaps they need to: lastfm set "
301
+ "user <username>"
302
+ msgstr ""
303
+
304
+ #: data/rbot/plugins/lastfm.rb:603
305
+ msgid "no response body"
306
+ msgstr ""
307
+
308
+ #: data/rbot/plugins/lastfm.rb:605
309
+ msgid "I had problems accessing last.fm: %{e}"
310
+ msgstr ""
311
+
312
+ #: data/rbot/plugins/lastfm.rb:630
313
+ msgid "%{user} has no friends :("
314
+ msgstr ""
315
+
316
+ #: data/rbot/plugins/lastfm.rb:632
317
+ msgid "%{user} has %{total} friends: %{friends}"
318
+ msgstr ""
319
+
320
+ #: data/rbot/plugins/lastfm.rb:634
321
+ msgid "%{user} has %{total} friends, including %{friends}%{seemore}"
322
+ msgstr ""
323
+
324
+ #: data/rbot/plugins/lastfm.rb:649
325
+ msgid "%{user} has not loved any tracks"
326
+ msgstr ""
327
+
328
+ #: data/rbot/plugins/lastfm.rb:651
329
+ msgid "%{user} has loved %{total} tracks: %{tracks}"
330
+ msgstr ""
331
+
332
+ #: data/rbot/plugins/lastfm.rb:653
333
+ msgid "%{user} has loved %{total} tracks, including %{tracks}%{seemore}"
334
+ msgstr ""
335
+
336
+ #: data/rbot/plugins/lastfm.rb:668
337
+ msgid "no one seems to share %{user}'s musical taste"
338
+ msgstr ""
339
+
340
+ #: data/rbot/plugins/lastfm.rb:670
341
+ msgid "%{user}'s musical neighbours are %{nbrs}"
342
+ msgstr ""
343
+
344
+ #: data/rbot/plugins/lastfm.rb:672
345
+ msgid "%{user}'s musical neighbours include %{nbrs}%{seemore}"
346
+ msgstr ""
347
+
348
+ #: data/rbot/plugins/lastfm.rb:697
349
+ msgid " or more"
350
+ msgstr ""
351
+
352
+ #: data/rbot/plugins/lastfm.rb:703
353
+ msgid "%{user} hasn't played anything recently"
354
+ msgstr ""
355
+
356
+ #: data/rbot/plugins/lastfm.rb:705
357
+ msgid "%{user} has recently played %{tracks}"
358
+ msgstr ""
359
+
360
+ #: data/rbot/plugins/lastfm.rb:711
361
+ msgid "there are no shouts for %{user}"
362
+ msgstr ""
363
+
364
+ #: data/rbot/plugins/lastfm.rb:714
365
+ msgid "<%{author}> %{body}"
366
+ msgstr ""
367
+
368
+ #: data/rbot/plugins/lastfm.rb:743
369
+ msgid "%{user} hasn't played anything in this period of time"
172
370
  msgstr ""