rbot 0.9.14 → 0.9.15

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