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
@@ -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: 2008-06-19 19:27+0100\n"
11
11
  "Last-Translator: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>\n"
12
12
  "Language-Team: it\n"
@@ -35,51 +35,51 @@ msgstr "%{cp} rimbalza la presa a %{np}"
35
35
  msgid "%{p} skips a turn!"
36
36
  msgstr "%{p} salta un turno!"
37
37
 
38
- #: data/rbot/plugins/games/uno.rb:366
38
+ #: data/rbot/plugins/games/uno.rb:380
39
39
  msgid "what cards were that again?"
40
40
  msgstr "che carte sono quelle?"
41
41
 
42
- #: data/rbot/plugins/games/uno.rb:386
42
+ #: data/rbot/plugins/games/uno.rb:400
43
43
  msgid "you can't play that card"
44
44
  msgstr "non puoi giocare quella carta"
45
45
 
46
- #: data/rbot/plugins/games/uno.rb:413
46
+ #: data/rbot/plugins/games/uno.rb:427
47
47
  msgid "%{p} plays %{card} twice!"
48
48
  msgstr "%{p} gioca %{card} due volte!"
49
49
 
50
- #: data/rbot/plugins/games/uno.rb:418
50
+ #: data/rbot/plugins/games/uno.rb:432
51
51
  msgid "%{p} plays %{card}"
52
52
  msgstr "%{p} gioca %{card}"
53
53
 
54
- #: data/rbot/plugins/games/uno.rb:421
54
+ #: data/rbot/plugins/games/uno.rb:435
55
55
  msgid "%{p} has %{uno}!"
56
56
  msgstr "%{p} ha %{uno}!"
57
57
 
58
- #: data/rbot/plugins/games/uno.rb:437
58
+ #: data/rbot/plugins/games/uno.rb:451
59
59
  msgid "%{p}, choose a color with: co r|b|g|y"
60
60
  msgstr "%{p}, scegli un colore con: co r|b|g|y"
61
61
 
62
- #: data/rbot/plugins/games/uno.rb:440
62
+ #: data/rbot/plugins/games/uno.rb:454
63
63
  msgid "you don't have two cards of that kind"
64
64
  msgstr "non hai due carte di quel tipo"
65
65
 
66
- #: data/rbot/plugins/games/uno.rb:443
66
+ #: data/rbot/plugins/games/uno.rb:457
67
67
  msgid "you don't have that card"
68
68
  msgstr "non hai quella carta"
69
69
 
70
- #: data/rbot/plugins/games/uno.rb:453
70
+ #: data/rbot/plugins/games/uno.rb:467
71
71
  msgid "%{cp} challenges %{lp}'s %{card}!"
72
72
  msgstr "%{cp} contesta il %{card} di %{lp}!"
73
73
 
74
- #: data/rbot/plugins/games/uno.rb:457
74
+ #: data/rbot/plugins/games/uno.rb:471
75
75
  msgid "%{p} has %{cards}"
76
76
  msgstr "%{p} ha %{cards}"
77
77
 
78
- #: data/rbot/plugins/games/uno.rb:469
78
+ #: data/rbot/plugins/games/uno.rb:483
79
79
  msgid "%{lp}'s move was legal, %{cp} must pick %{b}%{n}%{b} cards!"
80
80
  msgstr "la mossa di %{lp} era legale, %{cp} deve pescare %{b}%{n}%{b} carte!"
81
81
 
82
- #: data/rbot/plugins/games/uno.rb:478
82
+ #: data/rbot/plugins/games/uno.rb:492
83
83
  msgid ""
84
84
  "%{lp}'s move was %{b}not%{b} legal, %{lp} must pick %{b}%{n}%{b} cards and "
85
85
  "play again!"
@@ -87,141 +87,141 @@ msgstr ""
87
87
  "la mossa di %{lp} %{b}non%{b} era legale, %{lp} deve pescare %{b}%{n}%{b} "
88
88
  "carte e giocare di nuovo!"
89
89
 
90
- #: data/rbot/plugins/games/uno.rb:506
90
+ #: data/rbot/plugins/games/uno.rb:520
91
91
  msgid "%{p} passes turn, and has to pick %{b}%{n}%{b} cards!"
92
92
  msgstr "%{p} passa il turno e deve pescare %{b}%{n}%{b} carte!"
93
93
 
94
- #: data/rbot/plugins/games/uno.rb:513
94
+ #: data/rbot/plugins/games/uno.rb:527
95
95
  msgid "%{p} passes turn"
96
96
  msgstr "%{p} passa il turno"
97
97
 
98
- #: data/rbot/plugins/games/uno.rb:515
98
+ #: data/rbot/plugins/games/uno.rb:529
99
99
  msgid "you need to pick a card first"
100
100
  msgstr "devi pescare una carta prima"
101
101
 
102
- #: data/rbot/plugins/games/uno.rb:525
102
+ #: data/rbot/plugins/games/uno.rb:539
103
103
  msgid "you can't pick a color now, %{p}"
104
104
  msgstr "non puoi scegliere un colore ora, %{p}"
105
105
 
106
- #: data/rbot/plugins/games/uno.rb:540
106
+ #: data/rbot/plugins/games/uno.rb:554
107
107
  msgid "what color is that?"
108
108
  msgstr "che colore è?"
109
109
 
110
- #: data/rbot/plugins/games/uno.rb:543
110
+ #: data/rbot/plugins/games/uno.rb:557
111
111
  msgid "color is now %{c}"
112
112
  msgstr "il colore ora è %{c}"
113
113
 
114
- #: data/rbot/plugins/games/uno.rb:551
114
+ #: data/rbot/plugins/games/uno.rb:565
115
115
  msgid "This %{uno} game has been going on for %{time}"
116
116
  msgstr "Questa partita di %{uno} è cominciata %{time} fa"
117
117
 
118
- #: data/rbot/plugins/games/uno.rb:556
118
+ #: data/rbot/plugins/games/uno.rb:570
119
119
  msgid "The game hasn't started yet"
120
120
  msgstr "La partita non è ancora cominciata"
121
121
 
122
- #: data/rbot/plugins/games/uno.rb:561
122
+ #: data/rbot/plugins/games/uno.rb:575
123
123
  msgid "%{uno} playing turn: %{players}"
124
124
  msgstr "Turni a %{uno}: %{players}"
125
125
 
126
- #: data/rbot/plugins/games/uno.rb:570
126
+ #: data/rbot/plugins/games/uno.rb:584
127
127
  msgid "it's %{player}'s turn"
128
128
  msgstr "è il turno di %{player}"
129
129
 
130
- #: data/rbot/plugins/games/uno.rb:580
130
+ #: data/rbot/plugins/games/uno.rb:594
131
131
  msgid "next player must respond correctly or pick %{b}%{n}%{b} cards"
132
132
  msgstr ""
133
133
  "il prossimo giocatore deve rispondere correttamente o pescare %{b}%{n}%{b} "
134
134
  "carte"
135
135
 
136
- #: data/rbot/plugins/games/uno.rb:587
136
+ #: data/rbot/plugins/games/uno.rb:601
137
137
  msgid "Current discard: %{card} %{c}"
138
138
  msgstr "Scoperta: %{card} %{c}"
139
139
 
140
- #: data/rbot/plugins/games/uno.rb:595
140
+ #: data/rbot/plugins/games/uno.rb:610
141
141
  msgid "Your cards: %{cards}"
142
142
  msgstr "Le tue carte: %{cards}"
143
143
 
144
- #: data/rbot/plugins/games/uno.rb:611
144
+ #: data/rbot/plugins/games/uno.rb:626
145
145
  msgid "%{player} picks a card"
146
146
  msgstr "%{player} pesca una carta"
147
147
 
148
- #: data/rbot/plugins/games/uno.rb:621
148
+ #: data/rbot/plugins/games/uno.rb:636
149
149
  msgid "Shuffling discarded cards"
150
150
  msgstr "Rimescolo le carte scartate"
151
151
 
152
- #: data/rbot/plugins/games/uno.rb:624
152
+ #: data/rbot/plugins/games/uno.rb:639
153
153
  msgid "No more cards!"
154
154
  msgstr "Carte finite!"
155
155
 
156
- #: data/rbot/plugins/games/uno.rb:630
156
+ #: data/rbot/plugins/games/uno.rb:645
157
157
  msgid "You picked %{picked}"
158
158
  msgstr "Hai pescato %{picked}"
159
159
 
160
- #: data/rbot/plugins/games/uno.rb:637
160
+ #: data/rbot/plugins/games/uno.rb:652
161
161
  msgid "you're already in the game, %{p}"
162
162
  msgstr "stai già giocando, %{p}"
163
163
 
164
- #: data/rbot/plugins/games/uno.rb:644
164
+ #: data/rbot/plugins/games/uno.rb:659
165
165
  msgid "you dropped from the game, %{p}, you can't get back in"
166
166
  msgstr "sei uscito dal gioco, %{p}, non puoi rientrare"
167
167
 
168
- #: data/rbot/plugins/games/uno.rb:658
168
+ #: data/rbot/plugins/games/uno.rb:673
169
169
  msgid "%{p} joins this game of %{uno}"
170
170
  msgstr "%{p} gioca a questa partita di %{uno}"
171
171
 
172
- #: data/rbot/plugins/games/uno.rb:666
172
+ #: data/rbot/plugins/games/uno.rb:681
173
173
  msgid "game will start in 20 seconds"
174
174
  msgstr "la partita inizierà tra 20 secondi"
175
175
 
176
- #: data/rbot/plugins/games/uno.rb:677
176
+ #: data/rbot/plugins/games/uno.rb:692
177
177
  msgid "%{p} isn't playing %{uno}"
178
178
  msgstr "%{p} non sta giocando a %{uno}"
179
179
 
180
- #: data/rbot/plugins/games/uno.rb:682
180
+ #: data/rbot/plugins/games/uno.rb:697
181
181
  msgid "%{p} gives up this game of %{uno}"
182
182
  msgstr "%{p} abbanona questa partita di %{uno}"
183
183
 
184
- #: data/rbot/plugins/games/uno.rb:708
184
+ #: data/rbot/plugins/games/uno.rb:723
185
185
  msgid "%{p} is already playing %{uno} here"
186
186
  msgstr "%{p} sta già giocando ad %{uno} qui"
187
187
 
188
- #: data/rbot/plugins/games/uno.rb:718
188
+ #: data/rbot/plugins/games/uno.rb:733
189
189
  msgid "%{p} takes %{b}%{old}%{b}'s place at %{uno}"
190
190
  msgstr "%{p} prende il posto di %{b}%{old}%{b} per giocare a %{uno}"
191
191
 
192
- #: data/rbot/plugins/games/uno.rb:724
192
+ #: data/rbot/plugins/games/uno.rb:739
193
193
  msgid "%{b}%{old}%{b} isn't playing %{uno} here"
194
194
  msgstr "%{b}%{old}%{b} non sta giocando ad %{uno} qui"
195
195
 
196
- #: data/rbot/plugins/games/uno.rb:733
196
+ #: data/rbot/plugins/games/uno.rb:748
197
197
  msgid "%{uno} game halted after %{time}"
198
198
  msgstr "partita di %{uno} interrotta dopo %{time}"
199
199
 
200
- #: data/rbot/plugins/games/uno.rb:738
200
+ #: data/rbot/plugins/games/uno.rb:753
201
201
  msgid "%{uno} game halted before it could start"
202
202
  msgstr "partita di %{uno} interrotta prima che potesse cominciare"
203
203
 
204
- #: data/rbot/plugins/games/uno.rb:743
204
+ #: data/rbot/plugins/games/uno.rb:758
205
205
  msgid "%{uno} game finished after %{time}! The winner is %{p}"
206
206
  msgstr "partita di %{uno} finita dopo %{time}! Il vincitore è %{p}"
207
207
 
208
- #: data/rbot/plugins/games/uno.rb:750
208
+ #: data/rbot/plugins/games/uno.rb:769
209
209
  msgid "%{p} has to pick %{b}%{n}%{b} cards!"
210
210
  msgstr "%{p} deve pescare %{b}%{n}%{b} carte!"
211
211
 
212
- #: data/rbot/plugins/games/uno.rb:758
212
+ #: data/rbot/plugins/games/uno.rb:777
213
213
  msgid "%{p} still had %{cards}"
214
214
  msgstr "%{p} aveva ancora %{cards}"
215
215
 
216
- #: data/rbot/plugins/games/uno.rb:770
216
+ #: data/rbot/plugins/games/uno.rb:789
217
217
  msgid "%{p} wins with %{b}%{score}%{b} points!"
218
218
  msgstr "%{p} vince con %{b}%{score}%{b} punti!"
219
219
 
220
- #: data/rbot/plugins/games/uno.rb:800
220
+ #: data/rbot/plugins/games/uno.rb:819
221
221
  msgid "'jo' to join in"
222
222
  msgstr "'jo' per giocare"
223
223
 
224
- #: data/rbot/plugins/games/uno.rb:801
224
+ #: data/rbot/plugins/games/uno.rb:820
225
225
  msgid ""
226
226
  "'pl <card>' to play <card>: e.g. 'pl g7' to play Green 7, or 'pl rr' to play "
227
227
  "Red Reverse, or 'pl y2y2' to play both Yellow 2 cards"
@@ -229,15 +229,15 @@ msgstr ""
229
229
  "'pl <carta>' per giocare <carta>: e.g. 'pl g7' per giocare Green 7, o 'pl "
230
230
  "rr' per giocare Red Reverse, o 'pl y2y2' per giocare due carte Yellow 2"
231
231
 
232
- #: data/rbot/plugins/games/uno.rb:802
232
+ #: data/rbot/plugins/games/uno.rb:821
233
233
  msgid "'pe' to pick a card"
234
234
  msgstr "'pe' per pescare una carta"
235
235
 
236
- #: data/rbot/plugins/games/uno.rb:803
236
+ #: data/rbot/plugins/games/uno.rb:822
237
237
  msgid "'pa' to pass your turn"
238
238
  msgstr "'pa' per passare il turno"
239
239
 
240
- #: data/rbot/plugins/games/uno.rb:804
240
+ #: data/rbot/plugins/games/uno.rb:823
241
241
  msgid ""
242
242
  "'co <color>' to pick a color after playing a Wild: e.g. 'co g' to select "
243
243
  "Green (or 'pl w+4 g' to select the color when playing the Wild)"
@@ -246,31 +246,31 @@ msgstr ""
246
246
  "per scegliere Green (o 'pl w+4 g' per scegliere il colore quando si gioca il "
247
247
  "Wild)"
248
248
 
249
- #: data/rbot/plugins/games/uno.rb:805
249
+ #: data/rbot/plugins/games/uno.rb:824
250
250
  msgid "'ca' to show current cards"
251
251
  msgstr "'ca' per mostrare le carte attuali"
252
252
 
253
- #: data/rbot/plugins/games/uno.rb:806
253
+ #: data/rbot/plugins/games/uno.rb:825
254
254
  msgid "'cd' to show the current discard"
255
255
  msgstr "'cd' per mostrare la carta attualmente scoperta"
256
256
 
257
- #: data/rbot/plugins/games/uno.rb:807
257
+ #: data/rbot/plugins/games/uno.rb:826
258
258
  msgid "'ch' to challenge a Wild +4"
259
259
  msgstr "'ch' per contestare un Wild +4"
260
260
 
261
- #: data/rbot/plugins/games/uno.rb:808
261
+ #: data/rbot/plugins/games/uno.rb:827
262
262
  msgid "'od' to show the playing order"
263
263
  msgstr "'od' per mostrare l'ordine di gioco"
264
264
 
265
- #: data/rbot/plugins/games/uno.rb:809
265
+ #: data/rbot/plugins/games/uno.rb:828
266
266
  msgid "'ti' to show play time"
267
267
  msgstr "'ti' per mostrare il tempo di gioco"
268
268
 
269
- #: data/rbot/plugins/games/uno.rb:810
269
+ #: data/rbot/plugins/games/uno.rb:829
270
270
  msgid "'tu' to show whose turn it is"
271
271
  msgstr "'tu' per mostrare chi ha il turno"
272
272
 
273
- #: data/rbot/plugins/games/uno.rb:813
273
+ #: data/rbot/plugins/games/uno.rb:832
274
274
  msgid ""
275
275
  "A Wild +4 can only be played legally if you don't have normal (not special) "
276
276
  "cards of the current color. "
@@ -278,11 +278,11 @@ msgstr ""
278
278
  "Un Wild +4 può venir giocato legalmente solo se non si hanno carte normali "
279
279
  "(non speciali) del colore attuale. "
280
280
 
281
- #: data/rbot/plugins/games/uno.rb:814
281
+ #: data/rbot/plugins/games/uno.rb:833
282
282
  msgid "The next player can challenge a W+4 by using the 'ch' command. "
283
283
  msgstr "Il giocatore successivo può contestare un W+4 usando il comando 'ch'. "
284
284
 
285
- #: data/rbot/plugins/games/uno.rb:815
285
+ #: data/rbot/plugins/games/uno.rb:834
286
286
  msgid ""
287
287
  "If the W+4 play was illegal, the player who played it must pick the W+4, "
288
288
  "pick 4 cards from the stock, and play a legal card. "
@@ -290,13 +290,13 @@ msgstr ""
290
290
  "Se la giocata del W+4 era illegale, il giocatore che l'ha sceso deve "
291
291
  "riprendere il W+4, pescare 4 carte dal mazzo e giocare una carta valida. "
292
292
 
293
- #: data/rbot/plugins/games/uno.rb:816
293
+ #: data/rbot/plugins/games/uno.rb:835
294
294
  msgid ""
295
295
  "If the W+4 play was legal, the challenger must pick 6 cards instead of 4."
296
296
  msgstr ""
297
297
  "Se il W+4 era legale, chi l'ha contestata deve prendere 6 carte invece di 4."
298
298
 
299
- #: data/rbot/plugins/games/uno.rb:818
299
+ #: data/rbot/plugins/games/uno.rb:837
300
300
  msgid ""
301
301
  "play all your cards, one at a time, by matching either the color or the "
302
302
  "value of the currently discarded card. "
@@ -304,7 +304,7 @@ msgstr ""
304
304
  "giocare tutte le proprie carte, una alla volta, purché abbiano lo stesso "
305
305
  "colore o lo stesso valore dell'ultima carta scoperta. "
306
306
 
307
- #: data/rbot/plugins/games/uno.rb:819
307
+ #: data/rbot/plugins/games/uno.rb:838
308
308
  msgid ""
309
309
  "cards with special effects: Skip (next player skips a turn), Reverse "
310
310
  "(reverses the playing order), +2 (next player has to take 2 cards). "
@@ -313,7 +313,7 @@ msgstr ""
313
313
  "Reverse (l'ordine di gioco viene invertito), +2 (il giocatore successivo "
314
314
  "deve pescare 2 carte ). "
315
315
 
316
- #: data/rbot/plugins/games/uno.rb:820
316
+ #: data/rbot/plugins/games/uno.rb:839
317
317
  msgid ""
318
318
  "Wilds can be played on any card, and you must specify the color for the next "
319
319
  "card. "
@@ -321,7 +321,7 @@ msgstr ""
321
321
  "I Wild possono essere giocati su qualunque carta, e bisogna specificare il "
322
322
  "colore per la carta successiva. "
323
323
 
324
- #: data/rbot/plugins/games/uno.rb:821
324
+ #: data/rbot/plugins/games/uno.rb:840
325
325
  msgid ""
326
326
  "Wild +4 also forces the next player to take 4 cards, but it can only be "
327
327
  "played if you can't play a color card. "
@@ -329,7 +329,7 @@ msgstr ""
329
329
  "Il Wild +4 costringe inoltre il giocatore successivo a pescarei 4 cards, ma "
330
330
  "si può giocare solo se non si hanno carte del colore giusto. "
331
331
 
332
- #: data/rbot/plugins/games/uno.rb:822
332
+ #: data/rbot/plugins/games/uno.rb:841
333
333
  msgid ""
334
334
  "you can play another +2 or +4 card on a +2 card, and a +4 on a +4, forcing "
335
335
  "the first player who can't play one to pick the cumulative sum of all cards. "
@@ -338,7 +338,7 @@ msgstr ""
338
338
  "costringendo il primo giocatore che non può rispondere a pescare la somma di "
339
339
  "tutte le penalità giocate. "
340
340
 
341
- #: data/rbot/plugins/games/uno.rb:823
341
+ #: data/rbot/plugins/games/uno.rb:842
342
342
  msgid ""
343
343
  "you can also play a Reverse on a +2 or +4, bouncing the effect back to the "
344
344
  "previous player (that now comes next). "
@@ -346,7 +346,7 @@ msgstr ""
346
346
  "si può anche giocare un Reverse su un +2 o un +4, rimbalzando l'effetto al "
347
347
  "giocatore precedente (che ora viene dopo). "
348
348
 
349
- #: data/rbot/plugins/games/uno.rb:826
349
+ #: data/rbot/plugins/games/uno.rb:845
350
350
  msgid ""
351
351
  "The points won with a game of %{uno} are totalled from the cards remaining "
352
352
  "in the hands of the other players."
@@ -354,26 +354,42 @@ msgstr ""
354
354
  "I punti vinti ad una partita di %{uno} si ottengono sommando i punti delle "
355
355
  "carte rimaste in mano agli altri giocatori."
356
356
 
357
- #: data/rbot/plugins/games/uno.rb:827
357
+ #: data/rbot/plugins/games/uno.rb:846
358
358
  msgid ""
359
359
  "Each normal (not special) card is worth its face value (from 0 to 9 points)."
360
360
  msgstr ""
361
361
  "Ogni carta normale (non speciale) vale il proprio valore di facciata (da 0 a "
362
362
  "9 punti)."
363
363
 
364
- #: data/rbot/plugins/games/uno.rb:828
364
+ #: data/rbot/plugins/games/uno.rb:847
365
365
  msgid "Each colored special card (+2, Reverse, Skip) is worth 20 points."
366
366
  msgstr "Ogni carta speciale di un colore (+2, Reverse, Skip) vale 20 punti."
367
367
 
368
- #: data/rbot/plugins/games/uno.rb:829
368
+ #: data/rbot/plugins/games/uno.rb:848
369
369
  msgid "Each Wild and Wild +4 is worth 50 points."
370
370
  msgstr "Ogni Wild e Wild +4 vale 50 punti."
371
371
 
372
- #: data/rbot/plugins/games/uno.rb:833
372
+ #: data/rbot/plugins/games/uno.rb:853
373
+ msgid ""
374
+ "You can see the scoring table with 'uno top N' where N is the number of top "
375
+ "scores to show."
376
+ msgstr ""
377
+ "Puoi vedere la tabella dei punteggi con 'uno top N' dove N è il numero di "
378
+ "punteggi più alti da mostrare"
379
+
380
+ #: data/rbot/plugins/games/uno.rb:855
381
+ msgid ""
382
+ "You can see the winners table with 'uno topwin N' where N is the number of "
383
+ "top winners to show."
384
+ msgstr ""
385
+ "Puoi vedere la tabella dei vincitori con 'uno topwin N' dove N è il numero "
386
+ "di vincitori da mostrare"
387
+
388
+ #: data/rbot/plugins/games/uno.rb:858
373
389
  msgid "There are 108 cards in a standard %{uno} deck."
374
390
  msgstr "Ci sono 108 carte in un mazzo di %{uno}."
375
391
 
376
- #: data/rbot/plugins/games/uno.rb:834
392
+ #: data/rbot/plugins/games/uno.rb:859
377
393
  msgid ""
378
394
  "For each color (Blue, Green, Red, Yellow) there are 19 numbered cards (from "
379
395
  "0 to 9), with two of each number except for 0."
@@ -381,24 +397,24 @@ msgstr ""
381
397
  "Per ogni colore (Blue, Green, Red, Yellow) ci sono 19 carte numerate (da 0 a "
382
398
  "9), due di ciascun numero tranne per lo 0."
383
399
 
384
- #: data/rbot/plugins/games/uno.rb:835
400
+ #: data/rbot/plugins/games/uno.rb:860
385
401
  msgid ""
386
402
  "There are also 6 special cards for each color, two each of +2, Reverse, Skip."
387
403
  msgstr ""
388
404
  "Ci sono anche 6 carte speciali per ciascun colore, due ciascuno di +2, "
389
405
  "Reverse, Skip."
390
406
 
391
- #: data/rbot/plugins/games/uno.rb:836
407
+ #: data/rbot/plugins/games/uno.rb:861
392
408
  msgid "Finally, there are 4 Wild and 4 Wild +4 cards."
393
409
  msgstr "Infine, ci sono 4 Wild e 4 Wild +4."
394
410
 
395
- #: data/rbot/plugins/games/uno.rb:839
411
+ #: data/rbot/plugins/games/uno.rb:864
396
412
  msgid ""
397
413
  "The game manager (the user that started the game) can execute the following "
398
414
  "commands to manage it: "
399
415
  msgstr "L'utente che crea una partita può gestirla con i seguenti comandi: "
400
416
 
401
- #: data/rbot/plugins/games/uno.rb:841
417
+ #: data/rbot/plugins/games/uno.rb:866
402
418
  msgid ""
403
419
  "'uno drop <user>' to drop a user from the game (any user can drop itself "
404
420
  "using 'uno drop')"
@@ -406,7 +422,7 @@ msgstr ""
406
422
  "'uno drop <utente>' per espellere un utente dalla partita (chiunque può "
407
423
  "abbandonare da sé usando 'uno drop')"
408
424
 
409
- #: data/rbot/plugins/games/uno.rb:842
425
+ #: data/rbot/plugins/games/uno.rb:867
410
426
  msgid ""
411
427
  "'uno replace <old> [with] <new>' to replace a player with someone else "
412
428
  "(useful in case of disconnects)"
@@ -414,44 +430,45 @@ msgstr ""
414
430
  "'uno replace <vecchio> [with] <nuovo>' per rimpiazzare un giocatore con un "
415
431
  "altro (utile nel caso di disconnessioni)"
416
432
 
417
- #: data/rbot/plugins/games/uno.rb:843
433
+ #: data/rbot/plugins/games/uno.rb:868
418
434
  msgid "'uno transfer [to] <nick>' to transfer game ownership to someone else"
419
435
  msgstr ""
420
436
  "'uno transfer [to] <nick>' per trasferire la gestione della partita a "
421
437
  "qualcun altro"
422
438
 
423
- #: data/rbot/plugins/games/uno.rb:844
439
+ #: data/rbot/plugins/games/uno.rb:869
424
440
  msgid "'uno end' to end the game before its natural completion"
425
441
  msgstr "'uno end' per terminare la partita prima della sua fine regolare"
426
442
 
427
- #: data/rbot/plugins/games/uno.rb:847
443
+ #: data/rbot/plugins/games/uno.rb:872
428
444
  msgid ""
429
445
  "%{uno} game. !uno to start a game. see 'help uno rules' for the rules, 'help "
430
- "uno admin' for admin commands. In-game commands: %{cmds}."
446
+ "uno admin' for admin commands, 'help uno score' for scoring rules. In-game "
447
+ "commands: %{cmds}."
431
448
  msgstr ""
432
449
  "Gioco di %{uno}. !uno per cominciare una partita. vedi 'help uno rules' per "
433
- "le regole, 'help uno admin' per i comandi di amministrazione. Comandi di "
434
- "gioco: %{cmds}."
450
+ "le regole, 'help uno admin' per i comandi di amministrazione, 'help uno "
451
+ "score' per le regole sui punteggi. Comandi di gioco: %{cmds}."
435
452
 
436
- #: data/rbot/plugins/games/uno.rb:865
453
+ #: data/rbot/plugins/games/uno.rb:892
437
454
  msgid "you already picked a card"
438
455
  msgstr "hai già pescato una carta"
439
456
 
440
- #: data/rbot/plugins/games/uno.rb:872 data/rbot/plugins/games/uno.rb:879
441
- #: data/rbot/plugins/games/uno.rb:885 data/rbot/plugins/games/uno.rb:891
442
- #: data/rbot/plugins/games/uno.rb:907
457
+ #: data/rbot/plugins/games/uno.rb:899 data/rbot/plugins/games/uno.rb:906
458
+ #: data/rbot/plugins/games/uno.rb:912 data/rbot/plugins/games/uno.rb:918
459
+ #: data/rbot/plugins/games/uno.rb:934
443
460
  msgid "It's not your turn"
444
461
  msgstr "non è il tuo turno"
445
462
 
446
- #: data/rbot/plugins/games/uno.rb:904
463
+ #: data/rbot/plugins/games/uno.rb:931
447
464
  msgid "previous move cannot be challenged"
448
465
  msgstr "la mossa precedente non può essere contestata"
449
466
 
450
- #: data/rbot/plugins/games/uno.rb:918
467
+ #: data/rbot/plugins/games/uno.rb:945
451
468
  msgid "it's your turn, sleepyhead"
452
469
  msgstr "è il tuo turno, dormiglione"
453
470
 
454
- #: data/rbot/plugins/games/uno.rb:927
471
+ #: data/rbot/plugins/games/uno.rb:957
455
472
  msgid ""
456
473
  "There is already an %{uno} game running here, managed by %{who}. say 'jo' to "
457
474
  "join in"
@@ -459,104 +476,108 @@ msgstr ""
459
476
  "C'è già una partita di %{uno} in corso qui, gestita da %{who}. scrivi 'jo' "
460
477
  "per partecipare"
461
478
 
462
- #: data/rbot/plugins/games/uno.rb:935
479
+ #: data/rbot/plugins/games/uno.rb:965
463
480
  msgid "Ok, created %{uno} game on %{channel}, say 'jo' to join in"
464
481
  msgstr ""
465
482
  "Ok, creata partita di %{uno} in %{channel}, scrivi 'jo' per partecipare"
466
483
 
467
- #: data/rbot/plugins/games/uno.rb:943 data/rbot/plugins/games/uno.rb:963
468
- #: data/rbot/plugins/games/uno.rb:1099 data/rbot/plugins/games/uno.rb:1107
469
- #: data/rbot/plugins/games/uno.rb:1115
484
+ #: data/rbot/plugins/games/uno.rb:973 data/rbot/plugins/games/uno.rb:993
485
+ #: data/rbot/plugins/games/uno.rb:1129 data/rbot/plugins/games/uno.rb:1137
486
+ #: data/rbot/plugins/games/uno.rb:1145
470
487
  msgid "There is no %{uno} game running here"
471
488
  msgstr "Non ci sono partite di %{uno} in corso qui"
472
489
 
473
- #: data/rbot/plugins/games/uno.rb:953
490
+ #: data/rbot/plugins/games/uno.rb:983
474
491
  msgid "%{uno} game ownership transferred from %{old} to %{nick}"
475
492
  msgstr "gestione della partita di %{uno} trasferita da %{old} a %{nick}"
476
493
 
477
- #: data/rbot/plugins/games/uno.rb:957
494
+ #: data/rbot/plugins/games/uno.rb:987
478
495
  msgid "who is this %{nick} you want me to transfer game ownership to?"
479
496
  msgstr ""
480
497
  "e chi sarebbe questo %{nick} a cui vuoi che trasferisca la gestione della "
481
498
  "partita?"
482
499
 
483
- #: data/rbot/plugins/games/uno.rb:1041
500
+ #: data/rbot/plugins/games/uno.rb:1071
484
501
  msgid "%{nf} %{uno} games completed over %{np} games played. "
485
502
  msgstr "%{nf} partite di %{uno} completate su %{np} partite giocate. "
486
503
 
487
- #: data/rbot/plugins/games/uno.rb:1046
504
+ #: data/rbot/plugins/games/uno.rb:1076
488
505
  msgid "%{cgt} game time for completed games"
489
506
  msgstr "%{cgt} di tempo di gioco per le partite completate"
490
507
 
491
- #: data/rbot/plugins/games/uno.rb:1050
508
+ #: data/rbot/plugins/games/uno.rb:1080
492
509
  msgid " on %{tgt} total game time. "
493
510
  msgstr " su %{tgt} di tempo di gioco complessivo. "
494
511
 
495
- #: data/rbot/plugins/games/uno.rb:1056
512
+ #: data/rbot/plugins/games/uno.rb:1086
496
513
  msgid "%{avg} average game time for completed games"
497
514
  msgstr "%{avg} tempo medio di gioco per le partite completate"
498
515
 
499
- #: data/rbot/plugins/games/uno.rb:1059
516
+ #: data/rbot/plugins/games/uno.rb:1089
500
517
  msgid ", %{tavg} for all games"
501
518
  msgstr ", %{tavg} per tutte le partite"
502
519
 
503
- #: data/rbot/plugins/games/uno.rb:1064
520
+ #: data/rbot/plugins/games/uno.rb:1094
504
521
  msgid "nobody has played %{uno} on %{chan} yet"
505
522
  msgstr "nessuno ha giocato ad %{uno} su %{chan} ancora"
506
523
 
507
- #: data/rbot/plugins/games/uno.rb:1075
524
+ #: data/rbot/plugins/games/uno.rb:1105
508
525
  msgid "%{nick} never played %{uno} here"
509
526
  msgstr "%{nick} non ha mai giocato ad %{uno} qui"
510
527
 
511
- #: data/rbot/plugins/games/uno.rb:1084
528
+ #: data/rbot/plugins/games/uno.rb:1114
512
529
  msgid "%{nick} played %{np} %{uno} games here, "
513
530
  msgstr "%{nick} ha giocato %{np} partite di %{uno} qui, "
514
531
 
515
- #: data/rbot/plugins/games/uno.rb:1087
532
+ #: data/rbot/plugins/games/uno.rb:1117
516
533
  msgid "forfeited %{nf} games, "
517
534
  msgstr "lasciato %{nf} partite, "
518
535
 
519
- #: data/rbot/plugins/games/uno.rb:1088
536
+ #: data/rbot/plugins/games/uno.rb:1118
520
537
  msgid "won %{nw} games"
521
538
  msgstr "vinto %{nw} partite"
522
539
 
523
- #: data/rbot/plugins/games/uno.rb:1090
540
+ #: data/rbot/plugins/games/uno.rb:1120
524
541
  msgid " with %{score} total points"
525
542
  msgstr " con %{score} punti totali"
526
543
 
527
- #: data/rbot/plugins/games/uno.rb:1092
544
+ #: data/rbot/plugins/games/uno.rb:1122
528
545
  msgid " and an average of %{avg} points per opponent"
529
546
  msgstr " ed una media di %{avg} punti per avversario"
530
547
 
531
- #: data/rbot/plugins/games/uno.rb:1119
548
+ #: data/rbot/plugins/games/uno.rb:1149
532
549
  msgid "%{num} cards in stock: %{stock}"
533
550
  msgstr "%{num} carte nel mazzo: %{stock}"
534
551
 
535
- #: data/rbot/plugins/games/uno.rb:1135
552
+ #: data/rbot/plugins/games/uno.rb:1165
553
+ msgid "no %{uno} games were completed here"
554
+ msgstr "nessuna partita di %{uno} è stata completata qui"
555
+
556
+ #: data/rbot/plugins/games/uno.rb:1173
536
557
  msgid "%{uno} %{num} highest scores: "
537
558
  msgstr "%{uno} %{num} punteggi migliori: "
538
559
 
539
- #: data/rbot/plugins/games/uno.rb:1144
560
+ #: data/rbot/plugins/games/uno.rb:1182
540
561
  msgid "%{i}. %{b}%{nick}%{b} with %{b}%{score}%{b} points"
541
562
  msgstr "%{i}. %{b}%{nick}%{b} con %{b}%{score}%{b} punti"
542
563
 
543
- #: data/rbot/plugins/games/uno.rb:1151 data/rbot/plugins/games/uno.rb:1173
564
+ #: data/rbot/plugins/games/uno.rb:1189 data/rbot/plugins/games/uno.rb:1211
544
565
  msgid "%{i}. %{nick} ( %{score} )"
545
566
  msgstr "%{i}. %{nick} ( %{score} )"
546
567
 
547
- #: data/rbot/plugins/games/uno.rb:1157
568
+ #: data/rbot/plugins/games/uno.rb:1195
548
569
  msgid "%{uno} %{num} most wins: "
549
570
  msgstr "%{uno} %{num} maggior numero di vittorie: "
550
571
 
551
- #: data/rbot/plugins/games/uno.rb:1166
572
+ #: data/rbot/plugins/games/uno.rb:1204
552
573
  msgid "%{i}. %{b}%{nick}%{b} with %{b}%{score}%{b} wins"
553
574
  msgstr "%{i}. %{b}%{nick}%{b} con %{b}%{score}%{b} vittorie"
554
575
 
555
- #: data/rbot/plugins/games/uno.rb:1179
576
+ #: data/rbot/plugins/games/uno.rb:1217
556
577
  msgid "uh, what kind of score list did you want, again?"
557
578
  msgstr "uh, che tipo di punteggi volevi vedere?"
558
579
 
559
- #: data/rbot/plugins/games/uno.rb:1180
580
+ #: data/rbot/plugins/games/uno.rb:1218
560
581
  msgid ""
561
582
  " I can only show the top scores (with top) and the most wins (with topwin)"
562
583
  msgstr ""