rbot 0.9.10 → 0.9.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (706) hide show
  1. data/AUTHORS +22 -4
  2. data/COPYING +5 -18
  3. data/ChangeLog +396 -0
  4. data/README +23 -25
  5. data/REQUIREMENTS +58 -12
  6. data/Rakefile +215 -0
  7. data/bin/rbot +47 -25
  8. data/bin/rbot-remote +76 -0
  9. data/data/rbot/languages/french.lang +5 -5
  10. data/data/rbot/languages/german.lang +4 -4
  11. data/data/rbot/languages/italian.lang +53 -0
  12. data/data/rbot/languages/japanese.lang +43 -0
  13. data/data/rbot/languages/russian.lang +60 -60
  14. data/data/rbot/languages/traditional_chinese.lang +75 -0
  15. data/data/rbot/plugins/alias.rb +192 -0
  16. data/data/rbot/plugins/autoop.rb +74 -37
  17. data/data/rbot/plugins/autorejoin.rb +15 -5
  18. data/data/rbot/plugins/bans.rb +454 -150
  19. data/data/rbot/plugins/bash.rb +173 -31
  20. data/data/rbot/plugins/botsnack.rb +37 -0
  21. data/data/rbot/plugins/cal.rb +11 -2
  22. data/data/rbot/plugins/chanserv.rb +132 -0
  23. data/data/rbot/plugins/chucknorris.rb +2 -2
  24. data/data/rbot/plugins/chucknorris.yml.gz +0 -0
  25. data/data/rbot/plugins/debugger.rb +136 -0
  26. data/data/rbot/plugins/deepthoughts.rb +89 -95
  27. data/data/rbot/plugins/delicious.rb +109 -0
  28. data/data/rbot/plugins/dice.rb +77 -25
  29. data/data/rbot/plugins/dict.rb +243 -0
  30. data/data/rbot/plugins/dictclient.rb +211 -0
  31. data/data/rbot/plugins/digg.rb +2 -2
  32. data/data/rbot/plugins/excuse.rb +4 -4
  33. data/data/rbot/plugins/factoids.rb +506 -0
  34. data/data/rbot/plugins/figlet.rb +127 -18
  35. data/data/rbot/plugins/fish.rb +93 -33
  36. data/data/rbot/plugins/forecast.rb +40 -27
  37. data/data/rbot/plugins/fortune.rb +86 -11
  38. data/data/rbot/plugins/freshmeat.rb +46 -12
  39. data/data/rbot/plugins/games/azgame.rb +565 -0
  40. data/data/rbot/plugins/games/quiz.rb +961 -0
  41. data/data/rbot/plugins/games/roshambo.rb +62 -0
  42. data/data/rbot/plugins/{roulette.rb → games/roulette.rb} +58 -8
  43. data/data/rbot/plugins/games/shiritori.rb +485 -0
  44. data/data/rbot/plugins/games/uno.rb +1205 -0
  45. data/data/rbot/plugins/games/wheelfortune.rb +615 -0
  46. data/data/rbot/plugins/grouphug.rb +76 -22
  47. data/data/rbot/plugins/hl2.rb +97 -0
  48. data/data/rbot/plugins/host.rb +10 -1
  49. data/data/rbot/plugins/httpd.rb.disabled +1 -0
  50. data/data/rbot/plugins/imdb.rb +511 -47
  51. data/data/rbot/plugins/insult.rb +32 -37
  52. data/data/rbot/plugins/iplookup.rb +224 -224
  53. data/data/rbot/plugins/karma.rb +45 -21
  54. data/data/rbot/plugins/keywords.rb +258 -160
  55. data/data/rbot/plugins/lart.rb +126 -95
  56. data/data/rbot/plugins/lastfm.rb +421 -12
  57. data/data/rbot/plugins/linkbot.rb +75 -0
  58. data/data/rbot/plugins/markov.rb +103 -46
  59. data/data/rbot/plugins/math.rb +6 -5
  60. data/data/rbot/plugins/modes.rb +114 -0
  61. data/data/rbot/plugins/nickrecover.rb +97 -0
  62. data/data/rbot/plugins/nickserv.rb +111 -48
  63. data/data/rbot/plugins/nslookup.rb +15 -19
  64. data/data/rbot/plugins/plugin.header +11 -0
  65. data/data/rbot/plugins/quakeauth.rb +74 -11
  66. data/data/rbot/plugins/quotes.rb +189 -233
  67. data/data/rbot/plugins/reaction.rb +415 -0
  68. data/data/rbot/plugins/remind.rb +11 -15
  69. data/data/rbot/plugins/remotectl.rb +29 -0
  70. data/data/rbot/plugins/ri.rb +74 -0
  71. data/data/rbot/plugins/rot13.rb +16 -1
  72. data/data/rbot/plugins/rss.rb +1219 -585
  73. data/data/rbot/plugins/salut.rb +226 -0
  74. data/data/rbot/plugins/script.rb +184 -0
  75. data/data/rbot/plugins/search.rb +233 -0
  76. data/data/rbot/plugins/seen.rb +44 -40
  77. data/data/rbot/plugins/shortenurls.rb +93 -0
  78. data/data/rbot/plugins/slashdot.rb +49 -11
  79. data/data/rbot/plugins/spell.rb +37 -27
  80. data/data/rbot/plugins/theyfightcrime.rb +36 -39
  81. data/data/rbot/plugins/threat.rb +25 -22
  82. data/data/rbot/plugins/time.rb +135 -0
  83. data/data/rbot/plugins/topic.rb +107 -50
  84. data/data/rbot/plugins/translator.rb +360 -0
  85. data/data/rbot/plugins/tube.rb +28 -40
  86. data/data/rbot/plugins/twitter.rb +187 -0
  87. data/data/rbot/plugins/urban.rb +62 -53
  88. data/data/rbot/plugins/url.rb +193 -409
  89. data/data/rbot/plugins/usermodes.rb +26 -0
  90. data/data/rbot/plugins/wall.rb +60 -0
  91. data/data/rbot/plugins/weather.rb +254 -598
  92. data/data/rbot/plugins/wow.rb +41 -37
  93. data/data/rbot/plugins/wserver.rb +17 -25
  94. data/data/rbot/plugins/youtube.rb +237 -0
  95. data/data/rbot/templates/lart/{larts → larts-english} +0 -0
  96. data/data/rbot/templates/lart/larts-italian +25 -0
  97. data/data/rbot/templates/lart/larts-japanese +10 -0
  98. data/data/rbot/templates/lart/{praises → praises-english} +0 -0
  99. data/data/rbot/templates/lart/praises-italian +4 -0
  100. data/data/rbot/templates/lart/praises-japanese +3 -0
  101. data/data/rbot/templates/quiz/win_messages +11 -0
  102. data/data/rbot/templates/salut/salut-english +40 -0
  103. data/data/rbot/templates/salut/salut-french +29 -0
  104. data/data/rbot/templates/salut/salut-italian +51 -0
  105. data/data/rbot/templates/salut/salut-japanese +31 -0
  106. data/lib/rbot/botuser.rb +940 -0
  107. data/lib/rbot/config-compat.rb +23 -0
  108. data/lib/rbot/config.rb +211 -276
  109. data/lib/rbot/core/auth.rb +1063 -0
  110. data/lib/rbot/core/basics.rb +214 -0
  111. data/lib/rbot/core/config.rb +330 -0
  112. data/lib/rbot/core/filters_ui.rb +64 -0
  113. data/lib/rbot/core/irclog.rb +292 -0
  114. data/lib/rbot/core/remote.rb +401 -0
  115. data/lib/rbot/core/unicode.rb +91 -0
  116. data/lib/rbot/core/userdata.rb +200 -0
  117. data/lib/rbot/core/utils/extends.rb +444 -0
  118. data/lib/rbot/core/utils/filters.rb +154 -0
  119. data/lib/rbot/core/utils/httputil.rb +689 -0
  120. data/lib/rbot/core/utils/utils.rb +717 -0
  121. data/lib/rbot/dbhash.rb +30 -9
  122. data/lib/rbot/irc.rb +1966 -0
  123. data/lib/rbot/ircbot.rb +816 -675
  124. data/lib/rbot/ircsocket.rb +246 -232
  125. data/lib/rbot/language.rb +86 -8
  126. data/lib/rbot/load-gettext.rb +154 -0
  127. data/lib/rbot/maskdb.rb +162 -0
  128. data/lib/rbot/message.rb +392 -65
  129. data/lib/rbot/messagemapper.rb +438 -94
  130. data/lib/rbot/pkgconfig.rb +6 -0
  131. data/lib/rbot/plugins.rb +713 -172
  132. data/lib/rbot/post-config.rb +1 -0
  133. data/lib/rbot/rbotconfig.rb +31 -12
  134. data/lib/rbot/registry.rb +79 -48
  135. data/lib/rbot/rfc2812.rb +927 -519
  136. data/lib/rbot/timer.rb +232 -167
  137. data/po/en_US/rbot-alias.po +82 -0
  138. data/po/en_US/rbot-autoop.po +0 -0
  139. data/po/en_US/rbot-autorejoin.po +0 -0
  140. data/po/en_US/rbot-azgame.po +200 -0
  141. data/po/en_US/rbot-bans.po +0 -0
  142. data/po/en_US/rbot-bash.po +0 -0
  143. data/po/en_US/rbot-botsnack.po +0 -0
  144. data/po/en_US/rbot-cal.po +3 -0
  145. data/po/en_US/rbot-chanserv.po +0 -0
  146. data/po/en_US/rbot-chucknorris.po +0 -0
  147. data/po/en_US/rbot-debugger.po +0 -0
  148. data/po/en_US/rbot-deepthoughts.po +0 -0
  149. data/po/en_US/rbot-delicious.po +0 -0
  150. data/po/en_US/rbot-dice.po +0 -0
  151. data/po/en_US/rbot-dict.po +0 -0
  152. data/po/en_US/rbot-dictclient.po +124 -0
  153. data/po/en_US/rbot-digg.po +0 -0
  154. data/po/en_US/rbot-eightball.po +0 -0
  155. data/po/en_US/rbot-excuse.po +0 -0
  156. data/po/en_US/rbot-factoids.po +107 -0
  157. data/po/en_US/rbot-figlet.po +36 -0
  158. data/po/en_US/rbot-fish.po +0 -0
  159. data/po/en_US/rbot-forecast.po +0 -0
  160. data/po/en_US/rbot-fortune.po +0 -0
  161. data/po/en_US/rbot-freshmeat.po +0 -0
  162. data/po/en_US/rbot-grouphug.po +18 -0
  163. data/po/en_US/rbot-hl2.po +0 -0
  164. data/po/en_US/rbot-host.po +3 -0
  165. data/po/en_US/rbot-imdb.po +0 -0
  166. data/po/en_US/rbot-insult.po +0 -0
  167. data/po/en_US/rbot-iplookup.po +0 -0
  168. data/po/en_US/rbot-karma.po +0 -0
  169. data/po/en_US/rbot-keywords.po +24 -0
  170. data/po/en_US/rbot-lart.po +0 -0
  171. data/po/en_US/rbot-lastfm.po +172 -0
  172. data/po/en_US/rbot-linkbot.po +0 -0
  173. data/po/en_US/rbot-markov.po +20 -0
  174. data/po/en_US/rbot-math.po +0 -0
  175. data/po/en_US/rbot-modes.po +0 -0
  176. data/po/en_US/rbot-nickrecover.po +40 -0
  177. data/po/en_US/rbot-nickserv.po +104 -0
  178. data/po/en_US/rbot-nslookup.po +0 -0
  179. data/po/en_US/rbot-quakeauth.po +0 -0
  180. data/po/en_US/rbot-quiz.po +0 -0
  181. data/po/en_US/rbot-quotes.po +108 -0
  182. data/po/en_US/rbot-reaction.po +0 -0
  183. data/po/en_US/rbot-remind.po +0 -0
  184. data/po/en_US/rbot-remotectl.po +0 -0
  185. data/po/en_US/rbot-ri.po +0 -0
  186. data/po/en_US/rbot-roshambo.po +0 -0
  187. data/po/en_US/rbot-rot13.po +0 -0
  188. data/po/en_US/rbot-roulette.po +0 -0
  189. data/po/en_US/rbot-rss.po +20 -0
  190. data/po/en_US/rbot-salut.po +0 -0
  191. data/po/en_US/rbot-script.po +0 -0
  192. data/po/en_US/rbot-search.po +0 -0
  193. data/po/en_US/rbot-seen.po +0 -0
  194. data/po/en_US/rbot-shiritori.po +113 -0
  195. data/po/en_US/rbot-shortenurls.po +0 -0
  196. data/po/en_US/rbot-slashdot.po +0 -0
  197. data/po/en_US/rbot-spell.po +54 -0
  198. data/po/en_US/rbot-theyfightcrime.po +0 -0
  199. data/po/en_US/rbot-threat.po +0 -0
  200. data/po/en_US/rbot-time.po +0 -0
  201. data/po/en_US/rbot-topic.po +0 -0
  202. data/po/en_US/rbot-translator.po +77 -0
  203. data/po/en_US/rbot-tube.po +0 -0
  204. data/po/en_US/rbot-twitter.po +24 -0
  205. data/po/en_US/rbot-uno.po +512 -0
  206. data/po/en_US/rbot-urban.po +0 -0
  207. data/po/en_US/rbot-url.po +0 -0
  208. data/po/en_US/rbot-usermodes.po +0 -0
  209. data/po/en_US/rbot-wall.po +33 -0
  210. data/po/en_US/rbot-weather.po +0 -0
  211. data/po/en_US/rbot-wheelfortune.po +205 -0
  212. data/po/en_US/rbot-wow.po +0 -0
  213. data/po/en_US/rbot-wserver.po +0 -0
  214. data/po/en_US/rbot-youtube.po +58 -0
  215. data/po/en_US/rbot.po +1097 -0
  216. data/po/fr/rbot-alias.po +97 -0
  217. data/po/fr/rbot-autoop.po +0 -0
  218. data/po/fr/rbot-autorejoin.po +0 -0
  219. data/po/fr/rbot-azgame.po +204 -0
  220. data/po/fr/rbot-bans.po +0 -0
  221. data/po/fr/rbot-bash.po +0 -0
  222. data/po/fr/rbot-botsnack.po +0 -0
  223. data/po/fr/rbot-cal.po +3 -0
  224. data/po/fr/rbot-chanserv.po +0 -0
  225. data/po/fr/rbot-chucknorris.po +0 -0
  226. data/po/fr/rbot-debugger.po +0 -0
  227. data/po/fr/rbot-deepthoughts.po +0 -0
  228. data/po/fr/rbot-delicious.po +0 -0
  229. data/po/fr/rbot-dice.po +0 -0
  230. data/po/fr/rbot-dict.po +0 -0
  231. data/po/fr/rbot-dictclient.po +134 -0
  232. data/po/fr/rbot-digg.po +0 -0
  233. data/po/fr/rbot-eightball.po +0 -0
  234. data/po/fr/rbot-excuse.po +0 -0
  235. data/po/fr/rbot-factoids.po +111 -0
  236. data/po/fr/rbot-figlet.po +37 -0
  237. data/po/fr/rbot-fish.po +0 -0
  238. data/po/fr/rbot-forecast.po +0 -0
  239. data/po/fr/rbot-fortune.po +0 -0
  240. data/po/fr/rbot-freshmeat.po +0 -0
  241. data/po/fr/rbot-grouphug.po +18 -0
  242. data/po/fr/rbot-hl2.po +0 -0
  243. data/po/fr/rbot-host.po +3 -0
  244. data/po/fr/rbot-imdb.po +0 -0
  245. data/po/fr/rbot-insult.po +0 -0
  246. data/po/fr/rbot-iplookup.po +0 -0
  247. data/po/fr/rbot-karma.po +0 -0
  248. data/po/fr/rbot-keywords.po +24 -0
  249. data/po/fr/rbot-lart.po +0 -0
  250. data/po/fr/rbot-lastfm.po +172 -0
  251. data/po/fr/rbot-linkbot.po +0 -0
  252. data/po/fr/rbot-markov.po +20 -0
  253. data/po/fr/rbot-math.po +0 -0
  254. data/po/fr/rbot-modes.po +0 -0
  255. data/po/fr/rbot-nickrecover.po +36 -0
  256. data/po/fr/rbot-nickserv.po +116 -0
  257. data/po/fr/rbot-nslookup.po +0 -0
  258. data/po/fr/rbot-quakeauth.po +0 -0
  259. data/po/fr/rbot-quiz.po +0 -0
  260. data/po/fr/rbot-quotes.po +138 -0
  261. data/po/fr/rbot-reaction.po +0 -0
  262. data/po/fr/rbot-remind.po +0 -0
  263. data/po/fr/rbot-remotectl.po +0 -0
  264. data/po/fr/rbot-ri.po +0 -0
  265. data/po/fr/rbot-roshambo.po +0 -0
  266. data/po/fr/rbot-rot13.po +0 -0
  267. data/po/fr/rbot-roulette.po +0 -0
  268. data/po/fr/rbot-rss.po +20 -0
  269. data/po/fr/rbot-salut.po +0 -0
  270. data/po/fr/rbot-script.po +0 -0
  271. data/po/fr/rbot-search.po +0 -0
  272. data/po/fr/rbot-seen.po +0 -0
  273. data/po/fr/rbot-shiritori.po +119 -0
  274. data/po/fr/rbot-shortenurls.po +0 -0
  275. data/po/fr/rbot-slashdot.po +0 -0
  276. data/po/fr/rbot-spell.po +56 -0
  277. data/po/fr/rbot-theyfightcrime.po +0 -0
  278. data/po/fr/rbot-threat.po +0 -0
  279. data/po/fr/rbot-time.po +0 -0
  280. data/po/fr/rbot-topic.po +0 -0
  281. data/po/fr/rbot-translator.po +90 -0
  282. data/po/fr/rbot-tube.po +0 -0
  283. data/po/fr/rbot-twitter.po +24 -0
  284. data/po/fr/rbot-uno.po +521 -0
  285. data/po/fr/rbot-urban.po +0 -0
  286. data/po/fr/rbot-url.po +0 -0
  287. data/po/fr/rbot-usermodes.po +0 -0
  288. data/po/fr/rbot-wall.po +33 -0
  289. data/po/fr/rbot-weather.po +0 -0
  290. data/po/fr/rbot-wheelfortune.po +255 -0
  291. data/po/fr/rbot-wow.po +0 -0
  292. data/po/fr/rbot-wserver.po +0 -0
  293. data/po/fr/rbot-youtube.po +64 -0
  294. data/po/fr/rbot.po +1133 -0
  295. data/po/it/rbot-alias.po +82 -0
  296. data/po/it/rbot-autoop.po +0 -0
  297. data/po/it/rbot-autorejoin.po +0 -0
  298. data/po/it/rbot-azgame.po +186 -0
  299. data/po/it/rbot-bans.po +0 -0
  300. data/po/it/rbot-bash.po +0 -0
  301. data/po/it/rbot-botsnack.po +0 -0
  302. data/po/it/rbot-cal.po +3 -0
  303. data/po/it/rbot-chanserv.po +0 -0
  304. data/po/it/rbot-chucknorris.po +0 -0
  305. data/po/it/rbot-debugger.po +0 -0
  306. data/po/it/rbot-deepthoughts.po +0 -0
  307. data/po/it/rbot-delicious.po +0 -0
  308. data/po/it/rbot-dice.po +0 -0
  309. data/po/it/rbot-dict.po +0 -0
  310. data/po/it/rbot-dictclient.po +111 -0
  311. data/po/it/rbot-digg.po +0 -0
  312. data/po/it/rbot-eightball.po +0 -0
  313. data/po/it/rbot-excuse.po +0 -0
  314. data/po/it/rbot-factoids.po +110 -0
  315. data/po/it/rbot-figlet.po +36 -0
  316. data/po/it/rbot-fish.po +0 -0
  317. data/po/it/rbot-forecast.po +0 -0
  318. data/po/it/rbot-fortune.po +0 -0
  319. data/po/it/rbot-freshmeat.po +0 -0
  320. data/po/it/rbot-grouphug.po +18 -0
  321. data/po/it/rbot-hl2.po +0 -0
  322. data/po/it/rbot-host.po +3 -0
  323. data/po/it/rbot-imdb.po +0 -0
  324. data/po/it/rbot-insult.po +0 -0
  325. data/po/it/rbot-iplookup.po +0 -0
  326. data/po/it/rbot-karma.po +0 -0
  327. data/po/it/rbot-keywords.po +24 -0
  328. data/po/it/rbot-lart.po +0 -0
  329. data/po/it/rbot-lastfm.po +172 -0
  330. data/po/it/rbot-linkbot.po +0 -0
  331. data/po/it/rbot-markov.po +20 -0
  332. data/po/it/rbot-math.po +0 -0
  333. data/po/it/rbot-modes.po +0 -0
  334. data/po/it/rbot-nickrecover.po +36 -0
  335. data/po/it/rbot-nickserv.po +104 -0
  336. data/po/it/rbot-nslookup.po +0 -0
  337. data/po/it/rbot-quakeauth.po +0 -0
  338. data/po/it/rbot-quiz.po +0 -0
  339. data/po/it/rbot-quotes.po +108 -0
  340. data/po/it/rbot-reaction.po +0 -0
  341. data/po/it/rbot-remind.po +0 -0
  342. data/po/it/rbot-remotectl.po +0 -0
  343. data/po/it/rbot-ri.po +0 -0
  344. data/po/it/rbot-roshambo.po +0 -0
  345. data/po/it/rbot-rot13.po +0 -0
  346. data/po/it/rbot-roulette.po +0 -0
  347. data/po/it/rbot-rss.po +20 -0
  348. data/po/it/rbot-salut.po +0 -0
  349. data/po/it/rbot-script.po +0 -0
  350. data/po/it/rbot-search.po +0 -0
  351. data/po/it/rbot-seen.po +0 -0
  352. data/po/it/rbot-shiritori.po +102 -0
  353. data/po/it/rbot-shortenurls.po +0 -0
  354. data/po/it/rbot-slashdot.po +0 -0
  355. data/po/it/rbot-spell.po +54 -0
  356. data/po/it/rbot-theyfightcrime.po +0 -0
  357. data/po/it/rbot-threat.po +0 -0
  358. data/po/it/rbot-time.po +0 -0
  359. data/po/it/rbot-topic.po +0 -0
  360. data/po/it/rbot-translator.po +77 -0
  361. data/po/it/rbot-tube.po +0 -0
  362. data/po/it/rbot-twitter.po +24 -0
  363. data/po/it/rbot-uno.po +564 -0
  364. data/po/it/rbot-urban.po +0 -0
  365. data/po/it/rbot-url.po +0 -0
  366. data/po/it/rbot-usermodes.po +0 -0
  367. data/po/it/rbot-wall.po +33 -0
  368. data/po/it/rbot-weather.po +0 -0
  369. data/po/it/rbot-wheelfortune.po +251 -0
  370. data/po/it/rbot-wow.po +0 -0
  371. data/po/it/rbot-wserver.po +0 -0
  372. data/po/it/rbot-youtube.po +64 -0
  373. data/po/it/rbot.po +1127 -0
  374. data/po/ja/rbot-alias.po +82 -0
  375. data/po/ja/rbot-autoop.po +0 -0
  376. data/po/ja/rbot-autorejoin.po +0 -0
  377. data/po/ja/rbot-azgame.po +194 -0
  378. data/po/ja/rbot-bans.po +0 -0
  379. data/po/ja/rbot-bash.po +0 -0
  380. data/po/ja/rbot-botsnack.po +0 -0
  381. data/po/ja/rbot-cal.po +3 -0
  382. data/po/ja/rbot-chanserv.po +0 -0
  383. data/po/ja/rbot-chucknorris.po +0 -0
  384. data/po/ja/rbot-debugger.po +0 -0
  385. data/po/ja/rbot-deepthoughts.po +0 -0
  386. data/po/ja/rbot-delicious.po +0 -0
  387. data/po/ja/rbot-dice.po +0 -0
  388. data/po/ja/rbot-dict.po +0 -0
  389. data/po/ja/rbot-dictclient.po +111 -0
  390. data/po/ja/rbot-digg.po +0 -0
  391. data/po/ja/rbot-eightball.po +0 -0
  392. data/po/ja/rbot-excuse.po +0 -0
  393. data/po/ja/rbot-factoids.po +107 -0
  394. data/po/ja/rbot-figlet.po +36 -0
  395. data/po/ja/rbot-fish.po +0 -0
  396. data/po/ja/rbot-forecast.po +0 -0
  397. data/po/ja/rbot-fortune.po +0 -0
  398. data/po/ja/rbot-freshmeat.po +0 -0
  399. data/po/ja/rbot-grouphug.po +18 -0
  400. data/po/ja/rbot-hl2.po +0 -0
  401. data/po/ja/rbot-host.po +3 -0
  402. data/po/ja/rbot-imdb.po +0 -0
  403. data/po/ja/rbot-insult.po +0 -0
  404. data/po/ja/rbot-iplookup.po +0 -0
  405. data/po/ja/rbot-karma.po +0 -0
  406. data/po/ja/rbot-keywords.po +24 -0
  407. data/po/ja/rbot-lart.po +0 -0
  408. data/po/ja/rbot-lastfm.po +172 -0
  409. data/po/ja/rbot-linkbot.po +0 -0
  410. data/po/ja/rbot-markov.po +20 -0
  411. data/po/ja/rbot-math.po +0 -0
  412. data/po/ja/rbot-modes.po +0 -0
  413. data/po/ja/rbot-nickrecover.po +36 -0
  414. data/po/ja/rbot-nickserv.po +104 -0
  415. data/po/ja/rbot-nslookup.po +0 -0
  416. data/po/ja/rbot-quakeauth.po +0 -0
  417. data/po/ja/rbot-quiz.po +0 -0
  418. data/po/ja/rbot-quotes.po +108 -0
  419. data/po/ja/rbot-reaction.po +0 -0
  420. data/po/ja/rbot-remind.po +0 -0
  421. data/po/ja/rbot-remotectl.po +0 -0
  422. data/po/ja/rbot-ri.po +0 -0
  423. data/po/ja/rbot-roshambo.po +0 -0
  424. data/po/ja/rbot-rot13.po +0 -0
  425. data/po/ja/rbot-roulette.po +0 -0
  426. data/po/ja/rbot-rss.po +20 -0
  427. data/po/ja/rbot-salut.po +0 -0
  428. data/po/ja/rbot-script.po +0 -0
  429. data/po/ja/rbot-search.po +0 -0
  430. data/po/ja/rbot-seen.po +0 -0
  431. data/po/ja/rbot-shiritori.po +115 -0
  432. data/po/ja/rbot-shortenurls.po +0 -0
  433. data/po/ja/rbot-slashdot.po +0 -0
  434. data/po/ja/rbot-spell.po +54 -0
  435. data/po/ja/rbot-theyfightcrime.po +0 -0
  436. data/po/ja/rbot-threat.po +0 -0
  437. data/po/ja/rbot-time.po +0 -0
  438. data/po/ja/rbot-topic.po +0 -0
  439. data/po/ja/rbot-translator.po +77 -0
  440. data/po/ja/rbot-tube.po +0 -0
  441. data/po/ja/rbot-twitter.po +24 -0
  442. data/po/ja/rbot-uno.po +512 -0
  443. data/po/ja/rbot-urban.po +0 -0
  444. data/po/ja/rbot-url.po +0 -0
  445. data/po/ja/rbot-usermodes.po +0 -0
  446. data/po/ja/rbot-wall.po +33 -0
  447. data/po/ja/rbot-weather.po +0 -0
  448. data/po/ja/rbot-wheelfortune.po +205 -0
  449. data/po/ja/rbot-wow.po +0 -0
  450. data/po/ja/rbot-wserver.po +0 -0
  451. data/po/ja/rbot-youtube.po +58 -0
  452. data/po/ja/rbot.po +999 -0
  453. data/po/rbot-alias.pot +83 -0
  454. data/po/rbot-autoop.pot +0 -0
  455. data/po/rbot-autorejoin.pot +0 -0
  456. data/po/rbot-azgame.pot +187 -0
  457. data/po/rbot-bans.pot +0 -0
  458. data/po/rbot-bash.pot +0 -0
  459. data/po/rbot-botsnack.pot +0 -0
  460. data/po/rbot-cal.pot +21 -0
  461. data/po/rbot-chanserv.pot +0 -0
  462. data/po/rbot-chucknorris.pot +0 -0
  463. data/po/rbot-debugger.pot +0 -0
  464. data/po/rbot-deepthoughts.pot +0 -0
  465. data/po/rbot-delicious.pot +0 -0
  466. data/po/rbot-dice.pot +0 -0
  467. data/po/rbot-dict.pot +0 -0
  468. data/po/rbot-dictclient.pot +112 -0
  469. data/po/rbot-digg.pot +0 -0
  470. data/po/rbot-eightball.pot +0 -0
  471. data/po/rbot-excuse.pot +0 -0
  472. data/po/rbot-factoids.pot +108 -0
  473. data/po/rbot-figlet.pot +37 -0
  474. data/po/rbot-fish.pot +0 -0
  475. data/po/rbot-forecast.pot +0 -0
  476. data/po/rbot-fortune.pot +0 -0
  477. data/po/rbot-freshmeat.pot +0 -0
  478. data/po/rbot-grouphug.pot +36 -0
  479. data/po/rbot-hl2.pot +0 -0
  480. data/po/rbot-host.pot +21 -0
  481. data/po/rbot-imdb.pot +0 -0
  482. data/po/rbot-insult.pot +0 -0
  483. data/po/rbot-iplookup.pot +0 -0
  484. data/po/rbot-karma.pot +0 -0
  485. data/po/rbot-keywords.pot +25 -0
  486. data/po/rbot-lart.pot +0 -0
  487. data/po/rbot-lastfm.pot +190 -0
  488. data/po/rbot-linkbot.pot +0 -0
  489. data/po/rbot-markov.pot +21 -0
  490. data/po/rbot-math.pot +0 -0
  491. data/po/rbot-modes.pot +0 -0
  492. data/po/rbot-nickrecover.pot +37 -0
  493. data/po/rbot-nickserv.pot +105 -0
  494. data/po/rbot-nslookup.pot +0 -0
  495. data/po/rbot-quakeauth.pot +0 -0
  496. data/po/rbot-quiz.pot +0 -0
  497. data/po/rbot-quotes.pot +109 -0
  498. data/po/rbot-reaction.pot +0 -0
  499. data/po/rbot-remind.pot +0 -0
  500. data/po/rbot-remotectl.pot +0 -0
  501. data/po/rbot-ri.pot +0 -0
  502. data/po/rbot-roshambo.pot +0 -0
  503. data/po/rbot-rot13.pot +0 -0
  504. data/po/rbot-roulette.pot +0 -0
  505. data/po/rbot-rss.pot +21 -0
  506. data/po/rbot-salut.pot +0 -0
  507. data/po/rbot-script.pot +0 -0
  508. data/po/rbot-search.pot +0 -0
  509. data/po/rbot-seen.pot +0 -0
  510. data/po/rbot-shiritori.pot +103 -0
  511. data/po/rbot-shortenurls.pot +0 -0
  512. data/po/rbot-slashdot.pot +0 -0
  513. data/po/rbot-spell.pot +55 -0
  514. data/po/rbot-theyfightcrime.pot +0 -0
  515. data/po/rbot-threat.pot +0 -0
  516. data/po/rbot-time.pot +0 -0
  517. data/po/rbot-topic.pot +0 -0
  518. data/po/rbot-translator.pot +78 -0
  519. data/po/rbot-tube.pot +0 -0
  520. data/po/rbot-twitter.pot +25 -0
  521. data/po/rbot-uno.pot +513 -0
  522. data/po/rbot-urban.pot +0 -0
  523. data/po/rbot-url.pot +0 -0
  524. data/po/rbot-usermodes.pot +0 -0
  525. data/po/rbot-wall.pot +33 -0
  526. data/po/rbot-weather.pot +0 -0
  527. data/po/rbot-wheelfortune.pot +206 -0
  528. data/po/rbot-wow.pot +0 -0
  529. data/po/rbot-wserver.pot +0 -0
  530. data/po/rbot-youtube.pot +59 -0
  531. data/po/rbot.pot +1004 -0
  532. data/po/zh_CN/rbot-alias.po +82 -0
  533. data/po/zh_CN/rbot-autoop.po +0 -0
  534. data/po/zh_CN/rbot-autorejoin.po +0 -0
  535. data/po/zh_CN/rbot-azgame.po +186 -0
  536. data/po/zh_CN/rbot-bans.po +0 -0
  537. data/po/zh_CN/rbot-bash.po +0 -0
  538. data/po/zh_CN/rbot-botsnack.po +0 -0
  539. data/po/zh_CN/rbot-cal.po +3 -0
  540. data/po/zh_CN/rbot-chanserv.po +0 -0
  541. data/po/zh_CN/rbot-chucknorris.po +0 -0
  542. data/po/zh_CN/rbot-debugger.po +0 -0
  543. data/po/zh_CN/rbot-deepthoughts.po +0 -0
  544. data/po/zh_CN/rbot-delicious.po +0 -0
  545. data/po/zh_CN/rbot-dice.po +0 -0
  546. data/po/zh_CN/rbot-dict.po +0 -0
  547. data/po/zh_CN/rbot-dictclient.po +111 -0
  548. data/po/zh_CN/rbot-digg.po +0 -0
  549. data/po/zh_CN/rbot-eightball.po +0 -0
  550. data/po/zh_CN/rbot-excuse.po +0 -0
  551. data/po/zh_CN/rbot-factoids.po +107 -0
  552. data/po/zh_CN/rbot-figlet.po +36 -0
  553. data/po/zh_CN/rbot-fish.po +0 -0
  554. data/po/zh_CN/rbot-forecast.po +0 -0
  555. data/po/zh_CN/rbot-fortune.po +0 -0
  556. data/po/zh_CN/rbot-freshmeat.po +0 -0
  557. data/po/zh_CN/rbot-grouphug.po +18 -0
  558. data/po/zh_CN/rbot-hl2.po +0 -0
  559. data/po/zh_CN/rbot-host.po +3 -0
  560. data/po/zh_CN/rbot-imdb.po +0 -0
  561. data/po/zh_CN/rbot-insult.po +0 -0
  562. data/po/zh_CN/rbot-iplookup.po +0 -0
  563. data/po/zh_CN/rbot-karma.po +0 -0
  564. data/po/zh_CN/rbot-keywords.po +24 -0
  565. data/po/zh_CN/rbot-lart.po +0 -0
  566. data/po/zh_CN/rbot-lastfm.po +172 -0
  567. data/po/zh_CN/rbot-linkbot.po +0 -0
  568. data/po/zh_CN/rbot-markov.po +20 -0
  569. data/po/zh_CN/rbot-math.po +0 -0
  570. data/po/zh_CN/rbot-modes.po +0 -0
  571. data/po/zh_CN/rbot-nickrecover.po +36 -0
  572. data/po/zh_CN/rbot-nickserv.po +104 -0
  573. data/po/zh_CN/rbot-nslookup.po +0 -0
  574. data/po/zh_CN/rbot-quakeauth.po +0 -0
  575. data/po/zh_CN/rbot-quiz.po +0 -0
  576. data/po/zh_CN/rbot-quotes.po +108 -0
  577. data/po/zh_CN/rbot-reaction.po +0 -0
  578. data/po/zh_CN/rbot-remind.po +0 -0
  579. data/po/zh_CN/rbot-remotectl.po +0 -0
  580. data/po/zh_CN/rbot-ri.po +0 -0
  581. data/po/zh_CN/rbot-roshambo.po +0 -0
  582. data/po/zh_CN/rbot-rot13.po +0 -0
  583. data/po/zh_CN/rbot-roulette.po +0 -0
  584. data/po/zh_CN/rbot-rss.po +20 -0
  585. data/po/zh_CN/rbot-salut.po +0 -0
  586. data/po/zh_CN/rbot-script.po +0 -0
  587. data/po/zh_CN/rbot-search.po +0 -0
  588. data/po/zh_CN/rbot-seen.po +0 -0
  589. data/po/zh_CN/rbot-shiritori.po +102 -0
  590. data/po/zh_CN/rbot-shortenurls.po +0 -0
  591. data/po/zh_CN/rbot-slashdot.po +0 -0
  592. data/po/zh_CN/rbot-spell.po +54 -0
  593. data/po/zh_CN/rbot-theyfightcrime.po +0 -0
  594. data/po/zh_CN/rbot-threat.po +0 -0
  595. data/po/zh_CN/rbot-time.po +0 -0
  596. data/po/zh_CN/rbot-topic.po +0 -0
  597. data/po/zh_CN/rbot-translator.po +77 -0
  598. data/po/zh_CN/rbot-tube.po +0 -0
  599. data/po/zh_CN/rbot-twitter.po +24 -0
  600. data/po/zh_CN/rbot-uno.po +512 -0
  601. data/po/zh_CN/rbot-urban.po +0 -0
  602. data/po/zh_CN/rbot-url.po +0 -0
  603. data/po/zh_CN/rbot-usermodes.po +0 -0
  604. data/po/zh_CN/rbot-wall.po +33 -0
  605. data/po/zh_CN/rbot-weather.po +0 -0
  606. data/po/zh_CN/rbot-wheelfortune.po +205 -0
  607. data/po/zh_CN/rbot-wow.po +0 -0
  608. data/po/zh_CN/rbot-wserver.po +0 -0
  609. data/po/zh_CN/rbot-youtube.po +58 -0
  610. data/po/zh_CN/rbot.po +1006 -0
  611. data/po/zh_TW/rbot-alias.po +82 -0
  612. data/po/zh_TW/rbot-autoop.po +0 -0
  613. data/po/zh_TW/rbot-autorejoin.po +0 -0
  614. data/po/zh_TW/rbot-azgame.po +186 -0
  615. data/po/zh_TW/rbot-bans.po +0 -0
  616. data/po/zh_TW/rbot-bash.po +0 -0
  617. data/po/zh_TW/rbot-botsnack.po +0 -0
  618. data/po/zh_TW/rbot-cal.po +3 -0
  619. data/po/zh_TW/rbot-chanserv.po +0 -0
  620. data/po/zh_TW/rbot-chucknorris.po +0 -0
  621. data/po/zh_TW/rbot-debugger.po +0 -0
  622. data/po/zh_TW/rbot-deepthoughts.po +0 -0
  623. data/po/zh_TW/rbot-delicious.po +0 -0
  624. data/po/zh_TW/rbot-dice.po +0 -0
  625. data/po/zh_TW/rbot-dict.po +0 -0
  626. data/po/zh_TW/rbot-dictclient.po +111 -0
  627. data/po/zh_TW/rbot-digg.po +0 -0
  628. data/po/zh_TW/rbot-eightball.po +0 -0
  629. data/po/zh_TW/rbot-excuse.po +0 -0
  630. data/po/zh_TW/rbot-factoids.po +107 -0
  631. data/po/zh_TW/rbot-figlet.po +36 -0
  632. data/po/zh_TW/rbot-fish.po +0 -0
  633. data/po/zh_TW/rbot-forecast.po +0 -0
  634. data/po/zh_TW/rbot-fortune.po +0 -0
  635. data/po/zh_TW/rbot-freshmeat.po +0 -0
  636. data/po/zh_TW/rbot-grouphug.po +18 -0
  637. data/po/zh_TW/rbot-hl2.po +0 -0
  638. data/po/zh_TW/rbot-host.po +3 -0
  639. data/po/zh_TW/rbot-imdb.po +0 -0
  640. data/po/zh_TW/rbot-insult.po +0 -0
  641. data/po/zh_TW/rbot-iplookup.po +0 -0
  642. data/po/zh_TW/rbot-karma.po +0 -0
  643. data/po/zh_TW/rbot-keywords.po +24 -0
  644. data/po/zh_TW/rbot-lart.po +0 -0
  645. data/po/zh_TW/rbot-lastfm.po +172 -0
  646. data/po/zh_TW/rbot-linkbot.po +0 -0
  647. data/po/zh_TW/rbot-markov.po +20 -0
  648. data/po/zh_TW/rbot-math.po +0 -0
  649. data/po/zh_TW/rbot-modes.po +0 -0
  650. data/po/zh_TW/rbot-nickrecover.po +36 -0
  651. data/po/zh_TW/rbot-nickserv.po +104 -0
  652. data/po/zh_TW/rbot-nslookup.po +0 -0
  653. data/po/zh_TW/rbot-quakeauth.po +0 -0
  654. data/po/zh_TW/rbot-quiz.po +0 -0
  655. data/po/zh_TW/rbot-quotes.po +108 -0
  656. data/po/zh_TW/rbot-reaction.po +0 -0
  657. data/po/zh_TW/rbot-remind.po +0 -0
  658. data/po/zh_TW/rbot-remotectl.po +0 -0
  659. data/po/zh_TW/rbot-ri.po +0 -0
  660. data/po/zh_TW/rbot-roshambo.po +0 -0
  661. data/po/zh_TW/rbot-rot13.po +0 -0
  662. data/po/zh_TW/rbot-roulette.po +0 -0
  663. data/po/zh_TW/rbot-rss.po +20 -0
  664. data/po/zh_TW/rbot-salut.po +0 -0
  665. data/po/zh_TW/rbot-script.po +0 -0
  666. data/po/zh_TW/rbot-search.po +0 -0
  667. data/po/zh_TW/rbot-seen.po +0 -0
  668. data/po/zh_TW/rbot-shiritori.po +102 -0
  669. data/po/zh_TW/rbot-shortenurls.po +0 -0
  670. data/po/zh_TW/rbot-slashdot.po +0 -0
  671. data/po/zh_TW/rbot-spell.po +54 -0
  672. data/po/zh_TW/rbot-theyfightcrime.po +0 -0
  673. data/po/zh_TW/rbot-threat.po +0 -0
  674. data/po/zh_TW/rbot-time.po +0 -0
  675. data/po/zh_TW/rbot-topic.po +0 -0
  676. data/po/zh_TW/rbot-translator.po +77 -0
  677. data/po/zh_TW/rbot-tube.po +0 -0
  678. data/po/zh_TW/rbot-twitter.po +24 -0
  679. data/po/zh_TW/rbot-uno.po +512 -0
  680. data/po/zh_TW/rbot-urban.po +0 -0
  681. data/po/zh_TW/rbot-url.po +0 -0
  682. data/po/zh_TW/rbot-usermodes.po +0 -0
  683. data/po/zh_TW/rbot-wall.po +33 -0
  684. data/po/zh_TW/rbot-weather.po +0 -0
  685. data/po/zh_TW/rbot-wheelfortune.po +205 -0
  686. data/po/zh_TW/rbot-wow.po +0 -0
  687. data/po/zh_TW/rbot-wserver.po +0 -0
  688. data/po/zh_TW/rbot-youtube.po +58 -0
  689. data/po/zh_TW/rbot.po +1034 -0
  690. data/setup.rb +800 -574
  691. metadata +723 -108
  692. data/data/rbot/contrib/plugins/figlet.rb +0 -20
  693. data/data/rbot/contrib/plugins/ri.rb +0 -83
  694. data/data/rbot/plugins/demauro.rb +0 -95
  695. data/data/rbot/plugins/google.rb +0 -53
  696. data/data/rbot/plugins/opme.rb +0 -19
  697. data/data/rbot/plugins/roshambo.rb +0 -54
  698. data/data/rbot/plugins/rubyurl.rb +0 -39
  699. data/data/rbot/plugins/tinyurl.rb +0 -39
  700. data/data/rbot/plugins/xmlrpc.rb.disabled +0 -52
  701. data/data/rbot/templates/levels.rbot +0 -32
  702. data/data/rbot/templates/users.rbot +0 -1
  703. data/lib/rbot/auth.rb +0 -314
  704. data/lib/rbot/channel.rb +0 -54
  705. data/lib/rbot/httputil.rb +0 -309
  706. data/lib/rbot/utils.rb +0 -83
File without changes
File without changes
File without changes
@@ -0,0 +1,33 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: rbot\n"
10
+ "POT-Creation-Date: 2008-07-07 18:01+0200\n"
11
+ "PO-Revision-Date: 2008-07-07 18:01+0200\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
+
19
+ #: data/rbot/plugins/wall.rb:19
20
+ msgid "figlet method to use to display the writing on the wall (nil for none)"
21
+ msgstr ""
22
+
23
+ #: data/rbot/plugins/wall.rb:28
24
+ msgid "writing on the wall not implemented yet"
25
+ msgstr ""
26
+
27
+ #: data/rbot/plugins/wall.rb:34
28
+ msgid "No writing on the wall"
29
+ msgstr ""
30
+
31
+ #: data/rbot/plugins/wall.rb:52
32
+ msgid "The writing on the wall reads: %{wall}"
33
+ msgstr ""
File without changes
@@ -0,0 +1,251 @@
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
+ # Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: rbot\n"
9
+ "POT-Creation-Date: 2008-06-20 01:49+0200\n"
10
+ "PO-Revision-Date: 2008-06-30 10:58+0200\n"
11
+ "Last-Translator: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>\n"
12
+ "Language-Team: it\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/wheelfortune.rb:48
19
+ msgid " [Letters called so far: %{red}%{letters}%{nocolor}]"
20
+ msgstr " [Lettere chiamate finora: %{red}%{letters}%{nocolor}]"
21
+
22
+ #: data/rbot/plugins/games/wheelfortune.rb:230
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
+ "wof [<canale>] play [<nome>] for <singola> to <max> => avvia una partita di "
36
+ "ruota della forunta in <canale> (default: canale corrente), chiamata <nome>"
37
+ "(default: valore di config wheelfortune.game_name, o l'ultimo nome usato "
38
+ "dall'utente) con <singola> punti per round. vince chi raggiunge <max> punti. "
39
+ "le vocali costano <single>*<single>/<max>. L'utente che avvia la partita è "
40
+ "il manager e deve impostare indizi e risposte in privato. Tutti gli altri "
41
+ "devono indovinare la risposta a ciascun indizio dicendo una singola "
42
+ "consonante oppure l'intera frase. Ogni volta che una consonante viene "
43
+ "indovinata, il bot rivelerà la risposta parziale, mostrando le lettere "
44
+ "mancanti con * (asterisco)."
45
+
46
+ #: data/rbot/plugins/games/wheelfortune.rb:232
47
+ msgid ""
48
+ "wof <channel> [category: <cat>,] clue: <clue>, answer: <ans> => set up a new "
49
+ "question for the wheel-of-fortune game being played on channel <channel>. "
50
+ "This command must be sent in private by the game manager. The category <cat> "
51
+ "can be omitted. If you make mistakes, you can use 'wof replace' (see help) "
52
+ "before the question gets asked"
53
+ msgstr ""
54
+ "wof <canale> [category: <cat>,] clue: <indizio>, answer: <risp> => crea una "
55
+ "nuova domanda per la partita di ruota della fortuna in corso su <canale>. "
56
+ "Questo comando deve essere inviato in privato dal gestore della partita. La "
57
+ "categoria <cat> può essere omessa. Se si fanno errori, si può usare 'wof "
58
+ "replace' (vedi) prima che la domanda venga chiesta"
59
+
60
+ #: data/rbot/plugins/games/wheelfortune.rb:234
61
+ msgid ""
62
+ "wof <channel> replace <round> [category: <cat>,] [clue: <clue>,] [answer: "
63
+ "<ans>] => fix the question for round <round> of the wheel-of-fortune game "
64
+ "being played on <channel> by replacing the category and/or clue and/or answer"
65
+ msgstr ""
66
+ "wof <canale> replace <round> [category: <cat>,] [clue: <indizio>,] [answer: "
67
+ "<risp>] => corregge la domanda per il round <round> di ruota della fortuna "
68
+ "in corso su <canale> sostituendo la cateogira e/o l'indizio e/o la risposta"
69
+
70
+ #: data/rbot/plugins/games/wheelfortune.rb:236
71
+ msgid ""
72
+ "wof cancel => cancels the wheel-of-fortune being played on the current "
73
+ "channel"
74
+ msgstr ""
75
+ "wof cancel => anulla la partita di ruota della fortuna in corso nel canale"
76
+
77
+ #: data/rbot/plugins/games/wheelfortune.rb:238
78
+ msgid ""
79
+ "wof buy <vowel> => buy the vowel <vowel>: the user buying the vowel will "
80
+ "lose points equal to the vowel price, and the corresponding vowel will be "
81
+ "revealed in the answer (if present)"
82
+ msgstr ""
83
+ "wof buy <vocale> => compra la vocale <vocale>: l'utente che compra la vocale "
84
+ "perte tanti punti quanto è il costo della vocale, e la vocale sarà rivelata "
85
+ "nella risposta (se presente)"
86
+
87
+ #: data/rbot/plugins/games/wheelfortune.rb:240
88
+ msgid ""
89
+ "wof: wheel-of-fortune plugin. topics: play, category, clue, answer, replace, "
90
+ "cancel, buy"
91
+ msgstr ""
92
+ "wof: wheel-of-fortune plugin. argomenti: play, category, clue, answer, "
93
+ "replace, cancel, buy"
94
+
95
+ #: data/rbot/plugins/games/wheelfortune.rb:247
96
+ msgid "you must specify a channel"
97
+ msgstr "devi specificare un canale"
98
+
99
+ #: data/rbot/plugins/games/wheelfortune.rb:253
100
+ msgid "there's already a %{name} game on %{chan}, managed by %{who}"
101
+ msgstr "c'è già una partita di %{name} in corso su %{chan}, gestita da %{who}"
102
+
103
+ #: data/rbot/plugins/games/wheelfortune.rb:267
104
+ msgid ""
105
+ "%{who} just created a new %{name} game to %{max} points (%{single} per "
106
+ "question, %{price} per vowel)"
107
+ msgstr ""
108
+ "%{who} ha appena creato una partita di %{name} per %{max} punti (%{single} "
109
+ "per risposta, %{price} per vocale)"
110
+
111
+ #: data/rbot/plugins/games/wheelfortune.rb:274
112
+ msgid ""
113
+ "ok, the game has been created. now add clues and answers with \"wof %{chan} "
114
+ "[category: <category>,] clue: <clue>, answer: <ans>\". if the clue and "
115
+ "answer don't fit in one line, add the answer separately with \"wof %{chan} "
116
+ "answer <answer>\""
117
+ msgstr ""
118
+ "ok, la partita è stata creata. ora aggiungi indizi e risposte con \"wof %"
119
+ "{chan} [category: <categoria>,] clue: <indizio>, answer: <risp>\". se "
120
+ "indizio e risposta non rientrano in un rigo, aggiungi la risposta "
121
+ "separatamente con \"wof %{chan} answer <risposta>\""
122
+
123
+ #: data/rbot/plugins/games/wheelfortune.rb:282
124
+ #: data/rbot/plugins/games/wheelfortune.rb:343
125
+ #: data/rbot/plugins/games/wheelfortune.rb:412
126
+ #: data/rbot/plugins/games/wheelfortune.rb:522
127
+ #: data/rbot/plugins/games/wheelfortune.rb:559
128
+ msgid "there's no %{name} game running on %{chan}"
129
+ msgstr "non ci sono partite di %{name} in esecuzione su %{chan}"
130
+
131
+ #: data/rbot/plugins/games/wheelfortune.rb:291
132
+ msgid "you can't add questions to the %{name} game on %{chan}"
133
+ msgstr "non puoi aggiungere domande alla partita di %{name} su %{chan}"
134
+
135
+ #: data/rbot/plugins/games/wheelfortune.rb:301
136
+ #: data/rbot/plugins/games/wheelfortune.rb:383
137
+ msgid "sorry, the answer cannot contain the '*' character"
138
+ msgstr "spiacente, la risposta non può contenere il carattere '*'"
139
+
140
+ #: data/rbot/plugins/games/wheelfortune.rb:308
141
+ msgid "ok, clue added for %{name} round %{count} on %{chan}: %{catclue}"
142
+ msgstr "ok, indizio aggiunto per %{name} round %{count} su %{chan}: %{catclue}"
143
+
144
+ #: data/rbot/plugins/games/wheelfortune.rb:310
145
+ msgid ""
146
+ "there's already a pending clue for %{name} round %{count} on %{chan}: %"
147
+ "{catclue}"
148
+ msgstr ""
149
+ "c'è già un indizio incompleto per %{name} round %{count} su %{chan}: %"
150
+ "{catclue}"
151
+
152
+ #: data/rbot/plugins/games/wheelfortune.rb:323
153
+ msgid ""
154
+ "ok, QA added for %{name} round %{count} on %{chan}: %{catclue} => %{ans}"
155
+ msgstr ""
156
+ "ok, domanda e risposta aggiuna per %{name} round %{count} su %{chan}: %"
157
+ "{catclue} => %{ans}"
158
+
159
+ #: data/rbot/plugins/games/wheelfortune.rb:325
160
+ msgid "there's no pending clue for %{name} on %{chan}!"
161
+ msgstr "non ci sono indizi incompleti per %{name} su %{chan}!"
162
+
163
+ #: data/rbot/plugins/games/wheelfortune.rb:336
164
+ msgid ""
165
+ "something went wrong, I can't seem to understand what you're trying to set up"
166
+ msgstr "qualcosa è andato storto, non capisco cosa stai cercando di impostare"
167
+
168
+ #: data/rbot/plugins/games/wheelfortune.rb:352
169
+ msgid "you can't replace questions to the %{name} game on %{chan}"
170
+ msgstr "non puoi sostituire le domande per la partita di %{name} su %{chan}"
171
+
172
+ #: data/rbot/plugins/games/wheelfortune.rb:365
173
+ msgid ""
174
+ "there are no questions in the %{name} game on %{chan} which can be replaced"
175
+ msgstr "non ci sono domande sostituibili per la partita di %{name} su %{chan}"
176
+
177
+ #: data/rbot/plugins/games/wheelfortune.rb:370
178
+ msgid ""
179
+ "you can only replace questions between rounds %{min} and %{max} in the %"
180
+ "{name} game on %{chan}"
181
+ msgstr ""
182
+ "puoi sostituire le domande solo per i round dal %{min} al %{max} nella "
183
+ "partita di %{name} su %{chan}"
184
+
185
+ #: data/rbot/plugins/games/wheelfortune.rb:398
186
+ msgid ""
187
+ "ok, replaced QA for %{name} round %{count} on %{chan}: %{catclue} => %{ans}"
188
+ msgstr ""
189
+ "ok, ho sostituito domanda e risposta per %{name} round %{count} su %{chan}: %"
190
+ "{catclue} => %{ans}"
191
+
192
+ #: data/rbot/plugins/games/wheelfortune.rb:421
193
+ #: data/rbot/plugins/games/wheelfortune.rb:528
194
+ msgid ""
195
+ "there are no %{name} questions for %{chan}, I'm waiting for %{who} to add "
196
+ "them"
197
+ msgstr ""
198
+ "non ci sono domande di %{name} per %{chan}, sto aspettando che %{who} le "
199
+ "aggiunga"
200
+
201
+ #: data/rbot/plugins/games/wheelfortune.rb:429
202
+ msgid "%{bold}%{color}%{name}%{bold}, round %{count}:%{nocolor} %{qa}"
203
+ msgstr "%{bold}%{color}%{name}%{bold}, round %{count}:%{nocolor} %{qa}"
204
+
205
+ #: data/rbot/plugins/games/wheelfortune.rb:444
206
+ msgid "no scores"
207
+ msgstr "nessun punteggio"
208
+
209
+ #: data/rbot/plugins/games/wheelfortune.rb:465
210
+ msgid "You must buy the %{vowel}"
211
+ msgstr "la %{vowel} va comprata"
212
+
213
+ #: data/rbot/plugins/games/wheelfortune.rb:476
214
+ msgid "%{who} got it! The answer was: %{ans}"
215
+ msgstr "%{who} ha indovinato! La risposta era: %{ans}"
216
+
217
+ #: data/rbot/plugins/games/wheelfortune.rb:482
218
+ msgid ""
219
+ "%{bold}%{color}%{name}%{bold}%{nocolor}: %{who} %{bold}wins%{bold} after %"
220
+ "{count} rounds!\n"
221
+ "The final score is"
222
+ msgstr ""
223
+ "%{bold}%{color}%{name}%{bold}%{nocolor}: %{who} %{bold}vince%{bold} dopo %"
224
+ "{count} round!\n"
225
+ "Il punteggio finale è"
226
+
227
+ #: data/rbot/plugins/games/wheelfortune.rb:493
228
+ msgid ""
229
+ "%{bold}%{color}%{name}%{bold}, round %{count}%{nocolor} -- score so far:"
230
+ msgstr ""
231
+ "%{bold}%{color}%{name}%{bold}, round %{count}%{nocolor} -- punteggi attuali:"
232
+
233
+ #: data/rbot/plugins/games/wheelfortune.rb:538
234
+ msgid "%{who} buys a %{vowel} for %{price} points"
235
+ msgstr "%{who} compra una %{vowel} per %{price} punti"
236
+
237
+ #: data/rbot/plugins/games/wheelfortune.rb:546
238
+ msgid ""
239
+ "you can't buy a %{vowel}, %{who}: it costs %{price} points and you only have "
240
+ "%{score}"
241
+ msgstr ""
242
+ "non puoi comprare una %{vowel}, %{who}: costa %{price} punti e tu ne hai "
243
+ "solo %{score}"
244
+
245
+ #: data/rbot/plugins/games/wheelfortune.rb:569
246
+ msgid "you can't cancel the current game"
247
+ msgstr "non puoi annullare questa partita"
248
+
249
+ #: data/rbot/plugins/games/wheelfortune.rb:576
250
+ msgid "%{name} game cancelled after %{count} rounds. Partial score:"
251
+ msgstr "partita di %{name} annullata dopo %{count} round. Punteggi parziali:"
File without changes
File without changes
@@ -0,0 +1,64 @@
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
+ # Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: rbot\n"
9
+ "POT-Creation-Date: 2008-06-20 01:49+0200\n"
10
+ "PO-Revision-Date: 2007-08-23 17:49+0100\n"
11
+ "Last-Translator: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>\n"
12
+ "Language-Team: it\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/youtube.rb:33
19
+ msgid ""
20
+ "Category: %{cat}. Rating: %{rating}. Author: %{author}. Duration: %"
21
+ "{duration}. %{views} views, faved %{faves} times. %{desc}"
22
+ msgstr ""
23
+ "Categoria: %{cat}. Voto: %{rating}. Autore: %{author}. Durata: %{duration}. "
24
+ "Visto %{views}, favorito %{faves} volte. %{desc}"
25
+
26
+ #: data/rbot/plugins/youtube.rb:77 data/rbot/plugins/youtube.rb:107
27
+ msgid "unknown duration"
28
+ msgstr "durata sconosciuta"
29
+
30
+ #: data/rbot/plugins/youtube.rb:183
31
+ msgid ""
32
+ "%{bold}%{title}%{bold} [%{cat}] %{rating} @ %{url} by %{author} (%"
33
+ "{duration}). %{views} views, faved %{faves} times. %{desc}"
34
+ msgstr ""
35
+ "%{bold}%{title}%{bold} [%{cat}] %{rating} @ %{url} da %{author} (%"
36
+ "{duration}). Visto %{views}, favorito %{faves} volte. %{desc}"
37
+
38
+ #: data/rbot/plugins/youtube.rb:186
39
+ msgid ""
40
+ "\n"
41
+ " -- also available at: "
42
+ msgstr ""
43
+ "\n"
44
+ " -- disponibile anche su: "
45
+
46
+ #: data/rbot/plugins/youtube.rb:193
47
+ msgid "couldn't retrieve video info"
48
+ msgstr "impossibile recuperare le informazioni sul video"
49
+
50
+ #: data/rbot/plugins/youtube.rb:203
51
+ msgid "error looking for %{what} on youtube: %{e}"
52
+ msgstr "errore cercadno %{what} su youtube: %{e}"
53
+
54
+ #: data/rbot/plugins/youtube.rb:211
55
+ msgid "no videos found for %{what}"
56
+ msgstr "nessun video trovato per %{what}"
57
+
58
+ #: data/rbot/plugins/youtube.rb:215
59
+ msgid "One video found for %{what}: %{show}"
60
+ msgstr "Un video trovato per %{what}: %{show}"
61
+
62
+ #: data/rbot/plugins/youtube.rb:222
63
+ msgid "Videos for %{what}: %{shorts}"
64
+ msgstr "Video per %{what}: %{shorts}"
@@ -0,0 +1,1127 @@
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
+ # Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: rbot\n"
9
+ "POT-Creation-Date: 2008-07-30 23:38+0200\n"
10
+ "PO-Revision-Date: 2008-06-26 14:50+0200\n"
11
+ "Last-Translator: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>\n"
12
+ "Language-Team: it\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
+ #: lib/rbot/botuser.rb:40
19
+ msgid "Password for the bot owner"
20
+ msgstr "Password per il padrone del bot"
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
+ "Impostare a falso per impedire ai nuovi utenti di identificarsi senza "
28
+ "password anche se la loro netmask è conosciuta"
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
+ "Impostare a falso per impedire ai nuovi utenti di essere riconosciuti senza "
36
+ "prima effettuare il login"
37
+
38
+ #: lib/rbot/botuser.rb:49
39
+ msgid "Set true to allow new botusers to be created automatically"
40
+ msgstr ""
41
+ "Impostare a vero per permettere la creazione automatica di nuovi botuser"
42
+
43
+ #: lib/rbot/botuser.rb:913
44
+ msgid "%{user}, you don't have '%{command}' permissions here"
45
+ msgstr "%{user}, non hai i permessi per '%{command}' qui"
46
+
47
+ #: lib/rbot/config.rb:219
48
+ msgid "%{desc} [valid values are: %{values}]"
49
+ msgstr "%{desc} [valori validi: %{values}]"
50
+
51
+ #: lib/rbot/config.rb:370
52
+ msgid "First time rbot configuration wizard"
53
+ msgstr "Configurazione iniziale di rbot"
54
+
55
+ #: lib/rbot/config.rb:373
56
+ msgid "This wizard will ask you a few questions to get you started."
57
+ msgstr "Ti verranno fatte alcune domande per cominciare."
58
+
59
+ #: lib/rbot/config.rb:374
60
+ msgid ""
61
+ "The rest of rbot's configuration can be manipulated via IRC once rbot is "
62
+ "connected and you are auth'd."
63
+ msgstr ""
64
+ "Il resto della configurazione di rbot può essere manipolata da IRC quando "
65
+ "rbot è connesso e ti sei identificato"
66
+
67
+ #: lib/rbot/core/auth.rb:76
68
+ msgid "please do not use + or - in front of command %{command} when resetting"
69
+ msgstr "non usare + o - davanti al comando %{command} per il reset"
70
+
71
+ #: lib/rbot/core/auth.rb:78
72
+ msgid "+ or - expected in front of %{string}"
73
+ msgstr "+ o - atteso prima di %{string}"
74
+
75
+ #: lib/rbot/core/auth.rb:91
76
+ msgid "'%{string}' doesn't look like a channel name"
77
+ msgstr "'%{string}' non sembra il nome di un canale"
78
+
79
+ #: lib/rbot/core/auth.rb:100
80
+ msgid "trailing comma"
81
+ msgstr "virgola in più"
82
+
83
+ #: lib/rbot/core/auth.rb:101
84
+ msgid "you probably forgot a comma"
85
+ msgstr "probabilmente hai dimenticato una virgola"
86
+
87
+ #: lib/rbot/core/auth.rb:116 lib/rbot/core/auth.rb:170
88
+ #: lib/rbot/core/auth.rb:236
89
+ msgid "couldn't find botuser %{name}"
90
+ msgstr "impossibile trovare il botuser %{name}"
91
+
92
+ #: lib/rbot/core/auth.rb:118
93
+ msgid "you can't change permissions for %{username}"
94
+ msgstr "non puoi cambiare i permessi di %{username}"
95
+
96
+ #: lib/rbot/core/auth.rb:125
97
+ msgid "couldn't satisfy your request: %{errors}"
98
+ msgstr "impossibile soddisfare la richiesta: %{errors}"
99
+
100
+ #: lib/rbot/core/auth.rb:164
101
+ msgid "you are owner, you can do anything"
102
+ msgstr "sei il padrone, puoi fare tutto"
103
+
104
+ #: lib/rbot/core/auth.rb:167
105
+ msgid "owner can do anything"
106
+ msgstr "il padrone può fare tutto"
107
+
108
+ #: lib/rbot/core/auth.rb:178
109
+ msgid "on any channel: "
110
+ msgstr "su tutti i canali: "
111
+
112
+ #: lib/rbot/core/auth.rb:180
113
+ msgid "in private: "
114
+ msgstr "in privato: "
115
+
116
+ #: lib/rbot/core/auth.rb:192
117
+ msgid "no permissions set for %{user}"
118
+ msgstr "nessun permesso impostato per %{user}"
119
+
120
+ #: lib/rbot/core/auth.rb:194
121
+ msgid "permissions for %{user}:: %{permissions}"
122
+ msgstr "permessi per %{user}:: %{permissions}"
123
+
124
+ #: lib/rbot/core/auth.rb:204
125
+ msgid ". only %{max} will be shown"
126
+ msgstr ". solo %{max} verranno mostrati"
127
+
128
+ #: lib/rbot/core/auth.rb:205
129
+ msgid "%{count} commands found matching %{pattern}%{extra}"
130
+ msgstr "%{count} comandi trovati corrispondenti a %{pattern}%{extra}"
131
+
132
+ #: lib/rbot/core/auth.rb:210
133
+ msgid "%{cmd}: %{perms}"
134
+ msgstr "%{cmd}: %{perms}"
135
+
136
+ #: lib/rbot/core/auth.rb:267
137
+ msgid "%{user} can already do that"
138
+ msgstr "%{user} può già farlo"
139
+
140
+ #: lib/rbot/core/auth.rb:269
141
+ msgid "%{user} can't do that already"
142
+ msgstr "%{user} già non può farlo"
143
+
144
+ #: lib/rbot/core/auth.rb:279
145
+ msgid ""
146
+ "sorry, %{cmd} doesn't look like a valid command. maybe you misspelled it, or "
147
+ "you need to specify it should be in private?"
148
+ msgstr ""
149
+ "spiacente, %{cmd} non sembra un comando valido. forse non è scritto "
150
+ "correttamente, o devi specificare che dev'essere in privato?"
151
+
152
+ #: lib/rbot/core/auth.rb:302
153
+ msgid "welcome, %{user}"
154
+ msgstr "benvenuto, %{user}"
155
+
156
+ #: lib/rbot/core/auth.rb:317
157
+ msgid "sorry, can't do"
158
+ msgstr "spiacente, non si può"
159
+
160
+ #: lib/rbot/core/auth.rb:320
161
+ msgid "couldn't login: %{exception}"
162
+ msgstr "impossibile effettuare il login: %{exception}"
163
+
164
+ #: lib/rbot/core/auth.rb:328
165
+ msgid "I couldn't find anything to let you login automatically"
166
+ msgstr "non ho trovato nulla con cui farti effettuare il login automatico"
167
+
168
+ #: lib/rbot/core/auth.rb:339
169
+ msgid "you are %{who}"
170
+ msgstr "sei %{who}"
171
+
172
+ #: lib/rbot/core/auth.rb:341 lib/rbot/core/auth.rb:354
173
+ msgid "no one that I know"
174
+ msgstr "nessuno di mia conoscenza"
175
+
176
+ #: lib/rbot/core/auth.rb:342 lib/rbot/core/auth.rb:355
177
+ msgid "my boss"
178
+ msgstr "il mio padrone"
179
+
180
+ #: lib/rbot/core/auth.rb:362
181
+ msgid ""
182
+ "login [<botuser>] [<pass>]: logs in to the bot as botuser <botuser> with "
183
+ "password <pass>. When using the full form, you must contact the bot in "
184
+ "private. <pass> can be omitted if <botuser> allows login-by-mask and your "
185
+ "netmask is among the known ones. if <botuser> is omitted too autologin will "
186
+ "be attempted"
187
+ msgstr ""
188
+ "login [<botuser>] [<pass>]: ti identifica col bot come botuser <botuser> "
189
+ "usando la password <pass>. Per usare la forma completa devi contattare il "
190
+ "bot in privato. <pass> può essere omessa se <botuser> permette il login-by-"
191
+ "mask e la tua netmask è tra quelle conosciute. se anche <botuser> viene "
192
+ "omesso tenterò il login automatico"
193
+
194
+ #: lib/rbot/core/auth.rb:364
195
+ msgid "whoami: names the botuser you're linked to"
196
+ msgstr "whoami: fornisce il nome del botuser a cui sei identificato"
197
+
198
+ #: lib/rbot/core/auth.rb:366
199
+ msgid "who is <user>: names the botuser <user> is linked to"
200
+ msgstr ""
201
+ "who is <utente>: fornisce il nome del botuser a cui è identificato <utente>"
202
+
203
+ #: lib/rbot/core/auth.rb:370
204
+ msgid ""
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
+ msgstr ""
209
+ "un permesso viene specificato come modulo::percorso::per::il::comando; per "
210
+ "abilitarlo, premetti un +; per disabilitarlo, premetti un -; per "
211
+ "reimpostarlo (+reset+) non usare alcun prefisso"
212
+
213
+ #: lib/rbot/core/auth.rb:372
214
+ msgid ""
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
+ msgstr ""
219
+ "permissions [re]set <permission> [in <channel>] for <user>: imposta o "
220
+ "reimposta i permessi per il botuser <user> nel canale <channel> (usa ? per "
221
+ "cambiare i permessi delle comunicazioni private)"
222
+
223
+ #: lib/rbot/core/auth.rb:374
224
+ msgid "permissions view [for <user>]: display the permissions for user <user>"
225
+ msgstr "permissions view [for <user>]: mostra i permessi per l'utente <user>"
226
+
227
+ #: lib/rbot/core/auth.rb:376
228
+ msgid ""
229
+ "permissions search <pattern>: display the permissions associated with the "
230
+ "commands matching <pattern>"
231
+ msgstr ""
232
+ "permissions search <pattern>: mostra i permessi associati ai comandi che "
233
+ "corrispondono a <pattern>"
234
+
235
+ #: lib/rbot/core/auth.rb:378
236
+ msgid "permission topics: syntax, (re)set, view, search"
237
+ msgstr "argomenti di permission: syntax, (re)set, view, search"
238
+
239
+ #: lib/rbot/core/auth.rb:383
240
+ msgid ""
241
+ "user show <what> : shows info about the user; <what> can be any of "
242
+ "autologin, login-by-mask, netmasks"
243
+ msgstr ""
244
+ "user show <what>: mostra informazioni sull'utente; <what> può essere "
245
+ "autologin, login-by-mask, netmask"
246
+
247
+ #: lib/rbot/core/auth.rb:385
248
+ msgid ""
249
+ "user enable|disable <what> : turns on or off <what> (autologin, login-by-"
250
+ "mask)"
251
+ msgstr ""
252
+ "user enable|disable <what>: abilita o disabilita <what> per l'utente (<what> "
253
+ "può essere autologin o login-by-mask)"
254
+
255
+ #: lib/rbot/core/auth.rb:387
256
+ msgid ""
257
+ "user set password <blah> : sets the user password to <blah>; passwords can "
258
+ "only contain upper and lowercase letters and numbers, and must be at least 4 "
259
+ "characters long"
260
+ msgstr ""
261
+ "user set password <blah>: imposta la password per l'utente; la password deve "
262
+ "essere lunga almeno 4 caratteri e può contenere solo lettere maiuscole e "
263
+ "minuscole, e numeri"
264
+
265
+ #: lib/rbot/core/auth.rb:389
266
+ msgid ""
267
+ "user add|rm netmask <mask> : adds/removes netmask <mask> from the list of "
268
+ "netmasks known to the botuser you're linked to"
269
+ msgstr ""
270
+ "user add|rm netmask <mask>: aggiunge o rimuove la netmask <mask> dalla lista "
271
+ "delle netmask conosciute dal botuser a cui sei identificato"
272
+
273
+ #: lib/rbot/core/auth.rb:391
274
+ msgid ""
275
+ "user reset <what> : resets <what> to the default values. <what> can be "
276
+ "+netmasks+ (the list will be emptied), +autologin+ or +login-by-mask+ (will "
277
+ "be reset to the default value) or +password+ (a new one will be generated "
278
+ "and you'll be told in private)"
279
+ msgstr ""
280
+ "user reset <what>: reimposta <what> ai valor predefiniti. <what> può essere "
281
+ "+netmasks+ (la lista verrà svuotata), +autologin+ o +login-by-mask+ "
282
+ "(verranno reimpostati ai valori predefiniti) o +password+ (una nuova "
283
+ "password verrà generata e ti verrà comunicata in privato)"
284
+
285
+ #: lib/rbot/core/auth.rb:393
286
+ msgid ""
287
+ "user tell <who> the password for <botuser> : contacts <who> in private to "
288
+ "tell him/her the password for <botuser>"
289
+ msgstr ""
290
+ "user tell <who> the password for <botuser>: contatta <who> in privato per "
291
+ "comunicargli la password per <botuser>"
292
+
293
+ #: lib/rbot/core/auth.rb:395
294
+ msgid ""
295
+ "user create <name> <password> : create botuser named <name> with password "
296
+ "<password>. The password can be omitted, in which case a random one will be "
297
+ "generated. The <name> should only contain alphanumeric characters and the "
298
+ "underscore (_)"
299
+ msgstr ""
300
+ "user create <name> <password>: crea un botuser chiamato <name> con password "
301
+ "<password>. La password può essere omessa, nel qual caso ne verrà generata "
302
+ "una casuale. <name> può contenere solo caratteri alfanumerici ed il "
303
+ "carattere di sottolineatura (_)"
304
+
305
+ #: lib/rbot/core/auth.rb:397
306
+ msgid "user list : lists all the botusers"
307
+ msgstr "user list: elenca i botuser"
308
+
309
+ #: lib/rbot/core/auth.rb:399
310
+ msgid ""
311
+ "user destroy <botuser> : destroys <botuser>. This function %{highlight}must%"
312
+ "{highlight} be called in two steps. On the first call <botuser> is queued "
313
+ "for destruction. On the second call, which must be in the form 'user confirm "
314
+ "destroy <botuser>', the botuser will be destroyed. If you want to cancel the "
315
+ "destruction, issue the command 'user cancel destroy <botuser>'"
316
+ msgstr ""
317
+ "user destroy <botuser> : distrugge l'utente <botuser>; questa funzione %"
318
+ "{highlight}deve%{highlight} essere chiamata in due passi. Nella prima "
319
+ "chiamata <botuser> verrà marcato per la distruzione. Nella seconda chiamata, "
320
+ "che deve essere nella forma 'user confirm destroy <botuser>', il botuser "
321
+ "verrà distrutto. per annullare la distruzione usa il comando 'user cancel "
322
+ "destroy <botuser>'"
323
+
324
+ #: lib/rbot/core/auth.rb:401
325
+ msgid ""
326
+ "user topics: show, enable|disable, add|rm netmask, set, reset, tell, create, "
327
+ "list, destroy"
328
+ msgstr ""
329
+ "argomenti per user: show, enable|disable add|rm, netmask, set, reset, tell, "
330
+ "create, list, destroy"
331
+
332
+ #: lib/rbot/core/auth.rb:404
333
+ msgid ""
334
+ "auth <masterpassword>: log in as the bot owner; other commands: login, "
335
+ "whoami, permissions syntax, permissions [re]set, permissions view, user, "
336
+ "meet, hello, allow, prevent"
337
+ msgstr ""
338
+ "auth <masterpassword>: ti identifica come il padrone del bot; altri comandi: "
339
+ "login, whoami, permission syntax, permissions [re]set, permissions view, "
340
+ "user, meet, hello, allow, prevent"
341
+
342
+ #: lib/rbot/core/auth.rb:406
343
+ msgid ""
344
+ "meet <nick> [as <user>]: creates a bot user for nick, calling it user "
345
+ "(defaults to the nick itself)"
346
+ msgstr ""
347
+ "meet <nick> [as <user>]: crea un bot user per il dato nick, chiamandolo user "
348
+ "(predefinito: il nick stesso)"
349
+
350
+ #: lib/rbot/core/auth.rb:408
351
+ msgid "hello: creates a bot user for the person issuing the command"
352
+ msgstr "hello: crea un botuser per la persona che esegue il comando"
353
+
354
+ #: lib/rbot/core/auth.rb:410
355
+ msgid ""
356
+ "allow <user> to do <sample command> [<where>]: gives botuser <user> the "
357
+ "permissions to execute a command such as the provided sample command (in "
358
+ "private or in channel, according to the optional <where>)"
359
+ msgstr ""
360
+ "abilita <utente> ad eseguire <comando d'esempio> [<dove>]: da' all'utente "
361
+ "del bot <utente> i permessi per eseguire un comando come quello fornito come "
362
+ "esempio (in privato o nel canale, a seconda dell'opzione <dove>)"
363
+
364
+ #: lib/rbot/core/auth.rb:412
365
+ msgid ""
366
+ "deny <user> from doing <sample command> [<where>]: removes from botuser "
367
+ "<user> the permissions to execute a command such as the provided sample "
368
+ "command (in private or in channel, according to the optional <where>)"
369
+ msgstr ""
370
+ "impedisce all'<utente> di esguir <comando d'esempio> [<dove>]: toglie "
371
+ "all'utente del bot <botuser>i permessi er eseguire un comando come quello "
372
+ "fornito come esempio (in privato o nel canale, a seconda dell'opzione <dove>)"
373
+
374
+ #: lib/rbot/core/auth.rb:414
375
+ msgid ""
376
+ "auth commands: auth, login, whoami, who, permission[s], user, meet, hello, "
377
+ "allow, deny"
378
+ msgstr ""
379
+ "comandi auth: auth, login, whoami, permission[s], user, neet, hello, allow, "
380
+ "deny"
381
+
382
+ #: lib/rbot/core/auth.rb:419
383
+ msgid "sorry, I need more arguments to %{command}"
384
+ msgstr "scusa, ma mi servono più argomenti per %{command}"
385
+
386
+ #: lib/rbot/core/auth.rb:423
387
+ msgid "I can only %{command} these: %{arguments}"
388
+ msgstr "posso usare %{command} solo su: %{arguments}"
389
+
390
+ #: lib/rbot/core/auth.rb:458
391
+ msgid "no such bot user %{user}"
392
+ msgstr "nessun botuser %{user}"
393
+
394
+ #: lib/rbot/core/auth.rb:461
395
+ msgid "you can't mess with %{user}"
396
+ msgstr "non puoi alterare %{user}"
397
+
398
+ #: lib/rbot/core/auth.rb:473
399
+ msgid "you can't see the properties of %{user}"
400
+ msgstr "non puoi vedere le proprietà di %{user}"
401
+
402
+ #: lib/rbot/core/auth.rb:482
403
+ msgid "no way I'm telling you the master password!"
404
+ msgstr "non esiste proprio che io ti dica la password del padrone!"
405
+
406
+ #: lib/rbot/core/auth.rb:483
407
+ msgid "you can't ask for someone else's password"
408
+ msgstr "non puoi chiedere la password di qualcun altro"
409
+
410
+ #: lib/rbot/core/auth.rb:485
411
+ msgid ""
412
+ "c'mon, you can't be asking me seriously to tell you the password in public!"
413
+ msgstr ""
414
+ "non mi stai chiedendo veramente di dirti la passord in pubblico, spero!"
415
+
416
+ #: lib/rbot/core/auth.rb:486
417
+ msgid "the password for %{user} is %{password}"
418
+ msgstr "la password per %{user} è %{password}"
419
+
420
+ #: lib/rbot/core/auth.rb:500
421
+ msgid "can %{action}"
422
+ msgstr "può fare %{action}"
423
+
424
+ #: lib/rbot/core/auth.rb:502
425
+ msgid "can not %{action}"
426
+ msgstr "non può fare %{action}"
427
+
428
+ #: lib/rbot/core/auth.rb:506
429
+ msgid "knows no netmasks"
430
+ msgstr "non conosce netmask"
431
+
432
+ #: lib/rbot/core/auth.rb:508
433
+ msgid "knows %{netmasks}"
434
+ msgstr "conosce %{netmasks}"
435
+
436
+ #: lib/rbot/core/auth.rb:515 lib/rbot/core/auth.rb:542
437
+ #: lib/rbot/core/auth.rb:560 lib/rbot/core/auth.rb:592
438
+ msgid "you can't change the default user"
439
+ msgstr "non puoi cambiare l'utente predefinito"
440
+
441
+ #: lib/rbot/core/auth.rb:516 lib/rbot/core/auth.rb:544
442
+ #: lib/rbot/core/auth.rb:562 lib/rbot/core/auth.rb:594
443
+ msgid "you can't edit %{user}"
444
+ msgstr "non puoi modificare %{user}"
445
+
446
+ #: lib/rbot/core/auth.rb:531 lib/rbot/core/auth.rb:578
447
+ msgid "I ignored %{things} because %{reason}"
448
+ msgstr "ho ignorato %{things} perché %{reason}"
449
+
450
+ #: lib/rbot/core/auth.rb:535 lib/rbot/core/auth.rb:582
451
+ msgid "I haven't changed anything"
452
+ msgstr "non ho cambiato nulla"
453
+
454
+ #: lib/rbot/core/auth.rb:553
455
+ msgid "is that a joke? setting the password in public?"
456
+ msgstr "scherzi? cambiare la password in pubblico?"
457
+
458
+ #: lib/rbot/core/auth.rb:585
459
+ msgid "the password for %{user} is now %{password}"
460
+ msgstr "la password per %{user} è ora %{password}"
461
+
462
+ #: lib/rbot/core/auth.rb:599
463
+ msgid ""
464
+ "I can only add/remove netmasks. See +help user add+ for more instructions"
465
+ msgstr ""
466
+ "Posso aggiungere e rimuovere solo le netmask. Vedi anche +help user add+ per "
467
+ "ulteriori istruzioni"
468
+
469
+ #: lib/rbot/core/auth.rb:620
470
+ msgid "sorry, I don't know how to %{request}"
471
+ msgstr "spiacente non so come fare %{request}"
472
+
473
+ #: lib/rbot/core/auth.rb:623
474
+ msgid "couldn't %{cmd}: %{exception}"
475
+ msgstr "impossibile effettuare il login: %{exception}"
476
+
477
+ #: lib/rbot/core/auth.rb:652
478
+ msgid ""
479
+ "you are now registered as %{buname}. I created a random password for you : %"
480
+ "{pass} and you can change it at any time by telling me 'user set password "
481
+ "<password>' in private"
482
+ msgstr ""
483
+ "sei adesso registrato come %{buname}. ho creato una password casuale per "
484
+ "te : %{pass} ma puoi cambiarla in qualsiasi momento scrivendomi 'user set "
485
+ "password <password>' in privato "
486
+
487
+ #: lib/rbot/core/auth.rb:659
488
+ msgid "but I already know %{buname}"
489
+ msgstr "ma io conosco già %{buname}"
490
+
491
+ #: lib/rbot/core/auth.rb:661
492
+ msgid "I had problems meeting %{nick}: %{e}"
493
+ msgstr "ho problemi a incontrare %{nick}: %{e}"
494
+
495
+ #: lib/rbot/core/auth.rb:670
496
+ msgid "couldn't find botuser %{user}"
497
+ msgstr "non conosco alcun botuser %{user}"
498
+
499
+ #: lib/rbot/core/auth.rb:672
500
+ msgid "I'm not telling the master password to anyone, pal"
501
+ msgstr "la password del padrone non la dico a nessuno, compare"
502
+
503
+ #: lib/rbot/core/auth.rb:673
504
+ msgid "the password for botuser %{user} is %{password}"
505
+ msgstr "la password per %{user} è %{password}"
506
+
507
+ #: lib/rbot/core/auth.rb:676
508
+ msgid "I told %{user} that %{message}"
509
+ msgstr "ho detto a %{user} che %{message}"
510
+
511
+ #: lib/rbot/core/auth.rb:682
512
+ msgid "are you nuts, creating a botuser with a publicly known password?"
513
+ msgstr "sei scemo, a creare botuser con una password in pubblico?"
514
+
515
+ #: lib/rbot/core/auth.rb:687
516
+ msgid "failed to create %{user}: %{exception}"
517
+ msgstr "impossibile creare %{user}: %{exception}"
518
+
519
+ #: lib/rbot/core/auth.rb:691
520
+ msgid "created botuser %{user}"
521
+ msgstr "botuser creato %{user}"
522
+
523
+ #: lib/rbot/core/auth.rb:699
524
+ msgid " (queued for destruction)"
525
+ msgstr "(in coda per la distruzione)"
526
+
527
+ #: lib/rbot/core/auth.rb:702
528
+ msgid "I have no botusers other than the default ones"
529
+ msgstr "non ho botuser se non i predefiniti"
530
+
531
+ #: lib/rbot/core/auth.rb:703
532
+ msgid "botuser: %{list}"
533
+ msgid_plural "botusers: %{list}"
534
+ msgstr[0] "botuser: %{list}"
535
+ msgstr[1] "botuser: %{list}"
536
+
537
+ #: lib/rbot/core/auth.rb:710
538
+ msgid "You can't destroy %{user}"
539
+ msgstr "non puoi distruggere %{user}"
540
+
541
+ #: lib/rbot/core/auth.rb:720
542
+ msgid "no such botuser %{user}"
543
+ msgstr "nessun botuser %{user}"
544
+
545
+ #: lib/rbot/core/auth.rb:727
546
+ msgid "%{user} removed from the destruction queue"
547
+ msgstr "%{user} rimosso dalla coda per la distruzione"
548
+
549
+ #: lib/rbot/core/auth.rb:729
550
+ msgid "%{user} was not queued for destruction"
551
+ msgstr "%{user} non era in coda per la distruzione"
552
+
553
+ #: lib/rbot/core/auth.rb:734
554
+ msgid ""
555
+ "%{user} already queued for destruction, use %{highlight}user confirm destroy "
556
+ "%{user}%{highlight} to destroy it"
557
+ msgstr ""
558
+ "%{user} era già in coda per la distruzione, usa %{highlight}user destroy %"
559
+ "{user} <password>%{highlight} per distruggerlo"
560
+
561
+ #: lib/rbot/core/auth.rb:737
562
+ msgid ""
563
+ "%{user} queued for destruction, use %{highlight}user confirm destroy %{user}%"
564
+ "{highlight} to destroy it"
565
+ msgstr ""
566
+ "%{user} messo in coda per la distruzione, usa %{highlight}user destroy %"
567
+ "{user} <password>%{highlight} per distruggerlo"
568
+
569
+ #: lib/rbot/core/auth.rb:741
570
+ msgid "%{user} is not queued for destruction yet"
571
+ msgstr "%{user} non è ancora in coda per la distruzione"
572
+
573
+ #: lib/rbot/core/auth.rb:750 lib/rbot/core/auth.rb:790
574
+ msgid "failed: %{exception}"
575
+ msgstr "fallito: %{exception}"
576
+
577
+ #: lib/rbot/core/auth.rb:752
578
+ msgid "botuser %{user} destroyed"
579
+ msgstr "botuser %{user} distrutto"
580
+
581
+ #: lib/rbot/core/auth.rb:759
582
+ msgid "please don't touch the default users"
583
+ msgstr "per favore non toccare gli utenti predefiniti"
584
+
585
+ #: lib/rbot/core/auth.rb:768
586
+ msgid "no such botuser %{source}"
587
+ msgstr "nessun botuser %{source}"
588
+
589
+ #: lib/rbot/core/auth.rb:770
590
+ msgid "botuser %{dest} exists already"
591
+ msgstr "il botuser %{dest} esiste già"
592
+
593
+ #: lib/rbot/core/auth.rb:793
594
+ msgid "botuser %{source} copied to %{dest}"
595
+ msgstr "botuser %{source} copiato in %{dest}"
596
+
597
+ #: lib/rbot/core/auth.rb:796
598
+ msgid "botuser %{source} renamed to %{dest}"
599
+ msgstr "botuser %{source} rinominato %{dest}"
600
+
601
+ #: lib/rbot/core/auth.rb:816
602
+ msgid "selecting data to export ..."
603
+ msgstr "sto selezionando i dati da esportare ..."
604
+
605
+ #: lib/rbot/core/auth.rb:832
606
+ msgid "preparing data for export ..."
607
+ msgstr "preparo i dati da esportare ..."
608
+
609
+ #: lib/rbot/core/auth.rb:855
610
+ msgid "failed to prepare data: %{exception}"
611
+ msgstr "impossibile preparare i dati: %{exception}"
612
+
613
+ #: lib/rbot/core/auth.rb:860
614
+ msgid "exporting to %{file} ..."
615
+ msgstr "esporto su %{file} ..."
616
+
617
+ #: lib/rbot/core/auth.rb:867
618
+ msgid "failed to export users: %{exception}"
619
+ msgstr "impossibile esportare gli utenti: %{exception}"
620
+
621
+ #: lib/rbot/core/auth.rb:871 lib/rbot/core/auth.rb:949
622
+ msgid "done"
623
+ msgstr "fatto"
624
+
625
+ #: lib/rbot/core/auth.rb:888
626
+ msgid "reading %{file} ..."
627
+ msgstr "leggo %{file} ..."
628
+
629
+ #: lib/rbot/core/auth.rb:892
630
+ msgid "failed to import from: %{exception}"
631
+ msgstr "impossibile importare: %{exception}"
632
+
633
+ #: lib/rbot/core/auth.rb:899
634
+ msgid "selecting data to import ..."
635
+ msgstr "seleziono i dati da importare ..."
636
+
637
+ #: lib/rbot/core/auth.rb:909
638
+ msgid "parsing data from import ..."
639
+ msgstr "elaboro i dati da importare ..."
640
+
641
+ #: lib/rbot/core/auth.rb:929
642
+ msgid "failed to parse data: %{exception}"
643
+ msgstr "impossibile elaborare i dati: %{exception}"
644
+
645
+ #: lib/rbot/core/basics.rb:107
646
+ msgid "quit [<message>] => quit IRC with message <message>"
647
+ msgstr "quit [<messaggio>] => esce da IRC con il messaggio <messaggio>"
648
+
649
+ #: lib/rbot/core/basics.rb:109
650
+ msgid "restart => completely stop and restart the bot (including reconnect)"
651
+ msgstr ""
652
+ "restart => ferma il bot completamente e lo riavvia (facendolo anche "
653
+ "ricollegare)"
654
+
655
+ #: lib/rbot/core/basics.rb:113
656
+ msgid "part"
657
+ msgstr "esci"
658
+
659
+ #: lib/rbot/core/basics.rb:115
660
+ msgid "hide => part all channels"
661
+ msgstr "hide => lascia tutti i canali"
662
+
663
+ #: lib/rbot/core/basics.rb:117
664
+ msgid ""
665
+ "say <channel>|<nick> <message> => say <message> to <channel> or in private "
666
+ "message to <nick>"
667
+ msgstr ""
668
+ "say <canale>|<nick> <messaggio> => invia <messaggio> nel <canale> o in "
669
+ "unmessagio privato a <nick>"
670
+
671
+ #: lib/rbot/core/basics.rb:119
672
+ msgid ""
673
+ "action <channel>|<nick> <message> => does a /me <message> to <channel> or in "
674
+ "private message to <nick>"
675
+ msgstr ""
676
+ "action <canale>|<nick> <messaggio> => invia un /me <messaggio> nel <canale> "
677
+ "o inmessaggi privato a <nick>"
678
+
679
+ #: lib/rbot/core/basics.rb:121
680
+ msgid ""
681
+ "quiet [in here|<channel>] => with no arguments, stop speaking in all "
682
+ "channels, if \"in here\", stop speaking in this channel, or stop speaking in "
683
+ "<channel>"
684
+ msgstr ""
685
+ "quiet [in here|<canale>] => senza argomenti, smette di parlare in tutti i "
686
+ "canali, se si specifica \"in here\", smette di parlare in questo canale, "
687
+ "oppure smette di parlare in <canale>"
688
+
689
+ #: lib/rbot/core/basics.rb:123
690
+ msgid ""
691
+ "talk [in here|<channel>] => with no arguments, resume speaking in all "
692
+ "channels, if \"in here\", resume speaking in this channel, or resume "
693
+ "speaking in <channel>"
694
+ msgstr ""
695
+ "talk [in here|<canale>] => senza argomenti, ricomincia a parlare in tutti i "
696
+ "canali, se \"in here\", ricomincia a parlare in questo canale, oppure "
697
+ "ricomincia a parlare in <canale>"
698
+
699
+ #: lib/rbot/core/basics.rb:125
700
+ msgid "ping => replies with a pong"
701
+ msgstr "ping => risponde con un pong"
702
+
703
+ #: lib/rbot/core/basics.rb:127
704
+ msgid ""
705
+ "mode <channel> <mode> <nicks> => set channel modes for <nicks> on <channel> "
706
+ "to <mode>"
707
+ msgstr ""
708
+ "mode <canale> <mode> <nicks> => imposta i modi del canale per <nicks> nel "
709
+ "<canale> "
710
+
711
+ #: lib/rbot/core/basics.rb:133
712
+ msgid ""
713
+ "%{name}: quit, restart, join, part, hide, save, say, action, topic, quiet, "
714
+ "talk, ping, mode"
715
+ msgstr ""
716
+ "%{name}: quit, restart, join, part, hide, save, say, action, topic,quiet, "
717
+ "talk, ping, mode"
718
+
719
+ #: lib/rbot/core/config.rb:12
720
+ msgid " [%{secs} ago]"
721
+ msgstr " [%{secs} fa]"
722
+
723
+ #: lib/rbot/core/config.rb:18
724
+ msgid "I'm a v. %{version}%{ago} rubybot%{copyright}%{url}"
725
+ msgstr "Sono un rubybot v. %{version}%{ago}%{copyright}%{url}"
726
+
727
+ #: lib/rbot/core/config.rb:39
728
+ msgid "no such module %{module}"
729
+ msgstr "non esiste alcun modulo %{module}"
730
+
731
+ #: lib/rbot/core/config.rb:55 lib/rbot/core/config.rb:66
732
+ #: lib/rbot/core/config.rb:88 lib/rbot/core/config.rb:101
733
+ #: lib/rbot/core/config.rb:127 lib/rbot/core/config.rb:150
734
+ msgid "no such config key %{key}"
735
+ msgstr "non esiste una chiave di configurazione %{key}"
736
+
737
+ #: lib/rbot/core/config.rb:78
738
+ msgid "no config key found matching %{r}"
739
+ msgstr "nessuna chiave di configurazione trovata corrispondente a %{r}"
740
+
741
+ #: lib/rbot/core/config.rb:80
742
+ msgid "possible keys: %{kl}"
743
+ msgstr "chiavi possibili: %{kl}"
744
+
745
+ #: lib/rbot/core/config.rb:93 lib/rbot/core/config.rb:112
746
+ #: lib/rbot/core/config.rb:142 lib/rbot/core/config.rb:165
747
+ msgid "this config change will take effect on the next restart"
748
+ msgstr ""
749
+ "questo cambiamente di configurazione richiede un riavvio per diventare "
750
+ "effettivo"
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 ""
756
+ "questo cambiamente di configurazione richiede un rescan per diventare "
757
+ "effettivo"
758
+
759
+ #: lib/rbot/core/config.rb:108
760
+ msgid "failed to set %{key}: %{error}"
761
+ msgstr "impossibile impostare %{key}: %{error}"
762
+
763
+ #: lib/rbot/core/config.rb:131 lib/rbot/core/config.rb:154
764
+ msgid "config key %{key} is not an array"
765
+ msgstr "la chiave di configurazione %{key} non è una lista"
766
+
767
+ #: lib/rbot/core/config.rb:138
768
+ msgid "failed to add %{value} to %{key}: %{error}"
769
+ msgstr "impossibile aggiungere %{value} a %{key}: %{error}"
770
+
771
+ #: lib/rbot/core/config.rb:161
772
+ msgid "failed to remove %{value} from %{key}: %{error}"
773
+ msgstr "impossibile rimuovere %{value} da %{key}: %{errore}"
774
+
775
+ #: lib/rbot/core/config.rb:175
776
+ msgid "saving ..."
777
+ msgstr "salvataggio in corso ..."
778
+
779
+ #: lib/rbot/core/config.rb:177
780
+ msgid "rescanning ..."
781
+ msgstr "rescan ..."
782
+
783
+ #: lib/rbot/core/config.rb:179
784
+ msgid "done. %{plugin_status}"
785
+ msgstr "fatto. %{plugin_status}"
786
+
787
+ #: lib/rbot/core/config.rb:221
788
+ msgid ""
789
+ "config list => list configuration modules, config list <module> => list "
790
+ "configuration keys for module <module>"
791
+ msgstr ""
792
+ "config list => elenca i moduli di configurazione, config list <modulo> => "
793
+ "elenca le chiavi di configurazione per il <modulo>"
794
+
795
+ #: lib/rbot/core/config.rb:223
796
+ msgid "config get <key> => get configuration value for key <key>"
797
+ msgstr ""
798
+ "config get <chiave> => restituisce il valore di configurazione per la "
799
+ "<chiave>"
800
+
801
+ #: lib/rbot/core/config.rb:225
802
+ msgid "reset key <key> to the default"
803
+ msgstr "reset key <chiave> => ripristina il valore di default di <chiave>"
804
+
805
+ #: lib/rbot/core/config.rb:227
806
+ msgid ""
807
+ "config set <key> <value> => set configuration value for key <key> to <value>"
808
+ msgstr ""
809
+ "config set <key> <valore> => assegna a <chiave> il valore di configurazione "
810
+ "<valore>"
811
+
812
+ #: lib/rbot/core/config.rb:229
813
+ msgid "config desc <key> => describe what key <key> configures"
814
+ msgstr "config desc <chiavey> => descrive ciò che la <chiave> configura"
815
+
816
+ #: lib/rbot/core/config.rb:231
817
+ msgid ""
818
+ "config add <value> to <key> => add value <value> to key <key> if <key> is an "
819
+ "array"
820
+ msgstr ""
821
+ "config add <valore> to <chiave> => aggiunge il <valore> alla <chiave> se la "
822
+ "<chiave> è un array"
823
+
824
+ #: lib/rbot/core/config.rb:233
825
+ msgid ""
826
+ "config rm <value> from <key> => remove value <value> from key <key> if <key> "
827
+ "is an array"
828
+ msgstr ""
829
+ "config rm <valore> from <chiave> => rimuove <valore> da <chiave> se <chiave> "
830
+ "è un array"
831
+
832
+ #: lib/rbot/core/config.rb:235
833
+ msgid ""
834
+ "config module - bot configuration. usage: list, desc, get, set, unset, add, "
835
+ "rm"
836
+ msgstr ""
837
+ "Modulo di configurazione - configurazione del bot. uso: list, desc, get, "
838
+ "set, unset, add, rm"
839
+
840
+ #: lib/rbot/core/config.rb:240
841
+ msgid "nick <newnick> => change the bot nick to <newnick>, if possible"
842
+ msgstr "nick <nick> => cerca di cambiare il nick in <nick>"
843
+
844
+ #: lib/rbot/core/config.rb:242
845
+ msgid "status => display some information on the bot's status"
846
+ msgstr "status => mostra alcune informazioni circa lo stato del bot"
847
+
848
+ #: lib/rbot/core/config.rb:244
849
+ msgid "save => save current dynamic data and configuration"
850
+ msgstr "save => salva i dati dinamici attuali e la configurazione"
851
+
852
+ #: lib/rbot/core/config.rb:246
853
+ msgid "rescan => reload modules and static facts"
854
+ msgstr "rescan => effettua il reload dei moduli e dei dati statici"
855
+
856
+ #: lib/rbot/core/config.rb:248
857
+ msgid "version => describes software version"
858
+ msgstr "version => descrive la versione del software"
859
+
860
+ #: lib/rbot/core/config.rb:250
861
+ msgid "config-related tasks: config, save, rescan, version, nick, status"
862
+ msgstr "config-related tasks: config, save, rescan, version, nick, status"
863
+
864
+ #: lib/rbot/core/filters_ui.rb:25
865
+ msgid "no filters in group %{g}"
866
+ msgstr "nessun filtro nel gruppo %{g}"
867
+
868
+ #: lib/rbot/core/filters_ui.rb:27
869
+ msgid "no known filters"
870
+ msgstr "nessun filtro conosciuto"
871
+
872
+ #: lib/rbot/core/filters_ui.rb:30
873
+ msgid "known filters: "
874
+ msgstr "filtri conosciuti: "
875
+
876
+ #: lib/rbot/core/filters_ui.rb:38
877
+ msgid "no known filter groups"
878
+ msgstr "nessun gruppo di filtri conosciuto"
879
+
880
+ #: lib/rbot/core/filters_ui.rb:40
881
+ msgid "known filter groups: "
882
+ msgstr "gruppi di filtri conosciuti: "
883
+
884
+ #: lib/rbot/core/filters_ui.rb:50
885
+ msgid "no filters match %{pat}"
886
+ msgstr "nessun filtro corrispondente a %{pat}"
887
+
888
+ #: lib/rbot/core/filters_ui.rb:52
889
+ msgid "filters matching %{pat}: "
890
+ msgstr "filtri corrispondenti a %{pat}: "
891
+
892
+ #: lib/rbot/core/userdata.rb:146
893
+ msgid "%{key} data for %{user}: %{data}"
894
+ msgstr "dati %{key} per %{user}: %{data}"
895
+
896
+ #: lib/rbot/core/userdata.rb:152
897
+ msgid "sorry, no %{key} data for %{user}"
898
+ msgstr "spiacente, nessun dato %{key} per %{user} "
899
+
900
+ #: lib/rbot/core/utils/utils.rb:202
901
+ msgid "year"
902
+ msgstr "anno"
903
+
904
+ #: lib/rbot/core/utils/utils.rb:202
905
+ msgid "years"
906
+ msgstr "anni"
907
+
908
+ #: lib/rbot/core/utils/utils.rb:204
909
+ msgid "month"
910
+ msgstr "mese"
911
+
912
+ #: lib/rbot/core/utils/utils.rb:204
913
+ msgid "months"
914
+ msgstr "mesi"
915
+
916
+ #: lib/rbot/core/utils/utils.rb:206
917
+ msgid "day"
918
+ msgstr "giorno"
919
+
920
+ #: lib/rbot/core/utils/utils.rb:206
921
+ msgid "days"
922
+ msgstr "giorni"
923
+
924
+ #: lib/rbot/core/utils/utils.rb:208
925
+ msgid "hour"
926
+ msgstr "ora"
927
+
928
+ #: lib/rbot/core/utils/utils.rb:208
929
+ msgid "hours"
930
+ msgstr "ore"
931
+
932
+ #: lib/rbot/core/utils/utils.rb:210
933
+ msgid "minute"
934
+ msgstr "minuto"
935
+
936
+ #: lib/rbot/core/utils/utils.rb:210
937
+ msgid "minutes"
938
+ msgstr "minuti"
939
+
940
+ #: lib/rbot/core/utils/utils.rb:212
941
+ msgid "second"
942
+ msgstr "secondo"
943
+
944
+ #: lib/rbot/core/utils/utils.rb:212
945
+ msgid "seconds"
946
+ msgstr "secondi"
947
+
948
+ #: lib/rbot/core/utils/utils.rb:219
949
+ msgid " and "
950
+ msgstr " e "
951
+
952
+ #: lib/rbot/core/utils/utils.rb:252
953
+ msgid "%{d} from now"
954
+ msgstr ""
955
+
956
+ #: lib/rbot/core/utils/utils.rb:254
957
+ msgid "%{d} ago"
958
+ msgstr "%{d} fa"
959
+
960
+ #: lib/rbot/core/utils/utils.rb:257
961
+ msgid "on %{date}"
962
+ msgstr "il %{action}"
963
+
964
+ #: lib/rbot/core/utils/utils.rb:266
965
+ msgid "less than a minute"
966
+ msgstr "meno di un minuto"
967
+
968
+ #: lib/rbot/core/utils/utils.rb:268
969
+ msgid "%{m} minutes"
970
+ msgstr "%{m} minuti"
971
+
972
+ #: lib/rbot/core/utils/utils.rb:270
973
+ msgid "about one hour"
974
+ msgstr "circa un'ora"
975
+
976
+ #: lib/rbot/core/utils/utils.rb:272
977
+ msgid "%{m} hours"
978
+ msgstr "%{m} ore"
979
+
980
+ #: lib/rbot/core/utils/utils.rb:274
981
+ msgid "one day"
982
+ msgstr "un giorno"
983
+
984
+ #: lib/rbot/core/utils/utils.rb:276
985
+ msgid "about one day"
986
+ msgstr "circa un giorno"
987
+
988
+ #: lib/rbot/core/utils/utils.rb:278
989
+ msgid "%{m} days"
990
+ msgstr "%{m} giorni"
991
+
992
+ #: lib/rbot/ircbot.rb:1233
993
+ msgid "help topics: "
994
+ msgstr "argomenti: "
995
+
996
+ #: lib/rbot/ircbot.rb:1235
997
+ msgid " (help <topic> for more info)"
998
+ msgstr " (help <argomento> per ulteriori informazioni)"
999
+
1000
+ #: lib/rbot/ircbot.rb:1238
1001
+ msgid "no help for topic %{topic}"
1002
+ msgstr "nessun aiuto disponibile su %{topic}"
1003
+
1004
+ #: lib/rbot/ircbot.rb:1249
1005
+ msgid ""
1006
+ "Uptime %{up}, %{plug} plugins active, %{sent} lines sent, %{recv} received."
1007
+ msgstr ""
1008
+ "Attivo da %{up}, %{plug} plugin attivi, %{sent} righe spedite, %{recv} righe "
1009
+ "ricevute."
1010
+
1011
+ #: lib/rbot/plugins.rb:341
1012
+ msgid "incorrect usage, ask for help using '%{command}'"
1013
+ msgstr "uso errato, chiedi aiuto con '%{command}'"
1014
+
1015
+ #: lib/rbot/plugins.rb:665
1016
+ msgid "%{count} core module loaded"
1017
+ msgid_plural "%{count} core modules loaded"
1018
+ msgstr[0] "%{count} moduli di base caricati"
1019
+ msgstr[1] "%{count} modulo di base caricato"
1020
+
1021
+ #: lib/rbot/plugins.rb:668
1022
+ msgid "%{count} core module: %{list}"
1023
+ msgid_plural "%{count} core modules: %{list}"
1024
+ msgstr[0] "%{count} moduli di base: %{list}"
1025
+ msgstr[1] "%{count} modulo di base: %{list}"
1026
+
1027
+ #: lib/rbot/plugins.rb:674
1028
+ msgid "no core botmodules loaded"
1029
+ msgstr "nessun modulo di base caricato"
1030
+
1031
+ #: lib/rbot/plugins.rb:679
1032
+ msgid "%{count} plugin loaded"
1033
+ msgid_plural "%{count} plugins loaded"
1034
+ msgstr[0] "%{count} plugin caricati"
1035
+ msgstr[1] "%{count} plugin caricato"
1036
+
1037
+ #: lib/rbot/plugins.rb:682
1038
+ msgid "%{count} plugin: %{list}"
1039
+ msgid_plural "%{count} plugins: %{list}"
1040
+ msgstr[0] "%{count} plugin: %{list}"
1041
+ msgstr[1] "%{count} plugin: %{list}"
1042
+
1043
+ #: lib/rbot/plugins.rb:693
1044
+ msgid "%{highlight}%{count} plugin ignored%{highlight}"
1045
+ msgid_plural "%{highlight}%{count} plugins ignored%{highlight}"
1046
+ msgstr[0] "%{highlight}%{count} plugin ignorati%{highlight}"
1047
+ msgstr[1] "%{highlight}%{count} plugin ignorato%{highlight}"
1048
+
1049
+ #: lib/rbot/plugins.rb:698
1050
+ msgid ""
1051
+ "%{highlight}%{count} plugin ignored%{highlight}: use %{bold}%{command}%"
1052
+ "{bold} to see why"
1053
+ msgid_plural ""
1054
+ "%{highlight}%{count} plugins ignored%{highlight}: use %{bold}%{command}%"
1055
+ "{bold} to see why"
1056
+ msgstr[0] ""
1057
+ "%{highlight}%{count} plugin ignorati%{highlight}: usa %{bold}%{command}%"
1058
+ "{bold} per vedere perché"
1059
+ msgstr[1] ""
1060
+ "%{highlight}%{count} plugin ignorato%{highlight}: usa %{bold}%{command}%"
1061
+ "{bold} per vedere perché"
1062
+
1063
+ #: lib/rbot/plugins.rb:708
1064
+ msgid "%{highlight}%{count} plugin failed to load%{highlight}"
1065
+ msgid_plural "%{highlight}%{count} plugins failed to load%{highlight}"
1066
+ msgstr[0] "%{highlight}caricamento di %{count} plugin fallito%{highlight}"
1067
+ msgstr[1] "%{highlight}caricamento di %{count} plugin fallito%{highlight}"
1068
+
1069
+ #: lib/rbot/plugins.rb:713
1070
+ msgid ""
1071
+ "%{highlight}%{count} plugin failed to load%{highlight}: use %{bold}%"
1072
+ "{command}%{bold} to see why"
1073
+ msgid_plural ""
1074
+ "%{highlight}%{count} plugins failed to load%{highlight}: use %{bold}%"
1075
+ "{command}%{bold} to see why"
1076
+ msgstr[0] ""
1077
+ "%{highlight}caricamento di %{count} plugin fallito%{highlight}: usa %{bold}%"
1078
+ "{command}%{bold} per vedere perché"
1079
+ msgstr[1] ""
1080
+ "%{highlight}caricamento di %{count} plugin fallito%{highlight}: usa %{bold}%"
1081
+ "{command}%{bold} per vedere perché"
1082
+
1083
+ #: lib/rbot/plugins.rb:743
1084
+ msgid "no plugins failed to load"
1085
+ msgstr "nessun plugin ha fallito il caricamento"
1086
+
1087
+ #: lib/rbot/plugins.rb:745
1088
+ msgid ""
1089
+ "%{highlight}%{plugin}%{highlight} in %{dir} failed with error %{exception}: %"
1090
+ "{reason}"
1091
+ msgstr ""
1092
+ "%{highlight}%{plugin}%{highlight} in %{dir} fallito con errore %{exception}: "
1093
+ "%{reason}"
1094
+
1095
+ #: lib/rbot/plugins.rb:749
1096
+ msgid "at %{backtrace}"
1097
+ msgstr "in %{backtrace}"
1098
+
1099
+ #: lib/rbot/plugins.rb:755
1100
+ msgid "no plugins were ignored"
1101
+ msgstr "nessun plugin ignorato"
1102
+
1103
+ #: lib/rbot/plugins.rb:759
1104
+ msgid "overruled by previous"
1105
+ msgstr "preceduto da un omonimo"
1106
+
1107
+ #: lib/rbot/registry.rb:20
1108
+ msgid ""
1109
+ "upgrading old-style (rbot 0.9.5 or earlier) plugin registry to new format"
1110
+ msgstr ""
1111
+ "aggiornamento del registro dei plugin (versione 0.9.5 o precedente) al nuovo "
1112
+ "formato"
1113
+
1114
+ #: lib/rbot/registry.rb:40
1115
+ msgid ""
1116
+ "upgrading previous (rbot 0.9.9 or earlier) plugin registry to new split "
1117
+ "format"
1118
+ msgstr ""
1119
+ "aggiornamento del registro dei plugin (versione 0.9.9 o precedente) al nuovo "
1120
+ "formato"
1121
+
1122
+ #: lib/rbot/registry.rb:190
1123
+ msgid "marshal recovery failed, trying default"
1124
+ msgstr "recupero dati marshal fallito, tento di usare il valore predefinito"
1125
+
1126
+ #~ msgid "nick <nick> => attempt to change nick to <nick>"
1127
+ #~ msgstr "nick <nick> => cerca di cambiare il nick in <nick>"