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
+ # French 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-21 18:15+0100\n"
11
11
  "Last-Translator: Lagrange Marc <markocpc@gmail.com>\n"
12
12
  "Language-Team: French\n"
@@ -15,11 +15,11 @@ msgstr ""
15
15
  "Content-Transfer-Encoding: 8bit\n"
16
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\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 "[Lettres utilisés pour le moment: %{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> "
@@ -44,7 +44,7 @@ msgstr ""
44
44
  "revele une partie de la reponse, en montrant les lettres manquantes avec un "
45
45
  "* (asterisque)."
46
46
 
47
- #: data/rbot/plugins/games/wheelfortune.rb:232
47
+ #: data/rbot/plugins/games/wheelfortune.rb:242
48
48
  msgid ""
49
49
  "wof <channel> [category: <cat>,] clue: <clue>, answer: <ans> => set up a new "
50
50
  "question for the wheel-of-fortune game being played on channel <channel>. "
@@ -58,7 +58,7 @@ msgstr ""
58
58
  "categorie <categorie> peut être ommise. Si vous avez fais une erreur, vous "
59
59
  "pouvez utiliser 'wof replace' (voir l'aide) avant que la question sois dise"
60
60
 
61
- #: data/rbot/plugins/games/wheelfortune.rb:234
61
+ #: data/rbot/plugins/games/wheelfortune.rb:244
62
62
  msgid ""
63
63
  "wof <channel> replace <round> [category: <cat>,] [clue: <clue>,] [answer: "
64
64
  "<ans>] => fix the question for round <round> of the wheel-of-fortune game "
@@ -69,13 +69,13 @@ msgstr ""
69
69
  "fortune en cours dans <salon> en replacant la categorie et/ou l'indice et/ou "
70
70
  "la reponse"
71
71
 
72
- #: data/rbot/plugins/games/wheelfortune.rb:236
72
+ #: data/rbot/plugins/games/wheelfortune.rb:246
73
73
  msgid ""
74
74
  "wof cancel => cancels the wheel-of-fortune being played on the current "
75
75
  "channel"
76
76
  msgstr "wof cancel => annulle la roue de la fortune en cours"
77
77
 
78
- #: data/rbot/plugins/games/wheelfortune.rb:238
78
+ #: data/rbot/plugins/games/wheelfortune.rb:248
79
79
  msgid ""
80
80
  "wof buy <vowel> => buy the vowel <vowel>: the user buying the vowel will "
81
81
  "lose points equal to the vowel price, and the corresponding vowel will be "
@@ -85,7 +85,7 @@ msgstr ""
85
85
  "perd les points équivalents au prix de la voyelle, et la voyelle sera "
86
86
  "révellé dans la reponse (si presente)"
87
87
 
88
- #: data/rbot/plugins/games/wheelfortune.rb:240
88
+ #: data/rbot/plugins/games/wheelfortune.rb:250
89
89
  msgid ""
90
90
  "wof: wheel-of-fortune plugin. topics: play, category, clue, answer, replace, "
91
91
  "cancel, buy"
@@ -93,15 +93,15 @@ msgstr ""
93
93
  "wof: plugin roue de la fortune. aides: play, category, clue, answer, "
94
94
  "replace, cancel, buy"
95
95
 
96
- #: data/rbot/plugins/games/wheelfortune.rb:247
96
+ #: data/rbot/plugins/games/wheelfortune.rb:257
97
97
  msgid "you must specify a channel"
98
98
  msgstr "vous devez specifier un salon"
99
99
 
100
- #: data/rbot/plugins/games/wheelfortune.rb:253
100
+ #: data/rbot/plugins/games/wheelfortune.rb:263
101
101
  msgid "there's already a %{name} game on %{chan}, managed by %{who}"
102
102
  msgstr "il y a déjà un jeu %{name} sur %{chan}, gérer par %{who}"
103
103
 
104
- #: data/rbot/plugins/games/wheelfortune.rb:267
104
+ #: data/rbot/plugins/games/wheelfortune.rb:277
105
105
  msgid ""
106
106
  "%{who} just created a new %{name} game to %{max} points (%{single} per "
107
107
  "question, %{price} per vowel)"
@@ -109,7 +109,7 @@ msgstr ""
109
109
  "%{who} viens juste de créer un nouveau jeu %{name} à %{max} points (%"
110
110
  "{single} par question, %{price} par voyelle)"
111
111
 
112
- #: data/rbot/plugins/games/wheelfortune.rb:274
112
+ #: data/rbot/plugins/games/wheelfortune.rb:284
113
113
  msgid ""
114
114
  "ok, the game has been created. now add clues and answers with \"wof %{chan} "
115
115
  "[category: <category>,] clue: <clue>, answer: <ans>\". if the clue and "
@@ -121,28 +121,28 @@ msgstr ""
121
121
  "si l'indice ne tiens pas sur une ligne, ajoutez la reponse séparement avec "
122
122
  "\"wof %{chan} answer <reponse>\""
123
123
 
124
- #: data/rbot/plugins/games/wheelfortune.rb:282
125
- #: data/rbot/plugins/games/wheelfortune.rb:343
126
- #: data/rbot/plugins/games/wheelfortune.rb:412
127
- #: data/rbot/plugins/games/wheelfortune.rb:522
128
- #: data/rbot/plugins/games/wheelfortune.rb:559
124
+ #: data/rbot/plugins/games/wheelfortune.rb:292
125
+ #: data/rbot/plugins/games/wheelfortune.rb:353
126
+ #: data/rbot/plugins/games/wheelfortune.rb:423
127
+ #: data/rbot/plugins/games/wheelfortune.rb:536
128
+ #: data/rbot/plugins/games/wheelfortune.rb:573
129
129
  msgid "there's no %{name} game running on %{chan}"
130
130
  msgstr "il n'y a aucuns jeu %{name} en cours sur %{chan}"
131
131
 
132
- #: data/rbot/plugins/games/wheelfortune.rb:291
132
+ #: data/rbot/plugins/games/wheelfortune.rb:301
133
133
  msgid "you can't add questions to the %{name} game on %{chan}"
134
134
  msgstr "vous ne pouvez ajouter une question au jeu %{name} sur %{chan}"
135
135
 
136
- #: data/rbot/plugins/games/wheelfortune.rb:301
137
- #: data/rbot/plugins/games/wheelfortune.rb:383
136
+ #: data/rbot/plugins/games/wheelfortune.rb:311
137
+ #: data/rbot/plugins/games/wheelfortune.rb:394
138
138
  msgid "sorry, the answer cannot contain the '*' character"
139
139
  msgstr "désolé, la reponse ne peut pas contenir le caractère '*'"
140
140
 
141
- #: data/rbot/plugins/games/wheelfortune.rb:308
141
+ #: data/rbot/plugins/games/wheelfortune.rb:318
142
142
  msgid "ok, clue added for %{name} round %{count} on %{chan}: %{catclue}"
143
143
  msgstr "ok, indice ajouté pour %{name} tour %{count} sur %{chan}: %{catclue}"
144
144
 
145
- #: data/rbot/plugins/games/wheelfortune.rb:310
145
+ #: data/rbot/plugins/games/wheelfortune.rb:320
146
146
  msgid ""
147
147
  "there's already a pending clue for %{name} round %{count} on %{chan}: %"
148
148
  "{catclue}"
@@ -150,34 +150,34 @@ msgstr ""
150
150
  "il y a déjà un indice en suspend pour %{name} tour %{count} sur %{chan}: %"
151
151
  "{catclue}"
152
152
 
153
- #: data/rbot/plugins/games/wheelfortune.rb:323
153
+ #: data/rbot/plugins/games/wheelfortune.rb:333
154
154
  msgid ""
155
155
  "ok, QA added for %{name} round %{count} on %{chan}: %{catclue} => %{ans}"
156
156
  msgstr ""
157
157
  "ok, ajout du QA pour %{name} tour %{count} sur %{chan}: %{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 "il n'y a pas d'indices en attendre pour %{name} sur %{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 ""
167
167
  "quelquechose est faux, je ne peut pas comprendre ce que vous essayez de faire"
168
168
 
169
- #: data/rbot/plugins/games/wheelfortune.rb:352
169
+ #: data/rbot/plugins/games/wheelfortune.rb:362
170
170
  msgid "you can't replace questions to the %{name} game on %{chan}"
171
171
  msgstr "vous ne pouvez remplacer une questions du jeu %{name} sur %{chan}"
172
172
 
173
- #: data/rbot/plugins/games/wheelfortune.rb:365
173
+ #: data/rbot/plugins/games/wheelfortune.rb:375
174
174
  msgid ""
175
175
  "there are no questions in the %{name} game on %{chan} which can be replaced"
176
176
  msgstr ""
177
177
  "il n'y a aucunes questions dans le jeu %{name} sur %{chan} qui peuvent être "
178
178
  "remplacées"
179
179
 
180
- #: data/rbot/plugins/games/wheelfortune.rb:370
180
+ #: data/rbot/plugins/games/wheelfortune.rb:380
181
181
  msgid ""
182
182
  "you can only replace questions between rounds %{min} and %{max} in the %"
183
183
  "{name} game on %{chan}"
@@ -185,15 +185,15 @@ msgstr ""
185
185
  "vous pouvez seulement remplacer les questions entre les tours %{min} et %"
186
186
  "{max} dans le jeu %{name} sur %{chan}"
187
187
 
188
- #: data/rbot/plugins/games/wheelfortune.rb:398
188
+ #: data/rbot/plugins/games/wheelfortune.rb:409
189
189
  msgid ""
190
190
  "ok, replaced QA for %{name} round %{count} on %{chan}: %{catclue} => %{ans}"
191
191
  msgstr ""
192
192
  "ok, remplaçons QA pour %{name} tour %{count} sur %{chan}: %{catclue} => %"
193
193
  "{ans}"
194
194
 
195
- #: data/rbot/plugins/games/wheelfortune.rb:421
196
- #: data/rbot/plugins/games/wheelfortune.rb:528
195
+ #: data/rbot/plugins/games/wheelfortune.rb:435
196
+ #: data/rbot/plugins/games/wheelfortune.rb:542
197
197
  msgid ""
198
198
  "there are no %{name} questions for %{chan}, I'm waiting for %{who} to add "
199
199
  "them"
@@ -201,23 +201,23 @@ msgstr ""
201
201
  "il n'y a aucunes %{name} questions pour %{chan}, j'attend que %{who} en "
202
202
  "ajoute"
203
203
 
204
- #: data/rbot/plugins/games/wheelfortune.rb:429
204
+ #: data/rbot/plugins/games/wheelfortune.rb:443
205
205
  msgid "%{bold}%{color}%{name}%{bold}, round %{count}:%{nocolor} %{qa}"
206
206
  msgstr "%{bold}%{color}%{name}%{bold}, tour %{count}:%{nocolor} %{qa}"
207
207
 
208
- #: data/rbot/plugins/games/wheelfortune.rb:444
208
+ #: data/rbot/plugins/games/wheelfortune.rb:458
209
209
  msgid "no scores"
210
210
  msgstr "aucuns scores"
211
211
 
212
- #: data/rbot/plugins/games/wheelfortune.rb:465
212
+ #: data/rbot/plugins/games/wheelfortune.rb:479
213
213
  msgid "You must buy the %{vowel}"
214
214
  msgstr "Vous devez acheter le %{vowel}"
215
215
 
216
- #: data/rbot/plugins/games/wheelfortune.rb:476
216
+ #: data/rbot/plugins/games/wheelfortune.rb:489
217
217
  msgid "%{who} got it! The answer was: %{ans}"
218
218
  msgstr "%{who} le prend! La reponse etais: %{ans}"
219
219
 
220
- #: data/rbot/plugins/games/wheelfortune.rb:482
220
+ #: data/rbot/plugins/games/wheelfortune.rb:495
221
221
  msgid ""
222
222
  "%{bold}%{color}%{name}%{bold}%{nocolor}: %{who} %{bold}wins%{bold} after %"
223
223
  "{count} rounds!\n"
@@ -227,18 +227,18 @@ msgstr ""
227
227
  "{count} tours!\n"
228
228
  "Le score final est:"
229
229
 
230
- #: data/rbot/plugins/games/wheelfortune.rb:493
230
+ #: data/rbot/plugins/games/wheelfortune.rb:506
231
231
  msgid ""
232
232
  "%{bold}%{color}%{name}%{bold}, round %{count}%{nocolor} -- score so far:"
233
233
  msgstr ""
234
234
  "%{bold}%{color}%{name}%{bold}, tour %{count}%{nocolor} -- score pour le "
235
235
  "moment:"
236
236
 
237
- #: data/rbot/plugins/games/wheelfortune.rb:538
237
+ #: data/rbot/plugins/games/wheelfortune.rb:552
238
238
  msgid "%{who} buys a %{vowel} for %{price} points"
239
239
  msgstr "%{who} achète un %{vowel} pour %{price} points"
240
240
 
241
- #: data/rbot/plugins/games/wheelfortune.rb:546
241
+ #: data/rbot/plugins/games/wheelfortune.rb:560
242
242
  msgid ""
243
243
  "you can't buy a %{vowel}, %{who}: it costs %{price} points and you only have "
244
244
  "%{score}"
@@ -246,10 +246,10 @@ msgstr ""
246
246
  "vous ne pouvez pas acheter un %{vowel}, %{who}: cela coute %{price} points "
247
247
  "et vous avez seulement %{score}"
248
248
 
249
- #: data/rbot/plugins/games/wheelfortune.rb:569
249
+ #: data/rbot/plugins/games/wheelfortune.rb:583
250
250
  msgid "you can't cancel the current game"
251
251
  msgstr "vous ne pouvez pas stopper le jeu en cours"
252
252
 
253
- #: data/rbot/plugins/games/wheelfortune.rb:576
253
+ #: data/rbot/plugins/games/wheelfortune.rb:590
254
254
  msgid "%{name} game cancelled after %{count} rounds. Partial score:"
255
255
  msgstr "%{name} jeu annulé après %{count} tours. Score partiel:"
@@ -6,7 +6,7 @@
6
6
  msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: rbot\n"
9
- "POT-Creation-Date: 2008-07-30 23:38+0200\n"
9
+ "POT-Creation-Date: 2009-03-20 15:57+0100\n"
10
10
  "PO-Revision-Date: 2008-06-23 22:27+0100\n"
11
11
  "Last-Translator: Lagrange Marc <markocpc@gmail.com>\n"
12
12
  "Language-Team: French\n"
@@ -50,15 +50,15 @@ msgstr "%{user}, vous n'avez pas les permissions '%{command}' ici"
50
50
  msgid "%{desc} [valid values are: %{values}]"
51
51
  msgstr "%{desc} [valeurs valides: %{values}]"
52
52
 
53
- #: lib/rbot/config.rb:370
53
+ #: lib/rbot/config.rb:372
54
54
  msgid "First time rbot configuration wizard"
55
55
  msgstr "Configuration du premier lancement de rbot"
56
56
 
57
- #: lib/rbot/config.rb:373
57
+ #: lib/rbot/config.rb:375
58
58
  msgid "This wizard will ask you a few questions to get you started."
59
59
  msgstr "Cet configurateur va vous poser quelques questions pour demarrer."
60
60
 
61
- #: lib/rbot/config.rb:374
61
+ #: lib/rbot/config.rb:376
62
62
  msgid ""
63
63
  "The rest of rbot's configuration can be manipulated via IRC once rbot is "
64
64
  "connected and you are auth'd."
@@ -137,15 +137,15 @@ msgstr "%{count} commandes trouvés correspondant à %{pattern}%{extra}"
137
137
  msgid "%{cmd}: %{perms}"
138
138
  msgstr "%{cmd}: %{perms}"
139
139
 
140
- #: lib/rbot/core/auth.rb:267
140
+ #: lib/rbot/core/auth.rb:271
141
141
  msgid "%{user} can already do that"
142
142
  msgstr "%{user} peut déjà faire ceci"
143
143
 
144
- #: lib/rbot/core/auth.rb:269
144
+ #: lib/rbot/core/auth.rb:273
145
145
  msgid "%{user} can't do that already"
146
146
  msgstr "%{user} ne peut déja plus faire ceci"
147
147
 
148
- #: lib/rbot/core/auth.rb:279
148
+ #: lib/rbot/core/auth.rb:283
149
149
  msgid ""
150
150
  "sorry, %{cmd} doesn't look like a valid command. maybe you misspelled it, or "
151
151
  "you need to specify it should be in private?"
@@ -153,35 +153,35 @@ msgstr ""
153
153
  "désolé, %{cmd} ne semble pas être une commande valide. l'avez vous mal "
154
154
  "écrite, ou vous avez besoin de le spécifier de préference en privé ?"
155
155
 
156
- #: lib/rbot/core/auth.rb:302
156
+ #: lib/rbot/core/auth.rb:306
157
157
  msgid "welcome, %{user}"
158
158
  msgstr "bienvenue, %{user}"
159
159
 
160
- #: lib/rbot/core/auth.rb:317
160
+ #: lib/rbot/core/auth.rb:321
161
161
  msgid "sorry, can't do"
162
162
  msgstr "désolé, je ne peux pas"
163
163
 
164
- #: lib/rbot/core/auth.rb:320
164
+ #: lib/rbot/core/auth.rb:324
165
165
  msgid "couldn't login: %{exception}"
166
166
  msgstr "impossible de se loguer: %{exception}"
167
167
 
168
- #: lib/rbot/core/auth.rb:328
168
+ #: lib/rbot/core/auth.rb:332
169
169
  msgid "I couldn't find anything to let you login automatically"
170
170
  msgstr "Je ne peux rien trouver pour vous loguer automatiquement"
171
171
 
172
- #: lib/rbot/core/auth.rb:339
172
+ #: lib/rbot/core/auth.rb:343
173
173
  msgid "you are %{who}"
174
174
  msgstr "vous êtes %{who}"
175
175
 
176
- #: lib/rbot/core/auth.rb:341 lib/rbot/core/auth.rb:354
176
+ #: lib/rbot/core/auth.rb:345 lib/rbot/core/auth.rb:358
177
177
  msgid "no one that I know"
178
178
  msgstr "pour autant que je sache"
179
179
 
180
- #: lib/rbot/core/auth.rb:342 lib/rbot/core/auth.rb:355
180
+ #: lib/rbot/core/auth.rb:346 lib/rbot/core/auth.rb:359
181
181
  msgid "my boss"
182
182
  msgstr "mon patron"
183
183
 
184
- #: lib/rbot/core/auth.rb:362
184
+ #: lib/rbot/core/auth.rb:366
185
185
  msgid ""
186
186
  "login [<botuser>] [<pass>]: logs in to the bot as botuser <botuser> with "
187
187
  "password <pass>. When using the full form, you must contact the bot in "
@@ -195,17 +195,17 @@ msgstr ""
195
195
  "ommis si <utilisateur> autorise le login-par-masque et votre netmask est "
196
196
  "connu par le bot. si <utilisateur> est ommis un autologin sera tenté"
197
197
 
198
- #: lib/rbot/core/auth.rb:364
198
+ #: lib/rbot/core/auth.rb:368
199
199
  msgid "whoami: names the botuser you're linked to"
200
200
  msgstr "whoami: nomme l'tilisateur avec lequel vous êtes lié"
201
201
 
202
- #: lib/rbot/core/auth.rb:366
202
+ #: lib/rbot/core/auth.rb:370
203
203
  msgid "who is <user>: names the botuser <user> is linked to"
204
204
  msgstr ""
205
205
  "who is <utilisateur>: donne le nom de l'utilisateur avec lequel "
206
206
  "<utilisateur> est lié"
207
207
 
208
- #: lib/rbot/core/auth.rb:370
208
+ #: lib/rbot/core/auth.rb:374
209
209
  msgid ""
210
210
  "a permission is specified as module::path::to::cmd; when you want to enable "
211
211
  "it, prefix it with +; when you want to disable it, prefix it with -; when "
@@ -216,7 +216,7 @@ msgstr ""
216
216
  "la avec un - ; lorsque vous utilisez la commande +reset+, veuillez ne pas "
217
217
  "utiliser de prefixe"
218
218
 
219
- #: lib/rbot/core/auth.rb:372
219
+ #: lib/rbot/core/auth.rb:376
220
220
  msgid ""
221
221
  "permissions [re]set <permission> [in <channel>] for <user>: sets or resets "
222
222
  "the permissions for botuser <user> in channel <channel> (use ? to change the "
@@ -226,13 +226,13 @@ msgstr ""
226
226
  "remet à zero les permissions pour un utilisateur <utilisateur> sur le salon "
227
227
  "<salon> (utilisez ? pour changer les permissions en privées)"
228
228
 
229
- #: lib/rbot/core/auth.rb:374
229
+ #: lib/rbot/core/auth.rb:378
230
230
  msgid "permissions view [for <user>]: display the permissions for user <user>"
231
231
  msgstr ""
232
232
  "permissions view [for <utilisateur>]: affiche les permissions de "
233
233
  "l'utilisateur <utilisateur>"
234
234
 
235
- #: lib/rbot/core/auth.rb:376
235
+ #: lib/rbot/core/auth.rb:380
236
236
  msgid ""
237
237
  "permissions search <pattern>: display the permissions associated with the "
238
238
  "commands matching <pattern>"
@@ -240,11 +240,11 @@ msgstr ""
240
240
  "permissions search <pattern>: affiche les permissions associés avec la "
241
241
  "commande correspondant à <pattern>"
242
242
 
243
- #: lib/rbot/core/auth.rb:378
243
+ #: lib/rbot/core/auth.rb:382
244
244
  msgid "permission topics: syntax, (re)set, view, search"
245
245
  msgstr "sujets de permissions: syntax, (re)set, view"
246
246
 
247
- #: lib/rbot/core/auth.rb:383
247
+ #: lib/rbot/core/auth.rb:387
248
248
  msgid ""
249
249
  "user show <what> : shows info about the user; <what> can be any of "
250
250
  "autologin, login-by-mask, netmasks"
@@ -252,14 +252,14 @@ msgstr ""
252
252
  "user show <qui> : affiche les informations à propos de l'utilisateur; <qui> "
253
253
  "peuvent être autologin, login-by-mask, netmasks"
254
254
 
255
- #: lib/rbot/core/auth.rb:385
255
+ #: lib/rbot/core/auth.rb:389
256
256
  msgid ""
257
257
  "user enable|disable <what> : turns on or off <what> (autologin, login-by-"
258
258
  "mask)"
259
259
  msgstr ""
260
260
  "user enable|disable <qui> : met on ou off <quit> (autologin, login-by-mask)"
261
261
 
262
- #: lib/rbot/core/auth.rb:387
262
+ #: lib/rbot/core/auth.rb:391
263
263
  msgid ""
264
264
  "user set password <blah> : sets the user password to <blah>; passwords can "
265
265
  "only contain upper and lowercase letters and numbers, and must be at least 4 "
@@ -269,7 +269,7 @@ msgstr ""
269
269
  "le mot de passe ne peut contenir que des lettres minuscules et majuscules "
270
270
  "ainsi que des nombres, et doit être supérieur à 4 caracteres"
271
271
 
272
- #: lib/rbot/core/auth.rb:389
272
+ #: lib/rbot/core/auth.rb:393
273
273
  msgid ""
274
274
  "user add|rm netmask <mask> : adds/removes netmask <mask> from the list of "
275
275
  "netmasks known to the botuser you're linked to"
@@ -277,7 +277,7 @@ msgstr ""
277
277
  "user add|rm netmask <masque> : ajoute/supprime le netmask <masque> depuis la "
278
278
  "liste des netmask connus de votre utilisateur"
279
279
 
280
- #: lib/rbot/core/auth.rb:391
280
+ #: lib/rbot/core/auth.rb:395
281
281
  msgid ""
282
282
  "user reset <what> : resets <what> to the default values. <what> can be "
283
283
  "+netmasks+ (the list will be emptied), +autologin+ or +login-by-mask+ (will "
@@ -289,7 +289,7 @@ msgstr ""
289
289
  "sera remis à zero) ou +password+ (un nouveau sera régénéré et vous sera "
290
290
  "donné en privé)"
291
291
 
292
- #: lib/rbot/core/auth.rb:393
292
+ #: lib/rbot/core/auth.rb:397
293
293
  msgid ""
294
294
  "user tell <who> the password for <botuser> : contacts <who> in private to "
295
295
  "tell him/her the password for <botuser>"
@@ -297,7 +297,7 @@ msgstr ""
297
297
  "user tell <who> the password for <botuser> : contacte <who> en privé pour "
298
298
  "lui donner le mot de passe de <botuser>"
299
299
 
300
- #: lib/rbot/core/auth.rb:395
300
+ #: lib/rbot/core/auth.rb:399
301
301
  msgid ""
302
302
  "user create <name> <password> : create botuser named <name> with password "
303
303
  "<password>. The password can be omitted, in which case a random one will be "
@@ -309,11 +309,11 @@ msgstr ""
309
309
  "mot de passe alléatoire sera généré. Le <nom> devrait seulement contenir des "
310
310
  "caracteres alphanumeriques ou un underscore (_)"
311
311
 
312
- #: lib/rbot/core/auth.rb:397
312
+ #: lib/rbot/core/auth.rb:401
313
313
  msgid "user list : lists all the botusers"
314
314
  msgstr "user list : liste tous les utilisateurs"
315
315
 
316
- #: lib/rbot/core/auth.rb:399
316
+ #: lib/rbot/core/auth.rb:403
317
317
  msgid ""
318
318
  "user destroy <botuser> : destroys <botuser>. This function %{highlight}must%"
319
319
  "{highlight} be called in two steps. On the first call <botuser> is queued "
@@ -328,7 +328,7 @@ msgstr ""
328
328
  "mot de passe pour <utilisateur>, et il sera detruit. Si vous voulez annuler "
329
329
  "la destruction, utilise cette commande +user cancel destroy <utilisateur>+"
330
330
 
331
- #: lib/rbot/core/auth.rb:401
331
+ #: lib/rbot/core/auth.rb:405
332
332
  msgid ""
333
333
  "user topics: show, enable|disable, add|rm netmask, set, reset, tell, create, "
334
334
  "list, destroy"
@@ -336,7 +336,7 @@ msgstr ""
336
336
  "sujets utilisateur: show, enable|disable, add|rm netmask, set, reset, tell, "
337
337
  "create, list, destroy"
338
338
 
339
- #: lib/rbot/core/auth.rb:404
339
+ #: lib/rbot/core/auth.rb:408
340
340
  msgid ""
341
341
  "auth <masterpassword>: log in as the bot owner; other commands: login, "
342
342
  "whoami, permissions syntax, permissions [re]set, permissions view, user, "
@@ -346,7 +346,7 @@ msgstr ""
346
346
  "commandes: login, whoami, permission syntax, permissions [re]set, "
347
347
  "permissions view, user"
348
348
 
349
- #: lib/rbot/core/auth.rb:406
349
+ #: lib/rbot/core/auth.rb:410
350
350
  msgid ""
351
351
  "meet <nick> [as <user>]: creates a bot user for nick, calling it user "
352
352
  "(defaults to the nick itself)"
@@ -354,31 +354,57 @@ msgstr ""
354
354
  "meet <pseudo> [<utilisateur>]: crée un utilisateur nommé pseudo, appellé "
355
355
  "<utilisateur> (par defaut le pseudo est utilisé)"
356
356
 
357
- #: lib/rbot/core/auth.rb:408
357
+ #: lib/rbot/core/auth.rb:412
358
358
  msgid "hello: creates a bot user for the person issuing the command"
359
359
  msgstr "hello: crée un utilisateur pour la personne ayant tapé la commande"
360
360
 
361
- #: lib/rbot/core/auth.rb:410
361
+ #: lib/rbot/core/auth.rb:415
362
+ #, fuzzy
362
363
  msgid ""
363
364
  "allow <user> to do <sample command> [<where>]: gives botuser <user> the "
364
- "permissions to execute a command such as the provided sample command (in "
365
- "private or in channel, according to the optional <where>)"
365
+ "permissions to execute a command such as the provided sample command"
366
366
  msgstr ""
367
367
  "autorise <utilisateur> à utiliser <exemple de commande> [<où>]: donne à "
368
368
  "l'utilisateur <utilisateur> la permission d'executer une commande tel que "
369
369
  "l'exemple (en privé ou sur un salon, selon l'option <où>)"
370
370
 
371
- #: lib/rbot/core/auth.rb:412
371
+ #: lib/rbot/core/auth.rb:416 lib/rbot/core/auth.rb:424
372
+ msgid "(in private or in channel, according to the optional <where>)."
373
+ msgstr ""
374
+
375
+ #: lib/rbot/core/auth.rb:417 lib/rbot/core/auth.rb:425
376
+ msgid ""
377
+ "<sample command> should be a full command, not just the command keyword --"
378
+ msgstr ""
379
+
380
+ #: lib/rbot/core/auth.rb:418
381
+ msgid "correct: allow user to do addquote stuff --"
382
+ msgstr ""
383
+
384
+ #: lib/rbot/core/auth.rb:419
385
+ msgid "wrong: allow user to do addquote."
386
+ msgstr ""
387
+
388
+ #: lib/rbot/core/auth.rb:423
389
+ #, fuzzy
372
390
  msgid ""
373
391
  "deny <user> from doing <sample command> [<where>]: removes from botuser "
374
392
  "<user> the permissions to execute a command such as the provided sample "
375
- "command (in private or in channel, according to the optional <where>)"
393
+ "command"
376
394
  msgstr ""
377
395
  "interdit <utilisateur> à utiliser <exemple de commande> [<où>]: supprime à "
378
396
  "l'utilisateur <utilisateur> la permission d'executer une commande comme "
379
397
  "l'exemple (en privé ou sur un salon, selon l'option <où>)"
380
398
 
381
- #: lib/rbot/core/auth.rb:414
399
+ #: lib/rbot/core/auth.rb:426
400
+ msgid "correct: deny user from doing addquote stuff --"
401
+ msgstr ""
402
+
403
+ #: lib/rbot/core/auth.rb:427
404
+ msgid "wrong: deny user from doing addquote."
405
+ msgstr ""
406
+
407
+ #: lib/rbot/core/auth.rb:430
382
408
  msgid ""
383
409
  "auth commands: auth, login, whoami, who, permission[s], user, meet, hello, "
384
410
  "allow, deny"
@@ -386,103 +412,103 @@ msgstr ""
386
412
  "commandes d'auth: auth, login, whoami, who, permission[s], user, meet, "
387
413
  "hello, allow, deny"
388
414
 
389
- #: lib/rbot/core/auth.rb:419
415
+ #: lib/rbot/core/auth.rb:435
390
416
  msgid "sorry, I need more arguments to %{command}"
391
417
  msgstr "désolé, j'ai besoin de plus d'arguments pour %{command}"
392
418
 
393
- #: lib/rbot/core/auth.rb:423
419
+ #: lib/rbot/core/auth.rb:439
394
420
  msgid "I can only %{command} these: %{arguments}"
395
421
  msgstr "Je peux seulement %{command} avec: %{arguments}"
396
422
 
397
- #: lib/rbot/core/auth.rb:458
423
+ #: lib/rbot/core/auth.rb:474
398
424
  msgid "no such bot user %{user}"
399
425
  msgstr "aucun utilisateur %{user}"
400
426
 
401
- #: lib/rbot/core/auth.rb:461
427
+ #: lib/rbot/core/auth.rb:477
402
428
  msgid "you can't mess with %{user}"
403
429
  msgstr "vous ne pouvez pas le bricoler avec un %{user}"
404
430
 
405
- #: lib/rbot/core/auth.rb:473
431
+ #: lib/rbot/core/auth.rb:489
406
432
  msgid "you can't see the properties of %{user}"
407
433
  msgstr "vous ne pouvez pas voir la propriété de %{user}"
408
434
 
409
- #: lib/rbot/core/auth.rb:482
435
+ #: lib/rbot/core/auth.rb:498
410
436
  msgid "no way I'm telling you the master password!"
411
437
  msgstr "aucune chance que je vous dise le mot de passe du maitre!"
412
438
 
413
- #: lib/rbot/core/auth.rb:483
439
+ #: lib/rbot/core/auth.rb:499
414
440
  msgid "you can't ask for someone else's password"
415
441
  msgstr ""
416
442
 
417
- #: lib/rbot/core/auth.rb:485
443
+ #: lib/rbot/core/auth.rb:501
418
444
  msgid ""
419
445
  "c'mon, you can't be asking me seriously to tell you the password in public!"
420
446
  msgstr ""
421
447
  "voyons, soyons sérieux, vous ne pouvez pas me demander de dire le mot de "
422
448
  "passe en publique !"
423
449
 
424
- #: lib/rbot/core/auth.rb:486
450
+ #: lib/rbot/core/auth.rb:502
425
451
  msgid "the password for %{user} is %{password}"
426
452
  msgstr "le mot de passe de %{user} est %{password}"
427
453
 
428
- #: lib/rbot/core/auth.rb:500
454
+ #: lib/rbot/core/auth.rb:516
429
455
  msgid "can %{action}"
430
456
  msgstr "faire %{action}"
431
457
 
432
- #: lib/rbot/core/auth.rb:502
458
+ #: lib/rbot/core/auth.rb:518
433
459
  msgid "can not %{action}"
434
460
  msgstr "impossible de %{action}"
435
461
 
436
- #: lib/rbot/core/auth.rb:506
462
+ #: lib/rbot/core/auth.rb:522
437
463
  msgid "knows no netmasks"
438
464
  msgstr "aucun netmasks connus"
439
465
 
440
- #: lib/rbot/core/auth.rb:508
466
+ #: lib/rbot/core/auth.rb:524
441
467
  msgid "knows %{netmasks}"
442
468
  msgstr "connus %{netmasks}"
443
469
 
444
- #: lib/rbot/core/auth.rb:515 lib/rbot/core/auth.rb:542
445
- #: lib/rbot/core/auth.rb:560 lib/rbot/core/auth.rb:592
470
+ #: lib/rbot/core/auth.rb:531 lib/rbot/core/auth.rb:558
471
+ #: lib/rbot/core/auth.rb:576 lib/rbot/core/auth.rb:608
446
472
  msgid "you can't change the default user"
447
473
  msgstr "vous ne pouvez changer l'utilisateur par default"
448
474
 
449
- #: lib/rbot/core/auth.rb:516 lib/rbot/core/auth.rb:544
450
- #: lib/rbot/core/auth.rb:562 lib/rbot/core/auth.rb:594
475
+ #: lib/rbot/core/auth.rb:532 lib/rbot/core/auth.rb:560
476
+ #: lib/rbot/core/auth.rb:578 lib/rbot/core/auth.rb:610
451
477
  msgid "you can't edit %{user}"
452
478
  msgstr "vous ne pouvez pas éditer %{user}"
453
479
 
454
- #: lib/rbot/core/auth.rb:531 lib/rbot/core/auth.rb:578
480
+ #: lib/rbot/core/auth.rb:547 lib/rbot/core/auth.rb:594
455
481
  msgid "I ignored %{things} because %{reason}"
456
482
  msgstr "J'ai ignoré %{things} a cause de %{reason}"
457
483
 
458
- #: lib/rbot/core/auth.rb:535 lib/rbot/core/auth.rb:582
484
+ #: lib/rbot/core/auth.rb:551 lib/rbot/core/auth.rb:598
459
485
  msgid "I haven't changed anything"
460
486
  msgstr "Je n'ai rien changé"
461
487
 
462
- #: lib/rbot/core/auth.rb:553
488
+ #: lib/rbot/core/auth.rb:569
463
489
  msgid "is that a joke? setting the password in public?"
464
490
  msgstr "c'est une blague? établir le mot de passe en public?"
465
491
 
466
- #: lib/rbot/core/auth.rb:585
492
+ #: lib/rbot/core/auth.rb:601
467
493
  msgid "the password for %{user} is now %{password}"
468
494
  msgstr "le mot de passe de %{user} est maintenant %{password}"
469
495
 
470
- #: lib/rbot/core/auth.rb:599
496
+ #: lib/rbot/core/auth.rb:615
471
497
  msgid ""
472
498
  "I can only add/remove netmasks. See +help user add+ for more instructions"
473
499
  msgstr ""
474
500
  "Je peux seulement ajouter/supprimer des netmasks. Voyez +help user add+ pour "
475
501
  "plus d'instructions"
476
502
 
477
- #: lib/rbot/core/auth.rb:620
503
+ #: lib/rbot/core/auth.rb:636
478
504
  msgid "sorry, I don't know how to %{request}"
479
505
  msgstr "désolé, je ne sais pas comment %{request}"
480
506
 
481
- #: lib/rbot/core/auth.rb:623
507
+ #: lib/rbot/core/auth.rb:639
482
508
  msgid "couldn't %{cmd}: %{exception}"
483
509
  msgstr "impossible %{cmd}: %{exception}"
484
510
 
485
- #: lib/rbot/core/auth.rb:652
511
+ #: lib/rbot/core/auth.rb:668
486
512
  msgid ""
487
513
  "you are now registered as %{buname}. I created a random password for you : %"
488
514
  "{pass} and you can change it at any time by telling me 'user set password "
@@ -492,73 +518,73 @@ msgstr ""
492
518
  "alleatoire pour vous: %{pass} vous pouvez le changer n'importe quand en me "
493
519
  "disant 'user set password <mot de passe>' en privé"
494
520
 
495
- #: lib/rbot/core/auth.rb:659
521
+ #: lib/rbot/core/auth.rb:675
496
522
  msgid "but I already know %{buname}"
497
523
  msgstr "mais aussi connu sous %{buname}"
498
524
 
499
- #: lib/rbot/core/auth.rb:661
525
+ #: lib/rbot/core/auth.rb:677
500
526
  msgid "I had problems meeting %{nick}: %{e}"
501
527
  msgstr "J'ai des problèmes pour rencontrer %{nick}: %{e}"
502
528
 
503
- #: lib/rbot/core/auth.rb:670
529
+ #: lib/rbot/core/auth.rb:686
504
530
  msgid "couldn't find botuser %{user}"
505
531
  msgstr "impossible de trouver l'utilisateur %{user}"
506
532
 
507
- #: lib/rbot/core/auth.rb:672
533
+ #: lib/rbot/core/auth.rb:688
508
534
  msgid "I'm not telling the master password to anyone, pal"
509
535
  msgstr "Je ne donne pas le mot de passe à n'importe qui, mon ami"
510
536
 
511
- #: lib/rbot/core/auth.rb:673
537
+ #: lib/rbot/core/auth.rb:689
512
538
  msgid "the password for botuser %{user} is %{password}"
513
539
  msgstr "le mot de passe de l'utilisateur %{user} est %{password}"
514
540
 
515
- #: lib/rbot/core/auth.rb:676
541
+ #: lib/rbot/core/auth.rb:692
516
542
  msgid "I told %{user} that %{message}"
517
543
  msgstr "Je viens de dire à %{user} ce message: %{message}"
518
544
 
519
- #: lib/rbot/core/auth.rb:682
545
+ #: lib/rbot/core/auth.rb:698
520
546
  msgid "are you nuts, creating a botuser with a publicly known password?"
521
547
  msgstr "est tu fou?, créer un utilisateur avec un mot de passe publique?"
522
548
 
523
- #: lib/rbot/core/auth.rb:687
549
+ #: lib/rbot/core/auth.rb:703
524
550
  msgid "failed to create %{user}: %{exception}"
525
551
  msgstr "impossible de créer %{user}: %{exception}"
526
552
 
527
- #: lib/rbot/core/auth.rb:691
553
+ #: lib/rbot/core/auth.rb:707
528
554
  msgid "created botuser %{user}"
529
555
  msgstr "utilisateur crée %{user}"
530
556
 
531
- #: lib/rbot/core/auth.rb:699
557
+ #: lib/rbot/core/auth.rb:715
532
558
  msgid " (queued for destruction)"
533
559
  msgstr " (dans la queue de destruction)"
534
560
 
535
- #: lib/rbot/core/auth.rb:702
561
+ #: lib/rbot/core/auth.rb:718
536
562
  msgid "I have no botusers other than the default ones"
537
563
  msgstr "Je n'ai aucun utilisateurs autres que celui de defaut"
538
564
 
539
- #: lib/rbot/core/auth.rb:703
565
+ #: lib/rbot/core/auth.rb:719
540
566
  msgid "botuser: %{list}"
541
567
  msgid_plural "botusers: %{list}"
542
568
  msgstr[0] "utilisateur: %{list}"
543
569
  msgstr[1] "utilisateurs: %{list}"
544
570
 
545
- #: lib/rbot/core/auth.rb:710
571
+ #: lib/rbot/core/auth.rb:726
546
572
  msgid "You can't destroy %{user}"
547
573
  msgstr "Vous ne pouvez detruire %{user}"
548
574
 
549
- #: lib/rbot/core/auth.rb:720
575
+ #: lib/rbot/core/auth.rb:736
550
576
  msgid "no such botuser %{user}"
551
577
  msgstr "aucun utilisateur %{user}"
552
578
 
553
- #: lib/rbot/core/auth.rb:727
579
+ #: lib/rbot/core/auth.rb:743
554
580
  msgid "%{user} removed from the destruction queue"
555
581
  msgstr "%{user} supprimé de la queue de destruction"
556
582
 
557
- #: lib/rbot/core/auth.rb:729
583
+ #: lib/rbot/core/auth.rb:745
558
584
  msgid "%{user} was not queued for destruction"
559
585
  msgstr "%{user} n'est pas dans la queue de destruction"
560
586
 
561
- #: lib/rbot/core/auth.rb:734
587
+ #: lib/rbot/core/auth.rb:750
562
588
  msgid ""
563
589
  "%{user} already queued for destruction, use %{highlight}user confirm destroy "
564
590
  "%{user}%{highlight} to destroy it"
@@ -566,7 +592,7 @@ msgstr ""
566
592
  "%{user} est déjà dans la queue de destruction, utilise %{highlight}user "
567
593
  "destroy %{user} <mot de passe>%{highlight} pour le detruire"
568
594
 
569
- #: lib/rbot/core/auth.rb:737
595
+ #: lib/rbot/core/auth.rb:753
570
596
  msgid ""
571
597
  "%{user} queued for destruction, use %{highlight}user confirm destroy %{user}%"
572
598
  "{highlight} to destroy it"
@@ -574,101 +600,101 @@ msgstr ""
574
600
  "%{user} a été mis dans la queue de destruction, utilise %{highlight}user "
575
601
  "destroy %{user} <mot de passe>%{highlight} pour le detruire"
576
602
 
577
- #: lib/rbot/core/auth.rb:741
603
+ #: lib/rbot/core/auth.rb:757
578
604
  msgid "%{user} is not queued for destruction yet"
579
605
  msgstr "%{user} n'est pas encore dans la queue de destruction"
580
606
 
581
- #: lib/rbot/core/auth.rb:750 lib/rbot/core/auth.rb:790
607
+ #: lib/rbot/core/auth.rb:766 lib/rbot/core/auth.rb:806
582
608
  msgid "failed: %{exception}"
583
609
  msgstr "echec: %{exception}"
584
610
 
585
- #: lib/rbot/core/auth.rb:752
611
+ #: lib/rbot/core/auth.rb:768
586
612
  msgid "botuser %{user} destroyed"
587
613
  msgstr "utilisateur %{user} detruit"
588
614
 
589
- #: lib/rbot/core/auth.rb:759
615
+ #: lib/rbot/core/auth.rb:775
590
616
  msgid "please don't touch the default users"
591
617
  msgstr "veuillez ne pas toucher aux utilisateurs par defaut"
592
618
 
593
- #: lib/rbot/core/auth.rb:768
619
+ #: lib/rbot/core/auth.rb:784
594
620
  msgid "no such botuser %{source}"
595
621
  msgstr "aucun utilisateur %{source}"
596
622
 
597
- #: lib/rbot/core/auth.rb:770
623
+ #: lib/rbot/core/auth.rb:786
598
624
  msgid "botuser %{dest} exists already"
599
625
  msgstr "utilisateur %{dest} existe déjà"
600
626
 
601
- #: lib/rbot/core/auth.rb:793
627
+ #: lib/rbot/core/auth.rb:809
602
628
  msgid "botuser %{source} copied to %{dest}"
603
629
  msgstr "utilisateur %{source} copié vers %{dest}"
604
630
 
605
- #: lib/rbot/core/auth.rb:796
631
+ #: lib/rbot/core/auth.rb:812
606
632
  msgid "botuser %{source} renamed to %{dest}"
607
633
  msgstr "utilisateur %{source} renommé vers %{dest}"
608
634
 
609
- #: lib/rbot/core/auth.rb:816
635
+ #: lib/rbot/core/auth.rb:832
610
636
  msgid "selecting data to export ..."
611
637
  msgstr "selection des données à exporter ..."
612
638
 
613
- #: lib/rbot/core/auth.rb:832
639
+ #: lib/rbot/core/auth.rb:848
614
640
  msgid "preparing data for export ..."
615
641
  msgstr "préparation des données à exporter ..."
616
642
 
617
- #: lib/rbot/core/auth.rb:855
643
+ #: lib/rbot/core/auth.rb:871
618
644
  msgid "failed to prepare data: %{exception}"
619
645
  msgstr "échec de la préparation des données: %{exception}"
620
646
 
621
- #: lib/rbot/core/auth.rb:860
647
+ #: lib/rbot/core/auth.rb:876
622
648
  msgid "exporting to %{file} ..."
623
649
  msgstr "exportation vers %{file} ..."
624
650
 
625
- #: lib/rbot/core/auth.rb:867
651
+ #: lib/rbot/core/auth.rb:883
626
652
  msgid "failed to export users: %{exception}"
627
653
  msgstr "échec de l'export des utilisateurs: %{exception}"
628
654
 
629
- #: lib/rbot/core/auth.rb:871 lib/rbot/core/auth.rb:949
655
+ #: lib/rbot/core/auth.rb:887 lib/rbot/core/auth.rb:965
630
656
  msgid "done"
631
657
  msgstr "terminé"
632
658
 
633
- #: lib/rbot/core/auth.rb:888
659
+ #: lib/rbot/core/auth.rb:904
634
660
  msgid "reading %{file} ..."
635
661
  msgstr "lecture %{file} ..."
636
662
 
637
- #: lib/rbot/core/auth.rb:892
663
+ #: lib/rbot/core/auth.rb:908
638
664
  msgid "failed to import from: %{exception}"
639
665
  msgstr "échec de l'import depuis: %{exception}"
640
666
 
641
- #: lib/rbot/core/auth.rb:899
667
+ #: lib/rbot/core/auth.rb:915
642
668
  msgid "selecting data to import ..."
643
669
  msgstr "sélection des données à importer ..."
644
670
 
645
- #: lib/rbot/core/auth.rb:909
671
+ #: lib/rbot/core/auth.rb:925
646
672
  msgid "parsing data from import ..."
647
673
  msgstr "analyse des données à importer ..."
648
674
 
649
- #: lib/rbot/core/auth.rb:929
675
+ #: lib/rbot/core/auth.rb:945
650
676
  msgid "failed to parse data: %{exception}"
651
677
  msgstr "echec de l'analyse des données: %{exception}"
652
678
 
653
- #: lib/rbot/core/basics.rb:107
679
+ #: lib/rbot/core/basics.rb:133
654
680
  msgid "quit [<message>] => quit IRC with message <message>"
655
681
  msgstr "quit [<message>] => quitte l'IRC avec le message <message>"
656
682
 
657
- #: lib/rbot/core/basics.rb:109
683
+ #: lib/rbot/core/basics.rb:135
658
684
  msgid "restart => completely stop and restart the bot (including reconnect)"
659
685
  msgstr ""
660
686
  "restart => arrête completement le bot et le relance (incluant la "
661
687
  "reconnection)"
662
688
 
663
- #: lib/rbot/core/basics.rb:113
689
+ #: lib/rbot/core/basics.rb:139
664
690
  msgid "part"
665
691
  msgstr "part =>quitte le salon en cours"
666
692
 
667
- #: lib/rbot/core/basics.rb:115
693
+ #: lib/rbot/core/basics.rb:141
668
694
  msgid "hide => part all channels"
669
695
  msgstr "hide =>quitte tous les salons"
670
696
 
671
- #: lib/rbot/core/basics.rb:117
697
+ #: lib/rbot/core/basics.rb:143
672
698
  msgid ""
673
699
  "say <channel>|<nick> <message> => say <message> to <channel> or in private "
674
700
  "message to <nick>"
@@ -676,7 +702,7 @@ msgstr ""
676
702
  "say <channel>|<nick> <message> => dire <message> sur <channel> ou message "
677
703
  "privé à <nick>"
678
704
 
679
- #: lib/rbot/core/basics.rb:119
705
+ #: lib/rbot/core/basics.rb:145
680
706
  msgid ""
681
707
  "action <channel>|<nick> <message> => does a /me <message> to <channel> or in "
682
708
  "private message to <nick>"
@@ -684,7 +710,7 @@ msgstr ""
684
710
  "action <channel>|<nick> <message> => équivaut à un /me <message> sur "
685
711
  "<channel> ou en message privé à <nick>"
686
712
 
687
- #: lib/rbot/core/basics.rb:121
713
+ #: lib/rbot/core/basics.rb:147
688
714
  msgid ""
689
715
  "quiet [in here|<channel>] => with no arguments, stop speaking in all "
690
716
  "channels, if \"in here\", stop speaking in this channel, or stop speaking in "
@@ -693,7 +719,7 @@ msgstr ""
693
719
  "quiet [in here|<channel>] => sans arguments, silencieux sur tous les salons, "
694
720
  "si \"in here\", silencieux sur ce salon ou dans le <channel>"
695
721
 
696
- #: lib/rbot/core/basics.rb:123
722
+ #: lib/rbot/core/basics.rb:149
697
723
  msgid ""
698
724
  "talk [in here|<channel>] => with no arguments, resume speaking in all "
699
725
  "channels, if \"in here\", resume speaking in this channel, or resume "
@@ -703,11 +729,11 @@ msgstr ""
703
729
  "tous les salons, si \"in here\", reprend la conversation ici ou dans le "
704
730
  "<channel>"
705
731
 
706
- #: lib/rbot/core/basics.rb:125
732
+ #: lib/rbot/core/basics.rb:151
707
733
  msgid "ping => replies with a pong"
708
734
  msgstr "ping => repond avec un pong"
709
735
 
710
- #: lib/rbot/core/basics.rb:127
736
+ #: lib/rbot/core/basics.rb:153
711
737
  msgid ""
712
738
  "mode <channel> <mode> <nicks> => set channel modes for <nicks> on <channel> "
713
739
  "to <mode>"
@@ -715,7 +741,7 @@ msgstr ""
715
741
  "mode <channel> <mode> <nicks> => établit les modes du salon pour <nicks> sur "
716
742
  "<channel> vers <mode>"
717
743
 
718
- #: lib/rbot/core/basics.rb:133
744
+ #: lib/rbot/core/basics.rb:159
719
745
  #, fuzzy
720
746
  msgid ""
721
747
  "%{name}: quit, restart, join, part, hide, save, say, action, topic, quiet, "
@@ -738,7 +764,7 @@ msgstr "aucun module %{module}"
738
764
 
739
765
  #: lib/rbot/core/config.rb:55 lib/rbot/core/config.rb:66
740
766
  #: lib/rbot/core/config.rb:88 lib/rbot/core/config.rb:101
741
- #: lib/rbot/core/config.rb:127 lib/rbot/core/config.rb:150
767
+ #: lib/rbot/core/config.rb:127 lib/rbot/core/config.rb:152
742
768
  msgid "no such config key %{key}"
743
769
  msgstr "aucune clé de configuration %{key}"
744
770
 
@@ -751,12 +777,12 @@ msgid "possible keys: %{kl}"
751
777
  msgstr "clés possibles: %{kl}"
752
778
 
753
779
  #: lib/rbot/core/config.rb:93 lib/rbot/core/config.rb:112
754
- #: lib/rbot/core/config.rb:142 lib/rbot/core/config.rb:165
780
+ #: lib/rbot/core/config.rb:144 lib/rbot/core/config.rb:169
755
781
  msgid "this config change will take effect on the next restart"
756
782
  msgstr "cette configuration prendra effet au prochain redemarrage du bot"
757
783
 
758
784
  #: lib/rbot/core/config.rb:94 lib/rbot/core/config.rb:115
759
- #: lib/rbot/core/config.rb:143 lib/rbot/core/config.rb:166
785
+ #: lib/rbot/core/config.rb:145 lib/rbot/core/config.rb:170
760
786
  msgid "this config change will take effect on the next rescan"
761
787
  msgstr "cette configuration prendra effet au prochain rafraîchissement du bot"
762
788
 
@@ -764,31 +790,31 @@ msgstr "cette configuration prendra effet au prochain rafraîchissement du bot"
764
790
  msgid "failed to set %{key}: %{error}"
765
791
  msgstr "impossible de mettre %{key}: %{error}"
766
792
 
767
- #: lib/rbot/core/config.rb:131 lib/rbot/core/config.rb:154
793
+ #: lib/rbot/core/config.rb:131 lib/rbot/core/config.rb:156
768
794
  msgid "config key %{key} is not an array"
769
795
  msgstr "la clé de configuration %{key} n'est pas un tableau"
770
796
 
771
- #: lib/rbot/core/config.rb:138
797
+ #: lib/rbot/core/config.rb:139
772
798
  msgid "failed to add %{value} to %{key}: %{error}"
773
799
  msgstr "impossible d'ajouter %{value} à %{key}: %{error}"
774
800
 
775
- #: lib/rbot/core/config.rb:161
801
+ #: lib/rbot/core/config.rb:164
776
802
  msgid "failed to remove %{value} from %{key}: %{error}"
777
803
  msgstr "impossible de supprimer %{value} depuis %{key}: %{error}"
778
804
 
779
- #: lib/rbot/core/config.rb:175
805
+ #: lib/rbot/core/config.rb:179
780
806
  msgid "saving ..."
781
807
  msgstr "sauvegarde ..."
782
808
 
783
- #: lib/rbot/core/config.rb:177
809
+ #: lib/rbot/core/config.rb:181
784
810
  msgid "rescanning ..."
785
811
  msgstr "rafraîchit ..."
786
812
 
787
- #: lib/rbot/core/config.rb:179
813
+ #: lib/rbot/core/config.rb:183
788
814
  msgid "done. %{plugin_status}"
789
815
  msgstr "terminé. %{plugin_status}"
790
816
 
791
- #: lib/rbot/core/config.rb:221
817
+ #: lib/rbot/core/config.rb:225
792
818
  msgid ""
793
819
  "config list => list configuration modules, config list <module> => list "
794
820
  "configuration keys for module <module>"
@@ -796,32 +822,33 @@ msgstr ""
796
822
  "config list => liste de la configuration des modules, config list <module> "
797
823
  "=> liste des clés de configuration du module <module>"
798
824
 
799
- #: lib/rbot/core/config.rb:223
825
+ #: lib/rbot/core/config.rb:227
800
826
  msgid "config get <key> => get configuration value for key <key>"
801
827
  msgstr "config get <clé> => obtient la valeur de la <clé>"
802
828
 
803
- #: lib/rbot/core/config.rb:225
829
+ #: lib/rbot/core/config.rb:229
804
830
  msgid "reset key <key> to the default"
805
831
  msgstr "reset key <clé> remet la clé à sa valeur d'origine"
806
832
 
807
- #: lib/rbot/core/config.rb:227
833
+ #: lib/rbot/core/config.rb:231
808
834
  msgid ""
809
835
  "config set <key> <value> => set configuration value for key <key> to <value>"
810
836
  msgstr "config set <clé> <valeur> => enregistre la <valeur> de la <clé>"
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 <clé> => décris ce que la <clé> configure"
815
841
 
816
- #: lib/rbot/core/config.rb:231
842
+ #: lib/rbot/core/config.rb:235
843
+ #, fuzzy
817
844
  msgid ""
818
- "config add <value> to <key> => add value <value> to key <key> if <key> is an "
819
- "array"
845
+ "config add <values> to <key> => add values <values> to key <key> if <key> is "
846
+ "an array"
820
847
  msgstr ""
821
848
  "config add <valeur> to <clé> => ajoute la <valeur> à la <clé> si <clé> est "
822
849
  "un tableau"
823
850
 
824
- #: lib/rbot/core/config.rb:233
851
+ #: lib/rbot/core/config.rb:237
825
852
  msgid ""
826
853
  "config rm <value> from <key> => remove value <value> from key <key> if <key> "
827
854
  "is an array"
@@ -829,7 +856,7 @@ msgstr ""
829
856
  "config rm <valeur> from <clé> => supprime la <valeur> de la <clé> si <clé> "
830
857
  "est un tableau"
831
858
 
832
- #: lib/rbot/core/config.rb:235
859
+ #: lib/rbot/core/config.rb:239
833
860
  msgid ""
834
861
  "config module - bot configuration. usage: list, desc, get, set, unset, add, "
835
862
  "rm"
@@ -837,29 +864,29 @@ msgstr ""
837
864
  "config module - configuration du bot. utilisation: list, desc, get, set, "
838
865
  "unset, add, rm"
839
866
 
840
- #: lib/rbot/core/config.rb:240
867
+ #: lib/rbot/core/config.rb:244
841
868
  msgid "nick <newnick> => change the bot nick to <newnick>, if possible"
842
869
  msgstr "nick <pseudo> => change le pseudo en <pseudo>"
843
870
 
844
- #: lib/rbot/core/config.rb:242
871
+ #: lib/rbot/core/config.rb:246
845
872
  msgid "status => display some information on the bot's status"
846
873
  msgstr "status => affiche quelques informations sur le status du bot"
847
874
 
848
- #: lib/rbot/core/config.rb:244
875
+ #: lib/rbot/core/config.rb:248
849
876
  msgid "save => save current dynamic data and configuration"
850
877
  msgstr ""
851
878
  "save => sauvegarde les données dynamiques courantes et les données de "
852
879
  "configuration"
853
880
 
854
- #: lib/rbot/core/config.rb:246
881
+ #: lib/rbot/core/config.rb:250
855
882
  msgid "rescan => reload modules and static facts"
856
883
  msgstr "rescan => recharge les modules et les definitions statiques"
857
884
 
858
- #: lib/rbot/core/config.rb:248
885
+ #: lib/rbot/core/config.rb:252
859
886
  msgid "version => describes software version"
860
887
  msgstr "version => affiche la version logicielle"
861
888
 
862
- #: lib/rbot/core/config.rb:250
889
+ #: lib/rbot/core/config.rb:254
863
890
  msgid "config-related tasks: config, save, rescan, version, nick, status"
864
891
  msgstr "taches de configuration similaire: config, save, rescan"
865
892
 
@@ -891,168 +918,204 @@ msgstr "aucuns filtres ne correspond à %{pat}"
891
918
  msgid "filters matching %{pat}: "
892
919
  msgstr "filtres correspondants à %{pat}: "
893
920
 
894
- #: lib/rbot/core/userdata.rb:146
921
+ #: lib/rbot/core/userdata.rb:161
895
922
  msgid "%{key} data for %{user}: %{data}"
896
923
  msgstr "%{word} appris par %{user} le %{date}"
897
924
 
898
- #: lib/rbot/core/userdata.rb:152
925
+ #: lib/rbot/core/userdata.rb:167
899
926
  msgid "sorry, no %{key} data for %{user}"
900
927
  msgstr "désolé, aucune %{key} de donnée pour %{user}"
901
928
 
902
- #: lib/rbot/core/utils/utils.rb:202
929
+ #: lib/rbot/core/utils/utils.rb:184
903
930
  msgid "year"
904
931
  msgstr "année"
905
932
 
906
- #: lib/rbot/core/utils/utils.rb:202
933
+ #: lib/rbot/core/utils/utils.rb:184
907
934
  msgid "years"
908
935
  msgstr "années"
909
936
 
910
- #: lib/rbot/core/utils/utils.rb:204
937
+ #: lib/rbot/core/utils/utils.rb:186
911
938
  msgid "month"
912
939
  msgstr "mois"
913
940
 
914
- #: lib/rbot/core/utils/utils.rb:204
941
+ #: lib/rbot/core/utils/utils.rb:186
915
942
  msgid "months"
916
943
  msgstr "mois"
917
944
 
918
- #: lib/rbot/core/utils/utils.rb:206
945
+ #: lib/rbot/core/utils/utils.rb:188
919
946
  msgid "day"
920
947
  msgstr "jour"
921
948
 
922
- #: lib/rbot/core/utils/utils.rb:206
949
+ #: lib/rbot/core/utils/utils.rb:188
923
950
  msgid "days"
924
951
  msgstr "jours"
925
952
 
926
- #: lib/rbot/core/utils/utils.rb:208
953
+ #: lib/rbot/core/utils/utils.rb:190
927
954
  msgid "hour"
928
955
  msgstr "heure"
929
956
 
930
- #: lib/rbot/core/utils/utils.rb:208
957
+ #: lib/rbot/core/utils/utils.rb:190
931
958
  msgid "hours"
932
959
  msgstr "heures"
933
960
 
934
- #: lib/rbot/core/utils/utils.rb:210
961
+ #: lib/rbot/core/utils/utils.rb:192
935
962
  msgid "minute"
936
963
  msgstr "minute"
937
964
 
938
- #: lib/rbot/core/utils/utils.rb:210
965
+ #: lib/rbot/core/utils/utils.rb:192
939
966
  msgid "minutes"
940
967
  msgstr "minutes"
941
968
 
942
- #: lib/rbot/core/utils/utils.rb:212
969
+ #: lib/rbot/core/utils/utils.rb:194
943
970
  msgid "second"
944
971
  msgstr "seconde"
945
972
 
946
- #: lib/rbot/core/utils/utils.rb:212
973
+ #: lib/rbot/core/utils/utils.rb:194
947
974
  msgid "seconds"
948
975
  msgstr "secondes"
949
976
 
950
- #: lib/rbot/core/utils/utils.rb:219
977
+ #: lib/rbot/core/utils/utils.rb:201 lib/rbot/core/utils/utils.rb:710
951
978
  msgid " and "
952
979
  msgstr " et "
953
980
 
954
- #: lib/rbot/core/utils/utils.rb:252
981
+ #: lib/rbot/core/utils/utils.rb:232
982
+ msgid "right now"
983
+ msgstr ""
984
+
985
+ #: lib/rbot/core/utils/utils.rb:236
955
986
  msgid "%{d} from now"
956
987
  msgstr ""
957
988
 
958
- #: lib/rbot/core/utils/utils.rb:254
989
+ #: lib/rbot/core/utils/utils.rb:238
959
990
  msgid "%{d} ago"
960
991
  msgstr ""
961
992
 
962
- #: lib/rbot/core/utils/utils.rb:257
993
+ #: lib/rbot/core/utils/utils.rb:250
963
994
  #, fuzzy
964
- msgid "on %{date}"
965
- msgstr "faire %{action}"
995
+ msgid "%{m} years"
996
+ msgstr "jours"
966
997
 
967
- #: lib/rbot/core/utils/utils.rb:266
968
- msgid "less than a minute"
969
- msgstr ""
998
+ #: lib/rbot/core/utils/utils.rb:252
999
+ #, fuzzy
1000
+ msgid "%{m} months"
1001
+ msgstr "minutes"
970
1002
 
971
- #: lib/rbot/core/utils/utils.rb:268
1003
+ #: lib/rbot/core/utils/utils.rb:254
972
1004
  #, fuzzy
973
- msgid "%{m} minutes"
1005
+ msgid "%{m} weeks"
974
1006
  msgstr "minutes"
975
1007
 
976
- #: lib/rbot/core/utils/utils.rb:270
977
- msgid "about one hour"
978
- msgstr ""
1008
+ #: lib/rbot/core/utils/utils.rb:256
1009
+ #, fuzzy
1010
+ msgid "%{m} days"
1011
+ msgstr "jours"
979
1012
 
980
- #: lib/rbot/core/utils/utils.rb:272
1013
+ #: lib/rbot/core/utils/utils.rb:258
981
1014
  #, fuzzy
982
1015
  msgid "%{m} hours"
983
1016
  msgstr "heures"
984
1017
 
985
- #: lib/rbot/core/utils/utils.rb:274
1018
+ #: lib/rbot/core/utils/utils.rb:260
1019
+ msgid "half an hour"
1020
+ msgstr ""
1021
+
1022
+ #: lib/rbot/core/utils/utils.rb:263
986
1023
  #, fuzzy
987
- msgid "one day"
988
- msgstr "jour"
1024
+ msgid "an hour"
1025
+ msgstr "heure"
989
1026
 
990
- #: lib/rbot/core/utils/utils.rb:276
991
- msgid "about one day"
1027
+ #: lib/rbot/core/utils/utils.rb:265
1028
+ msgid "an hour and a half"
992
1029
  msgstr ""
993
1030
 
994
- #: lib/rbot/core/utils/utils.rb:278
1031
+ #: lib/rbot/core/utils/utils.rb:267
995
1032
  #, fuzzy
996
- msgid "%{m} days"
997
- msgstr "jours"
1033
+ msgid "%{m} minutes"
1034
+ msgstr "minutes"
1035
+
1036
+ #: lib/rbot/core/utils/utils.rb:269
1037
+ #, fuzzy
1038
+ msgid "%{m} seconds"
1039
+ msgstr "secondes"
1040
+
1041
+ #: lib/rbot/core/utils/utils.rb:271
1042
+ #, fuzzy
1043
+ msgid "one second"
1044
+ msgstr "seconde"
1045
+
1046
+ #: lib/rbot/core/wordlist_ui.rb:10
1047
+ msgid "wordlist list [<pattern>] => list wordlists (matching <pattern>)"
1048
+ msgstr ""
1049
+
1050
+ #: lib/rbot/core/wordlist_ui.rb:16
1051
+ msgid "no wordlist found"
1052
+ msgstr ""
1053
+
1054
+ #: lib/rbot/core/wordlist_ui.rb:18
1055
+ msgid "Wordlists: %{found}"
1056
+ msgstr ""
998
1057
 
999
- #: lib/rbot/ircbot.rb:1233
1058
+ #: lib/rbot/ircbot.rb:1250
1059
+ msgid "restarting, back in %{wait}..."
1060
+ msgstr ""
1061
+
1062
+ #: lib/rbot/ircbot.rb:1333
1000
1063
  msgid "help topics: "
1001
1064
  msgstr "sujets d'aide: "
1002
1065
 
1003
- #: lib/rbot/ircbot.rb:1235
1066
+ #: lib/rbot/ircbot.rb:1335
1004
1067
  msgid " (help <topic> for more info)"
1005
1068
  msgstr "(help <sujet> pour plus d'informations)"
1006
1069
 
1007
- #: lib/rbot/ircbot.rb:1238
1070
+ #: lib/rbot/ircbot.rb:1338
1008
1071
  msgid "no help for topic %{topic}"
1009
1072
  msgstr "aucune aide pour le sujet %{topic}"
1010
1073
 
1011
- #: lib/rbot/ircbot.rb:1249
1074
+ #: lib/rbot/ircbot.rb:1349
1012
1075
  msgid ""
1013
1076
  "Uptime %{up}, %{plug} plugins active, %{sent} lines sent, %{recv} received."
1014
1077
  msgstr ""
1015
1078
  "Uptime %{up},%{plug} plugins actifs, %{sent} lignes envoyés, %{recv} recut."
1016
1079
 
1017
- #: lib/rbot/plugins.rb:341
1080
+ #: lib/rbot/plugins.rb:344
1018
1081
  msgid "incorrect usage, ask for help using '%{command}'"
1019
1082
  msgstr "utilisation incorrecte, demandez de l'aide via '%{command}'"
1020
1083
 
1021
- #: lib/rbot/plugins.rb:665
1084
+ #: lib/rbot/plugins.rb:707
1022
1085
  msgid "%{count} core module loaded"
1023
1086
  msgid_plural "%{count} core modules loaded"
1024
1087
  msgstr[0] "%{count} core module chargé"
1025
1088
  msgstr[1] "%{count} core modules chargés"
1026
1089
 
1027
- #: lib/rbot/plugins.rb:668
1090
+ #: lib/rbot/plugins.rb:710
1028
1091
  msgid "%{count} core module: %{list}"
1029
1092
  msgid_plural "%{count} core modules: %{list}"
1030
1093
  msgstr[0] "%{count} core module: %{list}"
1031
1094
  msgstr[1] "%{count} core modules: %{list}"
1032
1095
 
1033
- #: lib/rbot/plugins.rb:674
1096
+ #: lib/rbot/plugins.rb:716
1034
1097
  msgid "no core botmodules loaded"
1035
1098
  msgstr "aucuns modules du core de chargé"
1036
1099
 
1037
- #: lib/rbot/plugins.rb:679
1100
+ #: lib/rbot/plugins.rb:721
1038
1101
  msgid "%{count} plugin loaded"
1039
1102
  msgid_plural "%{count} plugins loaded"
1040
1103
  msgstr[0] "%{count} plugin chargé"
1041
1104
  msgstr[1] "%{count} plugins chargés"
1042
1105
 
1043
- #: lib/rbot/plugins.rb:682
1106
+ #: lib/rbot/plugins.rb:724
1044
1107
  msgid "%{count} plugin: %{list}"
1045
1108
  msgid_plural "%{count} plugins: %{list}"
1046
1109
  msgstr[0] "%{count} plugin: %{list}"
1047
1110
  msgstr[1] "%{count} plugins: %{list}"
1048
1111
 
1049
- #: lib/rbot/plugins.rb:693
1112
+ #: lib/rbot/plugins.rb:735
1050
1113
  msgid "%{highlight}%{count} plugin ignored%{highlight}"
1051
1114
  msgid_plural "%{highlight}%{count} plugins ignored%{highlight}"
1052
1115
  msgstr[0] "%{highlight}%{count} plugin ignoré%{highlight}"
1053
1116
  msgstr[1] "%{highlight}%{count} plugins ignorés%{highlight}"
1054
1117
 
1055
- #: lib/rbot/plugins.rb:698
1118
+ #: lib/rbot/plugins.rb:740
1056
1119
  msgid ""
1057
1120
  "%{highlight}%{count} plugin ignored%{highlight}: use %{bold}%{command}%"
1058
1121
  "{bold} to see why"
@@ -1066,13 +1129,13 @@ msgstr[1] ""
1066
1129
  "%{highlight}%{count} plugins ignorés%{highlight}: utilisez %{bold}%{command}%"
1067
1130
  "{bold} pour voir pourquoi"
1068
1131
 
1069
- #: lib/rbot/plugins.rb:708
1132
+ #: lib/rbot/plugins.rb:750
1070
1133
  msgid "%{highlight}%{count} plugin failed to load%{highlight}"
1071
1134
  msgid_plural "%{highlight}%{count} plugins failed to load%{highlight}"
1072
1135
  msgstr[0] "%{highlight}%{count} plugin impossible à chargé%{highlight}"
1073
1136
  msgstr[1] "%{highlight}%{count} plugins impossibles à chargés%{highlight}"
1074
1137
 
1075
- #: lib/rbot/plugins.rb:713
1138
+ #: lib/rbot/plugins.rb:755
1076
1139
  msgid ""
1077
1140
  "%{highlight}%{count} plugin failed to load%{highlight}: use %{bold}%"
1078
1141
  "{command}%{bold} to see why"
@@ -1086,11 +1149,11 @@ msgstr[1] ""
1086
1149
  "%{highlight}%{count} plugins impossibles à chargés%{highlight}: utilisez %"
1087
1150
  "{bold}%{command}%{bold} pour voir pourquoi"
1088
1151
 
1089
- #: lib/rbot/plugins.rb:743
1152
+ #: lib/rbot/plugins.rb:785
1090
1153
  msgid "no plugins failed to load"
1091
1154
  msgstr "aucuns plugins n'ont échoués au chargement"
1092
1155
 
1093
- #: lib/rbot/plugins.rb:745
1156
+ #: lib/rbot/plugins.rb:787
1094
1157
  msgid ""
1095
1158
  "%{highlight}%{plugin}%{highlight} in %{dir} failed with error %{exception}: %"
1096
1159
  "{reason}"
@@ -1098,26 +1161,26 @@ msgstr ""
1098
1161
  "%{highlight}%{plugin}%{highlight} dans %{dir} a échoué avec l'erreur %"
1099
1162
  "{exception}: %{reason}"
1100
1163
 
1101
- #: lib/rbot/plugins.rb:749
1164
+ #: lib/rbot/plugins.rb:791
1102
1165
  msgid "at %{backtrace}"
1103
1166
  msgstr "à %{backtrace}"
1104
1167
 
1105
- #: lib/rbot/plugins.rb:755
1168
+ #: lib/rbot/plugins.rb:797
1106
1169
  msgid "no plugins were ignored"
1107
1170
  msgstr "aucun plugins n'ont été ignoré"
1108
1171
 
1109
- #: lib/rbot/plugins.rb:759
1172
+ #: lib/rbot/plugins.rb:801
1110
1173
  msgid "overruled by previous"
1111
1174
  msgstr "rejeté par le precedent"
1112
1175
 
1113
- #: lib/rbot/registry.rb:20
1176
+ #: lib/rbot/registry.rb:22
1114
1177
  msgid ""
1115
1178
  "upgrading old-style (rbot 0.9.5 or earlier) plugin registry to new format"
1116
1179
  msgstr ""
1117
1180
  "mise à jour du vieux style (rbot 0.9.5 ou plus vieux) de plugin de registre "
1118
1181
  "au nouveau format"
1119
1182
 
1120
- #: lib/rbot/registry.rb:40
1183
+ #: lib/rbot/registry.rb:41
1121
1184
  msgid ""
1122
1185
  "upgrading previous (rbot 0.9.9 or earlier) plugin registry to new split "
1123
1186
  "format"
@@ -1131,3 +1194,11 @@ msgstr "la tentative de récuperation marshal a échoué, essai des defauts"
1131
1194
 
1132
1195
  #~ msgid "nick <nick> => attempt to change nick to <nick>"
1133
1196
  #~ msgstr "nick <nick> => essaye de changer le pseudo en <nick>"
1197
+
1198
+ #, fuzzy
1199
+ #~ msgid "one day"
1200
+ #~ msgstr "jour"
1201
+
1202
+ #, fuzzy
1203
+ #~ msgid "on %{date}"
1204
+ #~ msgstr "faire %{action}"