├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS ├── COPYING ├── COPYING.rbot ├── ChangeLog ├── Dockerfile ├── GPLv2 ├── Gemfile ├── Gemfile.lock ├── INSTALL ├── README.md ├── REQUIREMENTS ├── Rakefile ├── TODO ├── Usage_en.txt ├── bin ├── rbot ├── rbot-remote └── rbotdb ├── data └── rbot │ ├── contrib │ └── plugins │ │ ├── stats.rb │ │ └── vandale.rb │ ├── filters │ └── rss.rb │ ├── languages │ ├── dutch.lang │ ├── english.lang │ ├── finnish.lang │ ├── french.lang │ ├── german.lang │ ├── italian.lang │ ├── japanese.lang │ ├── russian.lang │ └── traditional_chinese.lang │ ├── plugins │ ├── alias.rb │ ├── autoop.rb │ ├── autorejoin.rb │ ├── bans.rb │ ├── bash.rb │ ├── botsnack.rb │ ├── cal.rb │ ├── chanserv.rb │ ├── chucknorris.rb │ ├── chucknorris.yml │ ├── deepthoughts.rb │ ├── dice.rb │ ├── eightball.rb │ ├── excuse.rb │ ├── factoids.rb │ ├── figlet.rb │ ├── fortune.rb │ ├── games │ │ ├── azgame.rb │ │ ├── greed.rb │ │ ├── hangman.rb │ │ ├── quiz.rb │ │ ├── roshambo.rb │ │ ├── roulette.rb │ │ ├── shiritori.rb │ │ ├── uno.rb │ │ └── wheelfortune.rb │ ├── geoip.rb │ ├── googlefight.rb │ ├── greet.rb │ ├── hl2.rb │ ├── host.rb │ ├── httpd.rb.disabled │ ├── imdb.rb │ ├── insult.rb │ ├── keywords.rb │ ├── lart.rb │ ├── lart │ │ ├── larts-english │ │ ├── larts-italian │ │ ├── larts-japanese │ │ ├── praises-english │ │ ├── praises-italian │ │ └── praises-japanese │ ├── linkbot.rb │ ├── markov.rb │ ├── math.rb │ ├── modes.rb │ ├── nickrecover.rb │ ├── nickserv.rb │ ├── note.rb │ ├── nslookup.rb │ ├── oxford.rb │ ├── plugin.header │ ├── points.rb │ ├── poll.rb │ ├── quakeauth.rb │ ├── quotes.rb │ ├── reaction.rb │ ├── remind.rb │ ├── ri.rb │ ├── rot13.rb │ ├── rss.rb │ ├── salut.rb │ ├── salut │ │ ├── salut-english │ │ ├── salut-french │ │ ├── salut-italian │ │ └── salut-japanese │ ├── script.rb │ ├── search.rb │ ├── sed.rb │ ├── seen.rb │ ├── shortenurls.rb │ ├── slashdot.rb │ ├── spell.rb │ ├── theyfightcrime.rb │ ├── time.rb │ ├── topic.rb │ ├── translator.rb │ ├── tumblr.rb │ ├── twitter.rb │ ├── urban.rb │ ├── url.rb │ ├── usermodes.rb │ ├── weather.rb │ ├── webhook.rb │ ├── wserver.rb │ └── youtube.rb │ └── templates │ ├── keywords.rbot │ └── quiz │ └── win_messages ├── launch_here.rb ├── lib └── rbot │ ├── botuser.rb │ ├── config.rb │ ├── core │ ├── auth.rb │ ├── basics.rb │ ├── config.rb │ ├── filters_ui.rb │ ├── irclog.rb │ ├── journal.rb │ ├── journal_irclog.rb │ ├── unicode.rb │ ├── utils │ │ ├── agent.rb │ │ ├── extends.rb │ │ ├── filters.rb │ │ ├── parse_time.rb │ │ ├── utils.rb │ │ ├── where_is.rb │ │ └── wordlist.rb │ ├── webservice.rb │ └── wordlist_ui.rb │ ├── httputil.rb │ ├── irc.rb │ ├── ircbot.rb │ ├── ircsocket.rb │ ├── journal.rb │ ├── journal │ ├── mongo.rb │ └── postgres.rb │ ├── language.rb │ ├── load-gettext.rb │ ├── logger.rb │ ├── maskdb.rb │ ├── message.rb │ ├── messagemapper.rb │ ├── plugins.rb │ ├── post-clean.rb │ ├── post-config.rb │ ├── rbotconfig.rb │ ├── registry.rb │ ├── registry │ ├── daybreak.rb │ ├── dbm.rb │ ├── mem.rb │ ├── sqlite.rb │ └── tc.rb │ ├── rfc2812.rb │ └── timer.rb ├── man ├── rbot-remote.xml └── rbot.xml ├── msgmerge-wrapper.rb ├── po ├── en │ ├── rbot-alias.po │ ├── rbot-autoop.po │ ├── rbot-autorejoin.po │ ├── rbot-azgame.po │ ├── rbot-bans.po │ ├── rbot-bash.po │ ├── rbot-botsnack.po │ ├── rbot-cal.po │ ├── rbot-chanserv.po │ ├── rbot-chucknorris.po │ ├── rbot-debugger.po │ ├── rbot-deepthoughts.po │ ├── rbot-delicious.po │ ├── rbot-dice.po │ ├── rbot-dict.po │ ├── rbot-dictclient.po │ ├── rbot-digg.po │ ├── rbot-eightball.po │ ├── rbot-excuse.po │ ├── rbot-factoids.po │ ├── rbot-figlet.po │ ├── rbot-fish.po │ ├── rbot-forecast.po │ ├── rbot-fortune.po │ ├── rbot-freshmeat.po │ ├── rbot-geoip.po │ ├── rbot-googlefight.po │ ├── rbot-greet.po │ ├── rbot-grouphug.po │ ├── rbot-hangman.po │ ├── rbot-hl2.po │ ├── rbot-host.po │ ├── rbot-imdb.po │ ├── rbot-insult.po │ ├── rbot-iplookup.po │ ├── rbot-keywords.po │ ├── rbot-lart.po │ ├── rbot-lastfm.po │ ├── rbot-lib_spotify.po │ ├── rbot-linkbot.po │ ├── rbot-markov.po │ ├── rbot-math.po │ ├── rbot-modes.po │ ├── rbot-nickrecover.po │ ├── rbot-nickserv.po │ ├── rbot-note.po │ ├── rbot-nslookup.po │ ├── rbot-points.po │ ├── rbot-poll.po │ ├── rbot-quakeauth.po │ ├── rbot-quiz.po │ ├── rbot-quotes.po │ ├── rbot-reaction.po │ ├── rbot-remind.po │ ├── rbot-remotectl.po │ ├── rbot-ri.po │ ├── rbot-roshambo.po │ ├── rbot-rot13.po │ ├── rbot-roulette.po │ ├── rbot-rss.po │ ├── rbot-salut.po │ ├── rbot-script.po │ ├── rbot-search.po │ ├── rbot-sed.po │ ├── rbot-seen.po │ ├── rbot-shiritori.po │ ├── rbot-shortenurls.po │ ├── rbot-slashdot.po │ ├── rbot-spell.po │ ├── rbot-spotify.po │ ├── rbot-theyfightcrime.po │ ├── rbot-threat.po │ ├── rbot-time.po │ ├── rbot-topic.po │ ├── rbot-translator.po │ ├── rbot-tube.po │ ├── rbot-tumblr.po │ ├── rbot-twitter.po │ ├── rbot-uno.po │ ├── rbot-urban.po │ ├── rbot-url.po │ ├── rbot-usermodes.po │ ├── rbot-weather.po │ ├── rbot-wheelfortune.po │ ├── rbot-wow.po │ ├── rbot-wserver.po │ ├── rbot-youtube.po │ └── rbot.po ├── fi │ ├── rbot-alias.po │ ├── rbot-autoop.po │ ├── rbot-autorejoin.po │ ├── rbot-azgame.po │ ├── rbot-bans.po │ ├── rbot-bash.po │ ├── rbot-botsnack.po │ ├── rbot-cal.po │ ├── rbot-chanserv.po │ ├── rbot-chucknorris.po │ ├── rbot-debugger.po │ ├── rbot-deepthoughts.po │ ├── rbot-delicious.po │ ├── rbot-dice.po │ ├── rbot-dict.po │ ├── rbot-dictclient.po │ ├── rbot-digg.po │ ├── rbot-eightball.po │ ├── rbot-excuse.po │ ├── rbot-factoids.po │ ├── rbot-figlet.po │ ├── rbot-fish.po │ ├── rbot-forecast.po │ ├── rbot-fortune.po │ ├── rbot-freshmeat.po │ ├── rbot-geoip.po │ ├── rbot-googlefight.po │ ├── rbot-greet.po │ ├── rbot-grouphug.po │ ├── rbot-hangman.po │ ├── rbot-hl2.po │ ├── rbot-host.po │ ├── rbot-imdb.po │ ├── rbot-insult.po │ ├── rbot-iplookup.po │ ├── rbot-keywords.po │ ├── rbot-lart.po │ ├── rbot-lastfm.po │ ├── rbot-lib_spotify.po │ ├── rbot-linkbot.po │ ├── rbot-markov.po │ ├── rbot-math.po │ ├── rbot-modes.po │ ├── rbot-nickrecover.po │ ├── rbot-nickserv.po │ ├── rbot-note.po │ ├── rbot-nslookup.po │ ├── rbot-points.po │ ├── rbot-poll.po │ ├── rbot-quakeauth.po │ ├── rbot-quiz.po │ ├── rbot-quotes.po │ ├── rbot-reaction.po │ ├── rbot-remind.po │ ├── rbot-remotectl.po │ ├── rbot-ri.po │ ├── rbot-roshambo.po │ ├── rbot-rot13.po │ ├── rbot-roulette.po │ ├── rbot-rss.po │ ├── rbot-salut.po │ ├── rbot-script.po │ ├── rbot-search.po │ ├── rbot-sed.po │ ├── rbot-seen.po │ ├── rbot-shiritori.po │ ├── rbot-shortenurls.po │ ├── rbot-slashdot.po │ ├── rbot-spell.po │ ├── rbot-spotify.po │ ├── rbot-theyfightcrime.po │ ├── rbot-threat.po │ ├── rbot-time.po │ ├── rbot-topic.po │ ├── rbot-translator.po │ ├── rbot-tube.po │ ├── rbot-tumblr.po │ ├── rbot-twitter.po │ ├── rbot-uno.po │ ├── rbot-urban.po │ ├── rbot-url.po │ ├── rbot-usermodes.po │ ├── rbot-weather.po │ ├── rbot-wheelfortune.po │ ├── rbot-wow.po │ ├── rbot-wserver.po │ ├── rbot-youtube.po │ └── rbot.po ├── fr │ ├── rbot-alias.po │ ├── rbot-autoop.po │ ├── rbot-autorejoin.po │ ├── rbot-azgame.po │ ├── rbot-bans.po │ ├── rbot-bash.po │ ├── rbot-botsnack.po │ ├── rbot-cal.po │ ├── rbot-chanserv.po │ ├── rbot-chucknorris.po │ ├── rbot-debugger.po │ ├── rbot-deepthoughts.po │ ├── rbot-delicious.po │ ├── rbot-dice.po │ ├── rbot-dict.po │ ├── rbot-dictclient.po │ ├── rbot-digg.po │ ├── rbot-eightball.po │ ├── rbot-excuse.po │ ├── rbot-factoids.po │ ├── rbot-figlet.po │ ├── rbot-fish.po │ ├── rbot-forecast.po │ ├── rbot-fortune.po │ ├── rbot-freshmeat.po │ ├── rbot-geoip.po │ ├── rbot-googlefight.po │ ├── rbot-greet.po │ ├── rbot-grouphug.po │ ├── rbot-hangman.po │ ├── rbot-hl2.po │ ├── rbot-host.po │ ├── rbot-imdb.po │ ├── rbot-insult.po │ ├── rbot-iplookup.po │ ├── rbot-keywords.po │ ├── rbot-lart.po │ ├── rbot-lastfm.po │ ├── rbot-lib_spotify.po │ ├── rbot-linkbot.po │ ├── rbot-markov.po │ ├── rbot-math.po │ ├── rbot-modes.po │ ├── rbot-nickrecover.po │ ├── rbot-nickserv.po │ ├── rbot-note.po │ ├── rbot-nslookup.po │ ├── rbot-points.po │ ├── rbot-poll.po │ ├── rbot-quakeauth.po │ ├── rbot-quiz.po │ ├── rbot-quotes.po │ ├── rbot-reaction.po │ ├── rbot-remind.po │ ├── rbot-remotectl.po │ ├── rbot-ri.po │ ├── rbot-roshambo.po │ ├── rbot-rot13.po │ ├── rbot-roulette.po │ ├── rbot-rss.po │ ├── rbot-salut.po │ ├── rbot-script.po │ ├── rbot-search.po │ ├── rbot-sed.po │ ├── rbot-seen.po │ ├── rbot-shiritori.po │ ├── rbot-shortenurls.po │ ├── rbot-slashdot.po │ ├── rbot-spell.po │ ├── rbot-spotify.po │ ├── rbot-theyfightcrime.po │ ├── rbot-threat.po │ ├── rbot-time.po │ ├── rbot-topic.po │ ├── rbot-translator.po │ ├── rbot-tube.po │ ├── rbot-tumblr.po │ ├── rbot-twitter.po │ ├── rbot-uno.po │ ├── rbot-urban.po │ ├── rbot-url.po │ ├── rbot-usermodes.po │ ├── rbot-weather.po │ ├── rbot-wheelfortune.po │ ├── rbot-wow.po │ ├── rbot-wserver.po │ ├── rbot-youtube.po │ └── rbot.po ├── it │ ├── rbot-alias.po │ ├── rbot-autoop.po │ ├── rbot-autorejoin.po │ ├── rbot-azgame.po │ ├── rbot-bans.po │ ├── rbot-bash.po │ ├── rbot-botsnack.po │ ├── rbot-cal.po │ ├── rbot-chanserv.po │ ├── rbot-chucknorris.po │ ├── rbot-debugger.po │ ├── rbot-deepthoughts.po │ ├── rbot-delicious.po │ ├── rbot-dice.po │ ├── rbot-dict.po │ ├── rbot-dictclient.po │ ├── rbot-digg.po │ ├── rbot-eightball.po │ ├── rbot-excuse.po │ ├── rbot-factoids.po │ ├── rbot-figlet.po │ ├── rbot-fish.po │ ├── rbot-forecast.po │ ├── rbot-fortune.po │ ├── rbot-freshmeat.po │ ├── rbot-geoip.po │ ├── rbot-googlefight.po │ ├── rbot-greet.po │ ├── rbot-grouphug.po │ ├── rbot-hangman.po │ ├── rbot-hl2.po │ ├── rbot-host.po │ ├── rbot-imdb.po │ ├── rbot-insult.po │ ├── rbot-iplookup.po │ ├── rbot-keywords.po │ ├── rbot-lart.po │ ├── rbot-lastfm.po │ ├── rbot-lib_spotify.po │ ├── rbot-linkbot.po │ ├── rbot-markov.po │ ├── rbot-math.po │ ├── rbot-modes.po │ ├── rbot-nickrecover.po │ ├── rbot-nickserv.po │ ├── rbot-note.po │ ├── rbot-nslookup.po │ ├── rbot-points.po │ ├── rbot-poll.po │ ├── rbot-quakeauth.po │ ├── rbot-quiz.po │ ├── rbot-quotes.po │ ├── rbot-reaction.po │ ├── rbot-remind.po │ ├── rbot-remotectl.po │ ├── rbot-ri.po │ ├── rbot-roshambo.po │ ├── rbot-rot13.po │ ├── rbot-roulette.po │ ├── rbot-rss.po │ ├── rbot-salut.po │ ├── rbot-script.po │ ├── rbot-search.po │ ├── rbot-sed.po │ ├── rbot-seen.po │ ├── rbot-shiritori.po │ ├── rbot-shortenurls.po │ ├── rbot-slashdot.po │ ├── rbot-spell.po │ ├── rbot-spotify.po │ ├── rbot-theyfightcrime.po │ ├── rbot-threat.po │ ├── rbot-time.po │ ├── rbot-topic.po │ ├── rbot-translator.po │ ├── rbot-tube.po │ ├── rbot-tumblr.po │ ├── rbot-twitter.po │ ├── rbot-uno.po │ ├── rbot-urban.po │ ├── rbot-url.po │ ├── rbot-usermodes.po │ ├── rbot-weather.po │ ├── rbot-wheelfortune.po │ ├── rbot-wow.po │ ├── rbot-wserver.po │ ├── rbot-youtube.po │ └── rbot.po ├── ja │ ├── rbot-alias.po │ ├── rbot-autoop.po │ ├── rbot-autorejoin.po │ ├── rbot-azgame.po │ ├── rbot-bans.po │ ├── rbot-bash.po │ ├── rbot-botsnack.po │ ├── rbot-cal.po │ ├── rbot-chanserv.po │ ├── rbot-chucknorris.po │ ├── rbot-debugger.po │ ├── rbot-deepthoughts.po │ ├── rbot-delicious.po │ ├── rbot-dice.po │ ├── rbot-dict.po │ ├── rbot-dictclient.po │ ├── rbot-digg.po │ ├── rbot-eightball.po │ ├── rbot-excuse.po │ ├── rbot-factoids.po │ ├── rbot-figlet.po │ ├── rbot-fish.po │ ├── rbot-forecast.po │ ├── rbot-fortune.po │ ├── rbot-freshmeat.po │ ├── rbot-geoip.po │ ├── rbot-googlefight.po │ ├── rbot-greet.po │ ├── rbot-grouphug.po │ ├── rbot-hangman.po │ ├── rbot-hl2.po │ ├── rbot-host.po │ ├── rbot-imdb.po │ ├── rbot-insult.po │ ├── rbot-iplookup.po │ ├── rbot-keywords.po │ ├── rbot-lart.po │ ├── rbot-lastfm.po │ ├── rbot-lib_spotify.po │ ├── rbot-linkbot.po │ ├── rbot-markov.po │ ├── rbot-math.po │ ├── rbot-modes.po │ ├── rbot-nickrecover.po │ ├── rbot-nickserv.po │ ├── rbot-note.po │ ├── rbot-nslookup.po │ ├── rbot-points.po │ ├── rbot-poll.po │ ├── rbot-quakeauth.po │ ├── rbot-quiz.po │ ├── rbot-quotes.po │ ├── rbot-reaction.po │ ├── rbot-remind.po │ ├── rbot-remotectl.po │ ├── rbot-ri.po │ ├── rbot-roshambo.po │ ├── rbot-rot13.po │ ├── rbot-roulette.po │ ├── rbot-rss.po │ ├── rbot-salut.po │ ├── rbot-script.po │ ├── rbot-search.po │ ├── rbot-sed.po │ ├── rbot-seen.po │ ├── rbot-shiritori.po │ ├── rbot-shortenurls.po │ ├── rbot-slashdot.po │ ├── rbot-spell.po │ ├── rbot-spotify.po │ ├── rbot-theyfightcrime.po │ ├── rbot-threat.po │ ├── rbot-time.po │ ├── rbot-topic.po │ ├── rbot-translator.po │ ├── rbot-tube.po │ ├── rbot-tumblr.po │ ├── rbot-twitter.po │ ├── rbot-uno.po │ ├── rbot-urban.po │ ├── rbot-url.po │ ├── rbot-usermodes.po │ ├── rbot-weather.po │ ├── rbot-wheelfortune.po │ ├── rbot-wow.po │ ├── rbot-wserver.po │ ├── rbot-youtube.po │ └── rbot.po ├── rbot-alias.pot ├── rbot-autoop.pot ├── rbot-autorejoin.pot ├── rbot-azgame.pot ├── rbot-bans.pot ├── rbot-bash.pot ├── rbot-botsnack.pot ├── rbot-cal.pot ├── rbot-chanserv.pot ├── rbot-chucknorris.pot ├── rbot-debugger.pot ├── rbot-deepthoughts.pot ├── rbot-delicious.pot ├── rbot-dice.pot ├── rbot-dict.pot ├── rbot-dictclient.pot ├── rbot-digg.pot ├── rbot-eightball.pot ├── rbot-excuse.pot ├── rbot-factoids.pot ├── rbot-figlet.pot ├── rbot-fish.pot ├── rbot-forecast.pot ├── rbot-fortune.pot ├── rbot-freshmeat.pot ├── rbot-geoip.pot ├── rbot-googlefight.pot ├── rbot-greet.pot ├── rbot-grouphug.pot ├── rbot-hangman.pot ├── rbot-hl2.pot ├── rbot-host.pot ├── rbot-imdb.pot ├── rbot-insult.pot ├── rbot-iplookup.pot ├── rbot-keywords.pot ├── rbot-lart.pot ├── rbot-lastfm.pot ├── rbot-lib_spotify.pot ├── rbot-linkbot.pot ├── rbot-markov.pot ├── rbot-math.pot ├── rbot-modes.pot ├── rbot-nickrecover.pot ├── rbot-nickserv.pot ├── rbot-note.pot ├── rbot-nslookup.pot ├── rbot-points.pot ├── rbot-poll.pot ├── rbot-quakeauth.pot ├── rbot-quiz.pot ├── rbot-quotes.pot ├── rbot-reaction.pot ├── rbot-remind.pot ├── rbot-remotectl.pot ├── rbot-ri.pot ├── rbot-roshambo.pot ├── rbot-rot13.pot ├── rbot-roulette.pot ├── rbot-rss.pot ├── rbot-salut.pot ├── rbot-script.pot ├── rbot-search.pot ├── rbot-sed.pot ├── rbot-seen.pot ├── rbot-shiritori.pot ├── rbot-shortenurls.pot ├── rbot-slashdot.pot ├── rbot-spell.pot ├── rbot-spotify.pot ├── rbot-theyfightcrime.pot ├── rbot-threat.pot ├── rbot-time.pot ├── rbot-topic.pot ├── rbot-translator.pot ├── rbot-tube.pot ├── rbot-tumblr.pot ├── rbot-twitter.pot ├── rbot-uno.pot ├── rbot-urban.pot ├── rbot-url.pot ├── rbot-usermodes.pot ├── rbot-weather.pot ├── rbot-wheelfortune.pot ├── rbot-wow.pot ├── rbot-wserver.pot ├── rbot-youtube.pot ├── rbot.pot ├── zh_CN │ ├── rbot-alias.po │ ├── rbot-autoop.po │ ├── rbot-autorejoin.po │ ├── rbot-azgame.po │ ├── rbot-bans.po │ ├── rbot-bash.po │ ├── rbot-botsnack.po │ ├── rbot-cal.po │ ├── rbot-chanserv.po │ ├── rbot-chucknorris.po │ ├── rbot-debugger.po │ ├── rbot-deepthoughts.po │ ├── rbot-delicious.po │ ├── rbot-dice.po │ ├── rbot-dict.po │ ├── rbot-dictclient.po │ ├── rbot-digg.po │ ├── rbot-eightball.po │ ├── rbot-excuse.po │ ├── rbot-factoids.po │ ├── rbot-figlet.po │ ├── rbot-fish.po │ ├── rbot-forecast.po │ ├── rbot-fortune.po │ ├── rbot-freshmeat.po │ ├── rbot-geoip.po │ ├── rbot-googlefight.po │ ├── rbot-greet.po │ ├── rbot-grouphug.po │ ├── rbot-hangman.po │ ├── rbot-hl2.po │ ├── rbot-host.po │ ├── rbot-imdb.po │ ├── rbot-insult.po │ ├── rbot-iplookup.po │ ├── rbot-keywords.po │ ├── rbot-lart.po │ ├── rbot-lastfm.po │ ├── rbot-lib_spotify.po │ ├── rbot-linkbot.po │ ├── rbot-markov.po │ ├── rbot-math.po │ ├── rbot-modes.po │ ├── rbot-nickrecover.po │ ├── rbot-nickserv.po │ ├── rbot-note.po │ ├── rbot-nslookup.po │ ├── rbot-points.po │ ├── rbot-poll.po │ ├── rbot-quakeauth.po │ ├── rbot-quiz.po │ ├── rbot-quotes.po │ ├── rbot-reaction.po │ ├── rbot-remind.po │ ├── rbot-remotectl.po │ ├── rbot-ri.po │ ├── rbot-roshambo.po │ ├── rbot-rot13.po │ ├── rbot-roulette.po │ ├── rbot-rss.po │ ├── rbot-salut.po │ ├── rbot-script.po │ ├── rbot-search.po │ ├── rbot-sed.po │ ├── rbot-seen.po │ ├── rbot-shiritori.po │ ├── rbot-shortenurls.po │ ├── rbot-slashdot.po │ ├── rbot-spell.po │ ├── rbot-spotify.po │ ├── rbot-theyfightcrime.po │ ├── rbot-threat.po │ ├── rbot-time.po │ ├── rbot-topic.po │ ├── rbot-translator.po │ ├── rbot-tube.po │ ├── rbot-tumblr.po │ ├── rbot-twitter.po │ ├── rbot-uno.po │ ├── rbot-urban.po │ ├── rbot-url.po │ ├── rbot-usermodes.po │ ├── rbot-weather.po │ ├── rbot-wheelfortune.po │ ├── rbot-wow.po │ ├── rbot-wserver.po │ ├── rbot-youtube.po │ └── rbot.po └── zh_TW │ ├── rbot-alias.po │ ├── rbot-autoop.po │ ├── rbot-autorejoin.po │ ├── rbot-azgame.po │ ├── rbot-bans.po │ ├── rbot-bash.po │ ├── rbot-botsnack.po │ ├── rbot-cal.po │ ├── rbot-chanserv.po │ ├── rbot-chucknorris.po │ ├── rbot-debugger.po │ ├── rbot-deepthoughts.po │ ├── rbot-delicious.po │ ├── rbot-dice.po │ ├── rbot-dict.po │ ├── rbot-dictclient.po │ ├── rbot-digg.po │ ├── rbot-eightball.po │ ├── rbot-excuse.po │ ├── rbot-factoids.po │ ├── rbot-figlet.po │ ├── rbot-fish.po │ ├── rbot-forecast.po │ ├── rbot-fortune.po │ ├── rbot-freshmeat.po │ ├── rbot-geoip.po │ ├── rbot-googlefight.po │ ├── rbot-greet.po │ ├── rbot-grouphug.po │ ├── rbot-hangman.po │ ├── rbot-hl2.po │ ├── rbot-host.po │ ├── rbot-imdb.po │ ├── rbot-insult.po │ ├── rbot-iplookup.po │ ├── rbot-keywords.po │ ├── rbot-lart.po │ ├── rbot-lastfm.po │ ├── rbot-lib_spotify.po │ ├── rbot-linkbot.po │ ├── rbot-markov.po │ ├── rbot-math.po │ ├── rbot-modes.po │ ├── rbot-nickrecover.po │ ├── rbot-nickserv.po │ ├── rbot-note.po │ ├── rbot-nslookup.po │ ├── rbot-points.po │ ├── rbot-poll.po │ ├── rbot-quakeauth.po │ ├── rbot-quiz.po │ ├── rbot-quotes.po │ ├── rbot-reaction.po │ ├── rbot-remind.po │ ├── rbot-remotectl.po │ ├── rbot-ri.po │ ├── rbot-roshambo.po │ ├── rbot-rot13.po │ ├── rbot-roulette.po │ ├── rbot-rss.po │ ├── rbot-salut.po │ ├── rbot-script.po │ ├── rbot-search.po │ ├── rbot-sed.po │ ├── rbot-seen.po │ ├── rbot-shiritori.po │ ├── rbot-shortenurls.po │ ├── rbot-slashdot.po │ ├── rbot-spell.po │ ├── rbot-spotify.po │ ├── rbot-theyfightcrime.po │ ├── rbot-threat.po │ ├── rbot-time.po │ ├── rbot-topic.po │ ├── rbot-translator.po │ ├── rbot-tube.po │ ├── rbot-tumblr.po │ ├── rbot-twitter.po │ ├── rbot-uno.po │ ├── rbot-urban.po │ ├── rbot-url.po │ ├── rbot-usermodes.po │ ├── rbot-weather.po │ ├── rbot-wheelfortune.po │ ├── rbot-wow.po │ ├── rbot-wserver.po │ ├── rbot-youtube.po │ └── rbot.po ├── rbot.gemspec ├── release-checklist ├── setup.rb ├── tag-release ├── tasks ├── doc.rake ├── plugin.rake └── test.rake └── test ├── mock.rb ├── plugins ├── test_note.rb ├── test_points.rb └── test_rot13.rb ├── test_journal.rb ├── test_plugins_priority.rb ├── test_plugins_threshold.rb └── test_registry.rb /.gitattributes: -------------------------------------------------------------------------------- 1 | *.rb diff=ruby 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | doc 2 | data/locale 3 | .*.swp 4 | .config 5 | InstalledFiles 6 | lib/rbot/pkgconfig.rb 7 | man/*.1 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | --- 2 | language: ruby 3 | dist: bionic 4 | before_install: 5 | - sudo apt-get update -y 6 | - sudo apt-get install -y libtokyocabinet-dev zlib1g-dev libbz2-dev libxml2-dev libxslt1-dev 7 | script: 8 | - bundle exec rake test 9 | rvm: 10 | - 2.7.0 11 | - 2.6.0 12 | - 2.5.0 13 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | rbot the Ruby IRC bot 2 | 3 | Copyright (C) 2007-2015 Giuseppe Bilotta and the rbot development team 4 | 5 | This program is free software; you can redistribute it and/or modify it 6 | under the terms of the MIT license with acknolwedgement clause (see 7 | COPYING.rbot) or the GNU General Public License, version 2 (see GPLv2) 8 | 9 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ruby:2.7.0-buster 2 | 3 | RUN apt-get update -y && \ 4 | apt-get install -y ruby ruby-dev libtokyocabinet-dev zlib1g-dev libbz2-dev libxml2-dev libxslt1-dev 5 | RUN gem install bundle 6 | 7 | WORKDIR /opt/rbot 8 | COPY Gemfile /opt/rbot/Gemfile 9 | COPY Gemfile.lock /opt/rbot/Gemfile.lock 10 | 11 | RUN bundle install 12 | 13 | RUN useradd -ms /sbin/nologin rbot && chown rbot /opt/rbot && chown rbot -R /usr/local/bundle 14 | USER rbot 15 | 16 | COPY . /opt/rbot 17 | 18 | #RUN gem build rbot.gemspec && \ 19 | # gem install rbot-0.9.15.gem 20 | 21 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | 2 | source 'https://rubygems.org' 3 | 4 | group :registry do 5 | # rbot supports different databases for its persistent storage, 6 | # uncomment the one you plan on using: 7 | gem 'tokyocabinet' # core.db: tc 8 | #gem 'daybreak' # core.db: daybreak 9 | #gem 'sqlite3' # core.db: sqlite 10 | 11 | end 12 | 13 | gem 'mechanize' 14 | 15 | group :optional do 16 | gem 'shorturl' # shorturl 17 | gem 'tzinfo' # time 18 | gem 'oauth' # twitter 19 | gem 'oauth2' 20 | end 21 | 22 | gem "rake", "~> 13.0" 23 | gem "gettext", "~> 3.3" 24 | gem "test-unit", "~> 3.3" 25 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | Run setup.rb to install the bot. 2 | 3 | Just run rbot, it'll ask you for any core information it needs before it can 4 | start, after that you can configure everything else online using the config 5 | module. 6 | 7 | You can maintain multiple configurations at once. Start rbot with the 8 | location you want it to store runtime data in. By default, running rbot 9 | uses the ~/.rbot config directory. If you run 'rbot /path/to/foo', then the 10 | configuration will be stored to and read from there instead. 11 | 12 | Instructions for windows in REQUIREMENTS 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rbot - The Ruby IRC Bot 2 | 3 | [![Build Status](https://travis-ci.org/ruby-rbot/rbot.svg?branch=master)](https://travis-ci.org/ruby-rbot/rbot) 4 | 5 | rbot is designed around a flexible plugin system and is not only easy to 6 | extend, but it already includes many useful plugins. Some of the powerful 7 | features include: 8 | 9 | * Runtime configuration via irc 10 | * Flexible authentication and permission system 11 | * Plugin architecture that makes writing new plugins a breeze 12 | * Integrated web service 13 | * Batteries included: plugins for rss, twitter, imdb, translations, weather, notifications, lots of games and many more (over 70 plugins included) 14 | 15 | ## Documentation 16 | 17 | For more information about rbot visit our [github wiki](https://github.com/ruby-rbot/rbot/wiki). 18 | 19 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | o if searchquote (or similar) has 3 results, roundrobin between them as 2 | asked, don't respond a random one 3 | o freeze/thaw factoids (make them readonly) at higher auth 4 | o respond to insults 5 | o feed back errors from plugins (optional) 6 | o Allow users to leave messages to named users. 7 | o wtf plugin (bsdgames) 8 | -------------------------------------------------------------------------------- /data/rbot/languages/finnish.lang: -------------------------------------------------------------------------------- 1 | okay: 2 | okei 3 | selvä :) 4 | ok! 5 | tehty 6 | toki 7 | valmis 8 | dunno: 9 | mitäh? 10 | en tiedä 11 | emt 12 | ei hajuakaan 13 | ei tietoa 14 | hä? 15 | häh? 16 | älä multa kysy 17 | dunno_about_X: 18 | en tiedä mikä %s on 19 | mikä on %s? 20 | %s? mikä se on? 21 | insult: 22 | %s: :( 23 | %s: vihaan sua :( 24 | %s: kuole senkin paska! 25 | %s: nyt loukkasit minua :'( 26 | hello: 27 | moi :) 28 | terve 29 | hei 30 | päivää 31 | hello_X: 32 | terve %s :) 33 | %s: terve 34 | %s: moi :) 35 | %s: hei 36 | moi %s 37 | %s: mitä kuuluu? 38 | welcome: 39 | ole hyvä :) 40 | thanks: 41 | kiitti 42 | kiitos :) 43 | tänks 44 | thanks_X: 45 | %s: kiitos 46 | %s: kiitti :) 47 | quit: 48 | moikka 49 | hyvästi 50 | näkemiin 51 | -------------------------------------------------------------------------------- /data/rbot/languages/french.lang: -------------------------------------------------------------------------------- 1 | okay: 2 | d'accord 3 | dunno: 4 | de quoi est mort votre dernier esclave? 5 | je vous aurais bien aide, mais je ne vous aime pas 6 | faites-le vous-même 7 | parle à mon cul, ma tête est malade 8 | je ne sais pas 9 | je ne peut pas faire ca Dave. 10 | dunno_about_X: 11 | qu'est-ce c'est %s? 12 | insult: 13 | %s: putin! 14 | %s: :( 15 | %s: je te déteste :( 16 | %s: tu es completement debile 17 | %s: mais t'as une tête a faire sauter les plaques d'egouts! 18 | %s: est-ce que vous êtes ivre? 19 | hello: 20 | bonjour 21 | salut 22 | bonsoir 23 | hello_X: 24 | bonjour %s :) 25 | %s: salut 26 | welcome: 27 | de rien 28 | aucun probleme 29 | thanks: 30 | merci :) 31 | tu es trop gentil! 32 | je vous remerci bien 33 | thanks_X: 34 | %s: merci :) 35 | %s: tu es trop gentil! 36 | %s: je vous remerci bien 37 | quit: 38 | d'accord, au revoir 39 | a demain 40 | -------------------------------------------------------------------------------- /data/rbot/languages/italian.lang: -------------------------------------------------------------------------------- 1 | okay: 2 | okay 3 | ok 4 | fatto 5 | come vuoi 6 | detto, fatto 7 | dunno: 8 | non saprei 9 | non ne ho idea 10 | boh 11 | e chi lo sa 12 | chiedi a qualcun altro 13 | non so 14 | dunno_about_X: 15 | non so niente di %s 16 | %s? mai sentito 17 | insult: 18 | fanculo, %s 19 | ciuccia, %s 20 | %s: vacagher 21 | %s, facci un favore e muori 22 | odioso, %s 23 | %s, rompicoglioni di professione? 24 | %s, hai rotto 25 | tua mamma, %s 26 | hello: 27 | ola' :) 28 | ciao 29 | salve 30 | saluti 31 | yo 32 | hello_X: 33 | ola', %s 34 | yo %s 35 | salve, %s 36 | %s, yo 37 | %s, ola' 38 | ciao %s 39 | %s, ciao 40 | welcome: 41 | quando vuoi 42 | de nada 43 | no problema 44 | thanks: 45 | grazie :) 46 | grassssie 47 | thanks_X: 48 | grazie %s 49 | quit: 50 | adios 51 | se vedemio 52 | a dopo 53 | ciao ciao a tutti 54 | -------------------------------------------------------------------------------- /data/rbot/languages/japanese.lang: -------------------------------------------------------------------------------- 1 | okay: 2 | オッケー 3 | はいよ 4 | はいはい 5 | かしこまりました! 6 | dunno: 7 | さあ 8 | なにそれ? 9 | 知らないよ! 10 | へっ? 11 | dunno_about_X: 12 | %s ってなに? 13 | %s が何かわからない 14 | insult: 15 | %s大嫌い! 16 | %s: :( 17 | %s: 貴様、ブックロスぞ! 18 | %s: 死ね! 19 | %s: ひどいよ! 20 | hello: 21 | こんにちは 22 | おっす! 23 | やあ 24 | ごきげんよう 25 | hello_X: 26 | こんにちは、%sさん 27 | やあ、%s 28 | welcome: 29 | どういたしまして 30 | いええ 31 | thanks: 32 | ありがとう! 33 | どうも 34 | まいどに! 35 | =D 36 | thanks_X: 37 | %sさん、ありがとうございました 38 | %sさん、どうも 39 | quit: 40 | じゃあね 41 | またね 42 | 失礼します! 43 | バイバイ! 44 | -------------------------------------------------------------------------------- /data/rbot/languages/traditional_chinese.lang: -------------------------------------------------------------------------------- 1 | okay: 2 | 好的 3 | 好阿 :) 4 | 好! 5 | 好 6 | 好了 7 | 沒問題! 8 | 好吧 9 | 當然 10 | 嗯 11 | 我來幫你搞定 12 | dunno: 13 | 不知道 14 | 咬我阿 15 | 想不到 16 | 沒有頭緒 17 | ...嗯? 18 | *聳肩* 19 | 別問我 20 | 天曉得? 21 | 我不行啦 22 | 你最好自己搞定! 23 | dunno_about_X: 24 | 我完全不懂 %s 25 | 我從沒聽過 %s :( 26 | %s? 那又如何? 27 | 什麼是 %s? 28 | insult: 29 | %s: 討厭鬼! 30 | %s: :( 31 | %s: 我討厭你 :( 32 | %s: 去死吧! 33 | %s: 我生氣了! 34 | %s: 你傷了我的心 35 | hello: 36 | hello :) 37 | hola :) 38 | 你好 39 | 嗨! 40 | 嗯 41 | 嗨 42 | 唷 43 | 啥事? 44 | hello_X: 45 | hello %s :) 46 | %s: 我在 47 | %s: hola :) 48 | %s: 你好 49 | 嗨 %s :) 50 | %s: 嗯 51 | %s: 嗨! 52 | 唷 %s! 53 | %s: 啥事? 54 | 啥阿 %s? 55 | welcome: 56 | 沒問題 57 | 你客氣了 58 | de nada 59 | any time 60 | np :) 61 | thanks: 62 | 謝謝 :) 63 | schweet! 64 | 謝 :) 65 | =D 66 | cheers! 67 | thanks_X: 68 | %s: 謝謝 :) 69 | %s: schweet! 70 | %s: =D 71 | %s: 謝 :) 72 | %s: cheers 73 | quit: 74 | 好吧,掰 75 | 再見 76 | -------------------------------------------------------------------------------- /data/rbot/plugins/botsnack.rb: -------------------------------------------------------------------------------- 1 | #-- vim:sw=2:et 2 | #++ 3 | # 4 | # :title: botsnack - give your bot some love 5 | # :version: 1.0a 6 | # 7 | # Author:: Jan Wikholm 8 | # 9 | # Copyright:: (C) 2008 Jan Wikholm 10 | # 11 | # License:: public domain 12 | # 13 | # TODO More replies 14 | 15 | class BotsnackPlugin < Plugin 16 | def help(plugin, topic = '') 17 | "botsnack => reward #{@bot.nick} for being good" 18 | end 19 | 20 | def snack(m, params) 21 | if m.public? 22 | m.reply @bot.lang.get('thanks_X') % m.sourcenick 23 | else 24 | m.reply @bot.lang.get('thanks') 25 | end 26 | end 27 | end 28 | 29 | plugin = BotsnackPlugin.new 30 | 31 | plugin.map 'botsnack', :action => :snack, :thread => 'yes' # so it won't lock 32 | -------------------------------------------------------------------------------- /data/rbot/plugins/cal.rb: -------------------------------------------------------------------------------- 1 | class CalPlugin < Plugin 2 | Config.register Config::StringValue.new( 3 | 'cal.path', 4 | :default => 'cal', 5 | :desc => _('Path to the cal program') 6 | ) 7 | 8 | def help(plugin, topic = '') 9 | 'cal [month year] => show current calendar [optionally specify month and year]' 10 | end 11 | 12 | def cal_path 13 | @bot.config['cal.path'] 14 | end 15 | 16 | def cal(m, params) 17 | if params.key?(:month) 18 | m.reply Utils.safe_exec(cal_path, params[:month], params[:year]) 19 | else 20 | m.reply Utils.safe_exec(cal_path) 21 | end 22 | end 23 | end 24 | plugin = CalPlugin.new 25 | plugin.map 'cal :month :year', :requirements => { :month => /^\d+$/, :year => /^\d+$/ } 26 | plugin.map 'cal' 27 | -------------------------------------------------------------------------------- /data/rbot/plugins/eightball.rb: -------------------------------------------------------------------------------- 1 | # Author: novex, daniel@novex.net.nz based on code from slap.rb by oct 2 | 3 | class EightBallPlugin < Plugin 4 | def initialize 5 | super 6 | @answers = [ 7 | 'yes', 8 | 'no', 9 | 'outlook not so good', 10 | 'all signs point to yes', 11 | 'all signs point to no', 12 | 'why the hell are you asking me?', 13 | 'the answer is unclear' 14 | ] 15 | end 16 | 17 | def help(plugin, topic = '') 18 | 'magic 8-ball ruby bot module written by novex for nvinfo on #dumber@quakenet, usage: 8ball will i ever beat this cancer?' 19 | end 20 | 21 | def eightball(m, params) 22 | answers = @answers[rand(@answers.length)] 23 | action = "shakes the magic 8-ball for #{m.source} ... #{answers}" 24 | @bot.action m.replyto, action 25 | end 26 | end 27 | 28 | plugin = EightBallPlugin.new 29 | plugin.map '8ball', :action => 'usage' 30 | plugin.map '8ball *params', :action => 'eightball' 31 | -------------------------------------------------------------------------------- /data/rbot/plugins/host.rb: -------------------------------------------------------------------------------- 1 | class HostPlugin < Plugin 2 | Config.register Config::StringValue.new( 3 | 'host.path', 4 | :default => 'host', 5 | :desc => _('Path to the host program') 6 | ) 7 | 8 | def help(plugin, topic = '') 9 | 'host => query nameserver about domain names and zones for ' 10 | end 11 | 12 | def host_path 13 | @bot.config['host.path'] 14 | end 15 | 16 | def privmsg(m) 17 | unless m.params =~ /^(\w|-|\.)+$/ 18 | m.reply "incorrect usage: #{help(m.plugin)}" 19 | return 20 | end 21 | m.reply Utils.safe_exec(host_path, m.params) 22 | end 23 | end 24 | plugin = HostPlugin.new 25 | plugin.register('host') 26 | -------------------------------------------------------------------------------- /data/rbot/plugins/httpd.rb.disabled: -------------------------------------------------------------------------------- 1 | require 'webrick' 2 | 3 | class HttpPlugin < Plugin 4 | include WEBrick 5 | 6 | 7 | def initialize 8 | super 9 | @http_server = HTTPServer.new( 10 | :Port => 5555 11 | ) 12 | @http_server.mount_proc("/") { |req, resp| 13 | resp['content-type'] = 'text/html' 14 | resp.body = "rbot httpd plugin" 15 | resp.body += "#{@bot.status}
" 16 | resp.body += "hello from rbot." 17 | resp.body += "" 18 | raise HTTPStatus::OK 19 | } 20 | Thread.new { 21 | @http_server.start 22 | } 23 | end 24 | def cleanup 25 | @http_server.shutdown 26 | super 27 | end 28 | def help(plugin, topic = '') 29 | "no help yet" 30 | end 31 | def privmsg(m) 32 | end 33 | end 34 | 35 | plugin = HttpPlugin.new 36 | plugin.register("http") 37 | -------------------------------------------------------------------------------- /data/rbot/plugins/lart/larts-japanese: -------------------------------------------------------------------------------- 1 | のパソコンにWindowsをインスタールする 2 | に3週間Perlを使わせる 3 | を叩き付ける 4 | の手を剥して、その手でに打つ 5 | Ebayでを売る 6 | のコーヒーに灰汁を入れる 7 | をはらきりさせる 8 | を刺身に作る 9 | に心臓麻痺させる 10 | の名前をデスノートに書く 11 | -------------------------------------------------------------------------------- /data/rbot/plugins/lart/praises-english: -------------------------------------------------------------------------------- 1 | hugs 2 | gives some love 3 | gives a cookie 4 | slaps heartily on the back 5 | tickles 6 | -------------------------------------------------------------------------------- /data/rbot/plugins/lart/praises-italian: -------------------------------------------------------------------------------- 1 | abbraccia 2 | adora 3 | invita ad una cena luculliana 4 | da' un'amichevole pacca sulle spalle a 5 | -------------------------------------------------------------------------------- /data/rbot/plugins/lart/praises-japanese: -------------------------------------------------------------------------------- 1 | とチュウする 2 | にクキーあげる 3 | ダイスキ! 4 | -------------------------------------------------------------------------------- /data/rbot/plugins/plugin.header: -------------------------------------------------------------------------------- 1 | #-- vim:sw=2:et 2 | #++ 3 | # 4 | # :title: Plugin title 5 | # 6 | # Author:: Your Name Goes Here 7 | # Copyright:: (C) YYYY Your Name 8 | # License:: plugin licence 9 | # 10 | # More documentation, if needed/wanted 11 | 12 | -------------------------------------------------------------------------------- /data/rbot/plugins/rot13.rb: -------------------------------------------------------------------------------- 1 | #-- vim:sw=2:et 2 | #++ 3 | # 4 | # :title: ROT13 plugin 5 | # 6 | class RotPlugin < Plugin 7 | def initialize 8 | super 9 | @bot.register_filter(:rot13) do |s| 10 | ss = s.dup 11 | ss[:text] = s[:text].tr('A-Za-z', 'N-ZA-Mn-za-m') 12 | ss 13 | end 14 | end 15 | 16 | def help(plugin, topic = '') 17 | 'rot13 => encode to rot13 or back' 18 | end 19 | 20 | def rot13(m, params) 21 | m.reply @bot.filter(:rot13, params[:string].to_s).to_s 22 | end 23 | end 24 | plugin = RotPlugin.new 25 | plugin.map 'rot13 *string' 26 | -------------------------------------------------------------------------------- /data/rbot/plugins/salut/salut-english: -------------------------------------------------------------------------------- 1 | --- 2 | :"generic-in": 3 | - hello 4 | - howdy 5 | - hola 6 | - salut 7 | - sup 8 | - re 9 | - hey 10 | - hi 11 | - yo 12 | :"morning-in": 13 | - good morning 14 | - goodmorning 15 | - morning 16 | - "'morning" 17 | :"afternoon-in": 18 | - good afternoon 19 | - goodafternoon 20 | - afternoon 21 | - "'afternoon" 22 | :"generic-out": 23 | - bye 24 | - cya 25 | - see you 26 | - see ya 27 | - g'bye 28 | - goodbye 29 | - later 30 | :"evening-in": 31 | - good evening 32 | - goodevening 33 | - evening 34 | - "'evening" 35 | :"generic-dest": 36 | - all 37 | - people 38 | - everybody 39 | - y'all 40 | - bots 41 | -------------------------------------------------------------------------------- /data/rbot/plugins/salut/salut-french: -------------------------------------------------------------------------------- 1 | --- 2 | :"generic-in": 3 | - "'lo" 4 | - "'lu" 5 | - plop 6 | - "'jour" 7 | - bonjour 8 | :"morning-in": 9 | - "'jour" 10 | :"afternoon-in": 11 | - bonne journée 12 | - bonne journee 13 | - "'journée" 14 | - "'journee" 15 | :"generic-out": 16 | - bye 17 | - cya 18 | - see you 19 | - a plus tard 20 | - a plus 21 | - "'nuit" 22 | - nenuit 23 | :"evening-in": 24 | - "'soir" 25 | - bonsoir 26 | - "'nuit" 27 | :"generic-dest": 28 | - tous 29 | - all 30 | -------------------------------------------------------------------------------- /data/rbot/plugins/salut/salut-italian: -------------------------------------------------------------------------------- 1 | --- 2 | :"generic-in": 3 | - salve 4 | - "ehila'" 5 | - ehilà 6 | - ola' 7 | - olà 8 | - yo 9 | - "ue'" 10 | - uè 11 | :"morning-in": 12 | - "'giorno" 13 | - giorno 14 | - buon giorno 15 | - "buon di'" 16 | - buon dì 17 | - buondì 18 | - buongiorno 19 | :"afternoon-in": 20 | - "'sera" 21 | - buona sera 22 | - buonasera 23 | :"evening-in": 24 | - "'sera" 25 | - buona sera 26 | - buonasera 27 | :"generic-out": 28 | - a dopo 29 | - ci vediamo 30 | - adios 31 | - se vedemio 32 | - arrivederci 33 | - saluti 34 | :"morning-out": 35 | - buona giornata 36 | :"evening-out": 37 | - buona serata 38 | - buona notte 39 | - buonanotte 40 | :"generic": 41 | - ciao 42 | :"generic-dest": 43 | - gente 44 | - tutti 45 | - raga 46 | - "raga'" 47 | - ragà 48 | - ragazzi 49 | - ragazze 50 | - bot 51 | - bots 52 | -------------------------------------------------------------------------------- /data/rbot/plugins/salut/salut-japanese: -------------------------------------------------------------------------------- 1 | --- 2 | :"generic-in": 3 | - ハロー 4 | - こんにちは 5 | - こんにちわ 6 | - やあ 7 | :"morning-in": 8 | - おはよう 9 | - おはようございます 10 | - こんにちは 11 | :"afternoon-in": 12 | - こんにちは 13 | - こんにちわ 14 | :"generic-out": 15 | - じゃあな 16 | - またね 17 | - さようなら 18 | - バイバイ 19 | - 失礼します 20 | - しつれい 21 | :"evening-in": 22 | - こんばんは 23 | - こんばんわ 24 | - 今晩は 25 | :"generic-dest": 26 | - みんな 27 | - 諸君 28 | - みなさん 29 | - 皆さん 30 | - 皆 31 | - 皆様 32 | -------------------------------------------------------------------------------- /data/rbot/plugins/usermodes.rb: -------------------------------------------------------------------------------- 1 | #-- vim:sw=2:et 2 | #++ 3 | # 4 | # :title: Usermodes plugin 5 | # 6 | # Author:: Giuseppe "Oblomov" Bilotta 7 | # Copyright:: (C) 2007 Giuseppe Bilotta 8 | # License:: rbot's licence 9 | # 10 | 11 | class UserModesPlugin < Plugin 12 | Config.register Config::StringValue.new( 13 | 'irc.usermodes', 14 | :default => '', 15 | :desc => 'User modes to set when connecting to the server' 16 | ) 17 | 18 | def help(plugin, topic = '') 19 | 'handles automatic usermode settings on connect. See the config variable irc.usermodes' 20 | end 21 | 22 | def connect 23 | modes = @bot.config['irc.usermodes'] 24 | @bot.mode(@bot.nick, modes, '') unless modes.empty? 25 | end 26 | end 27 | 28 | plugin = UserModesPlugin.new 29 | -------------------------------------------------------------------------------- /data/rbot/templates/keywords.rbot: -------------------------------------------------------------------------------- 1 | lb<=is=>http://linuxbrit.co.uk 2 | offended<=is=> is offended! 3 | giblet<=is=>daddy! 4 | rbot<=is=>That's me! :-)) 5 | -------------------------------------------------------------------------------- /data/rbot/templates/quiz/win_messages: -------------------------------------------------------------------------------- 1 | BINGO!! got it right. The answer was: 2 | OMG!! PONIES!! is the cutest. The answer was: 3 | HUZZAAAH! did it again. The answer was: 4 | YEEEHA! Cowboy scored again. The answer was: 5 | STRIKE! pwned you all. The answer was: 6 | YAY :)) is totally invited to my next sleepover. The answer was: 7 | And the crowd GOES WILD for . The answer was: 8 | GOOOAAALLLL! That was one fine strike by . The answer was: 9 | HOO-RAY, deserves a medal! Only could have known the answer: 10 | OKAY, is officially a spermatologist! Answer was: 11 | WOOO, I bet that knows where the word 'trivia' comes from too! Answer was: 12 | -------------------------------------------------------------------------------- /lib/rbot/core/wordlist_ui.rb: -------------------------------------------------------------------------------- 1 | #-- vim:sw=2:et 2 | #++ 3 | # 4 | # :title: wordlist management from IRC 5 | # 6 | # Author:: Giuseppe "Oblomov" Bilotta 7 | 8 | class WordlistModule < CoreBotModule 9 | def help(plugin, topic = '') 10 | _("wordlist list [] => list wordlists (matching )") 11 | end 12 | 13 | def do_list(m, p) 14 | found = Wordlist.list(@bot, p) 15 | if found.empty? 16 | m.reply _("no wordlists found in %{path}") % { 17 | path: @bot.path('wordlists') 18 | } 19 | else 20 | m.reply _("Wordlists: %{found}") % { 21 | found: found.sort.join(', ') 22 | } 23 | end 24 | end 25 | end 26 | 27 | plugin = WordlistModule.new 28 | 29 | plugin.map "wordlist list [:pattern]", :action => :do_list 30 | -------------------------------------------------------------------------------- /lib/rbot/post-clean.rb: -------------------------------------------------------------------------------- 1 | File.unlink("pkgconfig.rb") if FileTest.exist?("pkgconfig.rb") 2 | -------------------------------------------------------------------------------- /lib/rbot/post-config.rb: -------------------------------------------------------------------------------- 1 | # write out our datadir so we can reference it at runtime 2 | File.open("pkgconfig.rb", "w") {|f| 3 | f.puts "module Irc" 4 | f.puts " module PKGConfig" 5 | f.puts " DATADIR = '#{config('datadir')}/rbot'" 6 | f.puts " COREDIR = '#{config('rbdir')}/rbot/core'" 7 | f.puts " end" 8 | f.puts "end" 9 | } 10 | -------------------------------------------------------------------------------- /lib/rbot/registry/daybreak.rb: -------------------------------------------------------------------------------- 1 | #-- vim:sw=2:et 2 | #++ 3 | # 4 | # :title: Daybreak registry implementation 5 | # 6 | # Daybreak is a fast in-memory(!!!) database: 7 | # http://propublica.github.io/daybreak/ 8 | # 9 | 10 | require 'daybreak' 11 | 12 | module Irc 13 | class Bot 14 | class Registry 15 | 16 | class DaybreakAccessor < AbstractAccessor 17 | 18 | def initialize(filename) 19 | super filename + '.db' 20 | end 21 | 22 | def registry 23 | super 24 | @registry ||= Daybreak::DB.new(@filename) 25 | end 26 | 27 | def flush 28 | return unless @registry 29 | @registry.flush 30 | end 31 | 32 | def optimize 33 | return unless @registry 34 | @registry.compact 35 | end 36 | 37 | end 38 | 39 | end # Registry 40 | end # Bot 41 | end # Irc 42 | 43 | -------------------------------------------------------------------------------- /lib/rbot/registry/dbm.rb: -------------------------------------------------------------------------------- 1 | #-- vim:sw=2:et 2 | #++ 3 | # 4 | # :title: DBM registry implementation 5 | # 6 | # DBM is the ruby standard library wrapper module for Unix-style 7 | # dbm libraries. The specific library used depends 8 | # on how ruby was compiled. Its any of the following: ndbm, bdb, 9 | # gdbm or qdbm. 10 | # http://ruby-doc.org/stdlib-2.1.0/libdoc/dbm/rdoc/DBM.html 11 | # 12 | 13 | require 'dbm' 14 | 15 | module Irc 16 | class Bot 17 | class Registry 18 | 19 | class DBMAccessor < AbstractAccessor 20 | 21 | def registry 22 | super 23 | @registry ||= DBM.open(@filename, 0666, DBM::WRCREAT) 24 | end 25 | 26 | def dbexists? 27 | not Dir.glob(@filename + '.*').empty? 28 | end 29 | 30 | end 31 | 32 | end # Registry 33 | end # Bot 34 | end # Irc 35 | 36 | -------------------------------------------------------------------------------- /lib/rbot/registry/mem.rb: -------------------------------------------------------------------------------- 1 | #-- vim:sw=2:et 2 | #++ 3 | # 4 | # :title: Memory registry implementation 5 | # 6 | # This is using a in-memory hash, does not persist, used for 7 | # tests, etc. 8 | # 9 | 10 | module Irc 11 | class Bot 12 | class Registry 13 | 14 | class MemAccessor < AbstractAccessor 15 | 16 | def initialize(filename) 17 | super(filename) 18 | @data = {} 19 | end 20 | 21 | def registry 22 | super 23 | @registry = @data 24 | end 25 | 26 | def close 27 | end 28 | 29 | def flush 30 | end 31 | 32 | def dbexists? 33 | true # the memory database always exists, this way it won't create any folders on the file system 34 | end 35 | 36 | end 37 | 38 | end # Registry 39 | end # Bot 40 | end # Irc 41 | 42 | -------------------------------------------------------------------------------- /msgmerge-wrapper.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | # This is a wrapper to msgmerge, it executes msgmerge with the given arguments, and 3 | # if msgmerge output is empty, prints the content of the file named the first 4 | # argument. otherwise it prints the output of msgmerge. The wrapper should be 5 | # "compatible" with the real msgmerge if msgmerge output is non-empty, or if the 6 | # first argument is the defpo file (instead of an option, or --) 7 | # 8 | # The path to msgmerge can be specified in env variable REAL_MSGMERGE_PATH 9 | # 10 | # The purpose is to provide a workaround for ruby-gettext, which treats empty output 11 | # from msgmerge as error in the po file, where it should mean that no modification 12 | # is needed to the defpo. For updates on the issue follow 13 | # http://rubyforge.org/pipermail/gettext-users-en/2008-June/000094.html 14 | 15 | 16 | msgmerge = ENV['REAL_MSGMERGE_PATH'] || 'msgmerge' 17 | defpo = ARGV.shift 18 | output = `#{msgmerge} #{defpo} #{ARGV.join ' '}` 19 | output = File.read(defpo) if output.empty? 20 | STDOUT.write output 21 | 22 | -------------------------------------------------------------------------------- /po/en/rbot-autoop.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autoop.rb:79 2 | msgid "Either specify a channel to seed, or ask in public" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/autoop.rb:100 6 | msgid "Nobody to add" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/autoop.rb:157 10 | msgid "Either specify a channel to restore, or ask in public" 11 | msgstr "" 12 | -------------------------------------------------------------------------------- /po/en/rbot-autorejoin.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autorejoin.rb:60 2 | msgid "for kicking me out earlier" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/en/rbot-bans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-bans.po -------------------------------------------------------------------------------- /po/en/rbot-bash.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/bash.rb:71 2 | msgid "bash => print a random quote from bash.org" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/bash.rb:72 6 | msgid "bash quote_id => print that quote id from bash.org" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/bash.rb:73 10 | msgid "bash search => print the first bash.org quote matching " 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/bash.rb:74 14 | msgid "bash latest => print the latest quote from bash.org" 15 | msgstr "" 16 | -------------------------------------------------------------------------------- /po/en/rbot-botsnack.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-botsnack.po -------------------------------------------------------------------------------- /po/en/rbot-cal.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/cal.rb:4 2 | msgid "Path to the cal program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/en/rbot-chanserv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-chanserv.po -------------------------------------------------------------------------------- /po/en/rbot-chucknorris.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-chucknorris.po -------------------------------------------------------------------------------- /po/en/rbot-debugger.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-debugger.po -------------------------------------------------------------------------------- /po/en/rbot-deepthoughts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-deepthoughts.po -------------------------------------------------------------------------------- /po/en/rbot-delicious.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-delicious.po -------------------------------------------------------------------------------- /po/en/rbot-dice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-dice.po -------------------------------------------------------------------------------- /po/en/rbot-dict.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-dict.po -------------------------------------------------------------------------------- /po/en/rbot-digg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-digg.po -------------------------------------------------------------------------------- /po/en/rbot-eightball.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-eightball.po -------------------------------------------------------------------------------- /po/en/rbot-excuse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-excuse.po -------------------------------------------------------------------------------- /po/en/rbot-fish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-fish.po -------------------------------------------------------------------------------- /po/en/rbot-forecast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-forecast.po -------------------------------------------------------------------------------- /po/en/rbot-fortune.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-fortune.po -------------------------------------------------------------------------------- /po/en/rbot-freshmeat.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/freshmeat.rb:23 2 | msgid "" 3 | "you must set the configuration value freshmeat.api_token to a valid " 4 | "freshmeat auth token, otherwise I cannot make requests to the site" 5 | msgstr "" 6 | 7 | #: data/rbot/plugins/freshmeat.rb:122 8 | msgid "retrieving freshmeat news from the RSS" 9 | msgstr "" 10 | 11 | #: data/rbot/plugins/freshmeat.rb:126 12 | msgid " because no API token is configured" 13 | msgstr "" 14 | 15 | #: data/rbot/plugins/freshmeat.rb:128 16 | msgid " because the configured API token is wrong" 17 | msgstr "" 18 | 19 | #: data/rbot/plugins/freshmeat.rb:136 20 | msgid "couldn't retrieve freshmeat news feed" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/freshmeat.rb:222 24 | msgid "no news in freshmeat!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/en/rbot-geoip.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/geoip.rb:194 2 | msgid "%{nick}'s location could not be resolved" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/geoip.rb:196 6 | msgid "%{host} could not be resolved" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/geoip.rb:199 10 | msgid "The owner configured me to use an API that doesn't exist, bug them!" 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/geoip.rb:208 14 | msgid "%{nick} is from %{location}" 15 | msgstr "" 16 | 17 | #: data/rbot/plugins/geoip.rb:210 18 | msgid "%{host} is located in %{location}" 19 | msgstr "" 20 | -------------------------------------------------------------------------------- /po/en/rbot-googlefight.po: -------------------------------------------------------------------------------- 1 | # English translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-01 23:50+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/googlefight.rb:36 20 | msgid " -- %{keyword} wins!" 21 | msgstr " -- %{keyword} wins!" 22 | 23 | #: data/rbot/plugins/googlefight.rb:40 24 | msgid " -- no winner here!" 25 | msgstr " -- no winner here!" 26 | -------------------------------------------------------------------------------- /po/en/rbot-grouphug.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/grouphug.rb:23 2 | msgid "" 3 | "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess " 4 | "' for specific one, 'confess ' to share your own " 5 | "confession. Confessions must be at least 10 words." 6 | msgstr "" 7 | 8 | #: data/rbot/plugins/grouphug.rb:30 9 | msgid "Confession must be at least 10 words. You need %{m} more." 10 | msgstr "" 11 | 12 | #: data/rbot/plugins/grouphug.rb:44 13 | msgid "Confession posted: http://beta.grouphug.us/confessions/%{n}" 14 | msgstr "" 15 | 16 | #: data/rbot/plugins/grouphug.rb:46 17 | msgid "I couldn't share your confession." 18 | msgstr "" 19 | -------------------------------------------------------------------------------- /po/en/rbot-hl2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-hl2.po -------------------------------------------------------------------------------- /po/en/rbot-host.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/host.rb:4 2 | msgid "Path to the host program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/en/rbot-imdb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-imdb.po -------------------------------------------------------------------------------- /po/en/rbot-insult.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-insult.po -------------------------------------------------------------------------------- /po/en/rbot-iplookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-iplookup.po -------------------------------------------------------------------------------- /po/en/rbot-keywords.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Yaohan Chen , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2007-07-14 00:06-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: English\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/keywords.rb:461 20 | msgid "couldn't find keyword %{key}" 21 | msgstr "couldn't find botuser %{name}" 22 | 23 | #: data/rbot/plugins/keywords.rb:510 24 | msgid "failed to export keywords as factoids (%{err})" 25 | msgstr "failed to export users: %{exception}" 26 | -------------------------------------------------------------------------------- /po/en/rbot-lart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-lart.po -------------------------------------------------------------------------------- /po/en/rbot-lib_spotify.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-lib_spotify.po -------------------------------------------------------------------------------- /po/en/rbot-linkbot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-linkbot.po -------------------------------------------------------------------------------- /po/en/rbot-math.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-math.po -------------------------------------------------------------------------------- /po/en/rbot-modes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-modes.po -------------------------------------------------------------------------------- /po/en/rbot-note.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-note.po -------------------------------------------------------------------------------- /po/en/rbot-nslookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-nslookup.po -------------------------------------------------------------------------------- /po/en/rbot-points.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-points.po -------------------------------------------------------------------------------- /po/en/rbot-quakeauth.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-quakeauth.po -------------------------------------------------------------------------------- /po/en/rbot-reaction.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/reaction.rb:341 2 | msgid "Sorry, you're not allowed to change %{act} replies here" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/reaction.rb:349 6 | msgid "Sorry, you're not allowed to add %{act} replies here" 7 | msgstr "" 8 | -------------------------------------------------------------------------------- /po/en/rbot-remind.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-remind.po -------------------------------------------------------------------------------- /po/en/rbot-remotectl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-remotectl.po -------------------------------------------------------------------------------- /po/en/rbot-ri.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-ri.po -------------------------------------------------------------------------------- /po/en/rbot-roshambo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-roshambo.po -------------------------------------------------------------------------------- /po/en/rbot-rot13.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-rot13.po -------------------------------------------------------------------------------- /po/en/rbot-roulette.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-roulette.po -------------------------------------------------------------------------------- /po/en/rbot-rss.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Yaohan Chen , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2007-07-14 00:06-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: English\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/rss.rb:811 20 | msgid "You want me to rename %{handle} to itself?" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/rss.rb:932 24 | msgid "no such feed %{handle}" 25 | msgstr "no such module %{module}" 26 | 27 | #: data/rbot/plugins/rss.rb:1033 28 | msgid "feed %{feed} had %{num} updates, showing the latest %{max}" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/en/rbot-salut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-salut.po -------------------------------------------------------------------------------- /po/en/rbot-script.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/script.rb:91 2 | msgid "%{stuff} is not a script I know of" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/en/rbot-search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-search.po -------------------------------------------------------------------------------- /po/en/rbot-sed.po: -------------------------------------------------------------------------------- 1 | # English translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-07-02 00:17+0200\n" 10 | "PO-Revision-Date: 2010-07-02 00:17+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/sed.rb:47 20 | msgid "meant" 21 | msgstr "meant" 22 | 23 | #: data/rbot/plugins/sed.rb:49 24 | msgid "You did something wrong... Try s/you/me/ or tell me \"help sed\"" 25 | msgstr "You did something wrong... Try s/you/me/ or tell me \"help sed\"" 26 | -------------------------------------------------------------------------------- /po/en/rbot-shortenurls.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-shortenurls.po -------------------------------------------------------------------------------- /po/en/rbot-slashdot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-slashdot.po -------------------------------------------------------------------------------- /po/en/rbot-theyfightcrime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-theyfightcrime.po -------------------------------------------------------------------------------- /po/en/rbot-threat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-threat.po -------------------------------------------------------------------------------- /po/en/rbot-topic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-topic.po -------------------------------------------------------------------------------- /po/en/rbot-tube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-tube.po -------------------------------------------------------------------------------- /po/en/rbot-twitter.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Yaohan Chen , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2007-07-14 00:06-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: English\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/twitter.rb:200 20 | msgid "" 21 | "My authorization failed! Did you block me? Or is my Twitter Consumer Key/" 22 | "Secret pair incorrect?" 23 | msgstr "" 24 | 25 | #: data/rbot/plugins/twitter.rb:283 26 | msgid "actions will be twitted" 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/twitter.rb:285 30 | msgid "actions will not be twitted" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/en/rbot-urban.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-urban.po -------------------------------------------------------------------------------- /po/en/rbot-url.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-url.po -------------------------------------------------------------------------------- /po/en/rbot-usermodes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-usermodes.po -------------------------------------------------------------------------------- /po/en/rbot-wow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-wow.po -------------------------------------------------------------------------------- /po/en/rbot-wserver.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/en/rbot-wserver.po -------------------------------------------------------------------------------- /po/fi/rbot-autoop.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autoop.rb:79 2 | msgid "Either specify a channel to seed, or ask in public" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/autoop.rb:100 6 | msgid "Nobody to add" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/autoop.rb:157 10 | msgid "Either specify a channel to restore, or ask in public" 11 | msgstr "" 12 | -------------------------------------------------------------------------------- /po/fi/rbot-autorejoin.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/autorejoin.rb:60 20 | msgid "for kicking me out earlier" 21 | msgstr "" 22 | -------------------------------------------------------------------------------- /po/fi/rbot-bans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-bans.po -------------------------------------------------------------------------------- /po/fi/rbot-botsnack.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-botsnack.po -------------------------------------------------------------------------------- /po/fi/rbot-cal.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/cal.rb:4 20 | msgid "Path to the cal program" 21 | msgstr "" 22 | -------------------------------------------------------------------------------- /po/fi/rbot-chanserv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-chanserv.po -------------------------------------------------------------------------------- /po/fi/rbot-chucknorris.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-chucknorris.po -------------------------------------------------------------------------------- /po/fi/rbot-debugger.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-debugger.po -------------------------------------------------------------------------------- /po/fi/rbot-deepthoughts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-deepthoughts.po -------------------------------------------------------------------------------- /po/fi/rbot-delicious.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-delicious.po -------------------------------------------------------------------------------- /po/fi/rbot-dice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-dice.po -------------------------------------------------------------------------------- /po/fi/rbot-dict.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-dict.po -------------------------------------------------------------------------------- /po/fi/rbot-digg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-digg.po -------------------------------------------------------------------------------- /po/fi/rbot-eightball.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-eightball.po -------------------------------------------------------------------------------- /po/fi/rbot-excuse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-excuse.po -------------------------------------------------------------------------------- /po/fi/rbot-fish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-fish.po -------------------------------------------------------------------------------- /po/fi/rbot-forecast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-forecast.po -------------------------------------------------------------------------------- /po/fi/rbot-fortune.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-fortune.po -------------------------------------------------------------------------------- /po/fi/rbot-freshmeat.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/freshmeat.rb:23 2 | msgid "" 3 | "you must set the configuration value freshmeat.api_token to a valid " 4 | "freshmeat auth token, otherwise I cannot make requests to the site" 5 | msgstr "" 6 | 7 | #: data/rbot/plugins/freshmeat.rb:122 8 | msgid "retrieving freshmeat news from the RSS" 9 | msgstr "" 10 | 11 | #: data/rbot/plugins/freshmeat.rb:126 12 | msgid " because no API token is configured" 13 | msgstr "" 14 | 15 | #: data/rbot/plugins/freshmeat.rb:128 16 | msgid " because the configured API token is wrong" 17 | msgstr "" 18 | 19 | #: data/rbot/plugins/freshmeat.rb:136 20 | msgid "couldn't retrieve freshmeat news feed" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/freshmeat.rb:222 24 | msgid "no news in freshmeat!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/fi/rbot-geoip.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/geoip.rb:194 2 | msgid "%{nick}'s location could not be resolved" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/geoip.rb:196 6 | msgid "%{host} could not be resolved" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/geoip.rb:199 10 | msgid "The owner configured me to use an API that doesn't exist, bug them!" 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/geoip.rb:208 14 | msgid "%{nick} is from %{location}" 15 | msgstr "" 16 | 17 | #: data/rbot/plugins/geoip.rb:210 18 | msgid "%{host} is located in %{location}" 19 | msgstr "" 20 | -------------------------------------------------------------------------------- /po/fi/rbot-googlefight.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/googlefight.rb:36 20 | msgid " -- %{keyword} wins!" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/googlefight.rb:40 24 | msgid " -- no winner here!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/fi/rbot-greet.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-06-30 09:58+0200\n" 10 | "PO-Revision-Date: 2010-06-30 09:58+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/greet.rb:14 20 | msgid "Greet people on these channels." 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/greet.rb:18 24 | msgid "" 25 | "By default, greetings are fetched from lang files. You can use this to " 26 | "specify custom messages, use %s to represent a nick." 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/greet.rb:22 30 | msgid "Greet with delay so that the greeting seems human-like." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/fi/rbot-hl2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-hl2.po -------------------------------------------------------------------------------- /po/fi/rbot-host.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/host.rb:4 20 | msgid "Path to the host program" 21 | msgstr "" 22 | -------------------------------------------------------------------------------- /po/fi/rbot-imdb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-imdb.po -------------------------------------------------------------------------------- /po/fi/rbot-insult.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-insult.po -------------------------------------------------------------------------------- /po/fi/rbot-iplookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-iplookup.po -------------------------------------------------------------------------------- /po/fi/rbot-keywords.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/keywords.rb:461 20 | msgid "couldn't find keyword %{key}" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/keywords.rb:510 24 | msgid "failed to export keywords as factoids (%{err})" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/fi/rbot-lart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-lart.po -------------------------------------------------------------------------------- /po/fi/rbot-lib_spotify.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-lib_spotify.po -------------------------------------------------------------------------------- /po/fi/rbot-linkbot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-linkbot.po -------------------------------------------------------------------------------- /po/fi/rbot-math.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-math.po -------------------------------------------------------------------------------- /po/fi/rbot-modes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-modes.po -------------------------------------------------------------------------------- /po/fi/rbot-note.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-note.po -------------------------------------------------------------------------------- /po/fi/rbot-nslookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-nslookup.po -------------------------------------------------------------------------------- /po/fi/rbot-points.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-points.po -------------------------------------------------------------------------------- /po/fi/rbot-quakeauth.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-quakeauth.po -------------------------------------------------------------------------------- /po/fi/rbot-reaction.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/reaction.rb:341 2 | msgid "Sorry, you're not allowed to change %{act} replies here" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/reaction.rb:349 6 | msgid "Sorry, you're not allowed to add %{act} replies here" 7 | msgstr "" 8 | -------------------------------------------------------------------------------- /po/fi/rbot-remind.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-remind.po -------------------------------------------------------------------------------- /po/fi/rbot-remotectl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-remotectl.po -------------------------------------------------------------------------------- /po/fi/rbot-ri.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-ri.po -------------------------------------------------------------------------------- /po/fi/rbot-roshambo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-roshambo.po -------------------------------------------------------------------------------- /po/fi/rbot-rot13.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-rot13.po -------------------------------------------------------------------------------- /po/fi/rbot-roulette.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-roulette.po -------------------------------------------------------------------------------- /po/fi/rbot-rss.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/rss.rb:811 20 | msgid "You want me to rename %{handle} to itself?" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/rss.rb:932 24 | msgid "no such feed %{handle}" 25 | msgstr "" 26 | 27 | #: data/rbot/plugins/rss.rb:1033 28 | msgid "feed %{feed} had %{num} updates, showing the latest %{max}" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/fi/rbot-salut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-salut.po -------------------------------------------------------------------------------- /po/fi/rbot-script.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/script.rb:91 20 | msgid "%{stuff} is not a script I know of" 21 | msgstr "" 22 | -------------------------------------------------------------------------------- /po/fi/rbot-search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-search.po -------------------------------------------------------------------------------- /po/fi/rbot-sed.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-07-02 00:17+0200\n" 10 | "PO-Revision-Date: 2010-07-02 00:17+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/sed.rb:47 20 | msgid "meant" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/sed.rb:49 24 | msgid "You did something wrong... Try s/you/me/ or tell me \"help sed\"" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/fi/rbot-shortenurls.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-shortenurls.po -------------------------------------------------------------------------------- /po/fi/rbot-slashdot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-slashdot.po -------------------------------------------------------------------------------- /po/fi/rbot-theyfightcrime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-theyfightcrime.po -------------------------------------------------------------------------------- /po/fi/rbot-threat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-threat.po -------------------------------------------------------------------------------- /po/fi/rbot-topic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-topic.po -------------------------------------------------------------------------------- /po/fi/rbot-tube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-tube.po -------------------------------------------------------------------------------- /po/fi/rbot-twitter.po: -------------------------------------------------------------------------------- 1 | # Finnish translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/twitter.rb:200 20 | msgid "" 21 | "My authorization failed! Did you block me? Or is my Twitter Consumer Key/" 22 | "Secret pair incorrect?" 23 | msgstr "" 24 | 25 | #: data/rbot/plugins/twitter.rb:283 26 | msgid "actions will be twitted" 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/twitter.rb:285 30 | msgid "actions will not be twitted" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/fi/rbot-urban.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-urban.po -------------------------------------------------------------------------------- /po/fi/rbot-url.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-url.po -------------------------------------------------------------------------------- /po/fi/rbot-usermodes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-usermodes.po -------------------------------------------------------------------------------- /po/fi/rbot-wow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-wow.po -------------------------------------------------------------------------------- /po/fi/rbot-wserver.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fi/rbot-wserver.po -------------------------------------------------------------------------------- /po/fr/rbot-autoop.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autoop.rb:79 2 | msgid "Either specify a channel to seed, or ask in public" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/autoop.rb:100 6 | msgid "Nobody to add" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/autoop.rb:157 10 | msgid "Either specify a channel to restore, or ask in public" 11 | msgstr "" 12 | -------------------------------------------------------------------------------- /po/fr/rbot-autorejoin.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autorejoin.rb:60 2 | msgid "for kicking me out earlier" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/fr/rbot-bans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-bans.po -------------------------------------------------------------------------------- /po/fr/rbot-bash.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/bash.rb:71 2 | msgid "bash => print a random quote from bash.org" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/bash.rb:72 6 | msgid "bash quote_id => print that quote id from bash.org" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/bash.rb:73 10 | msgid "bash search => print the first bash.org quote matching " 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/bash.rb:74 14 | msgid "bash latest => print the latest quote from bash.org" 15 | msgstr "" 16 | -------------------------------------------------------------------------------- /po/fr/rbot-botsnack.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-botsnack.po -------------------------------------------------------------------------------- /po/fr/rbot-cal.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/cal.rb:4 2 | msgid "Path to the cal program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/fr/rbot-chanserv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-chanserv.po -------------------------------------------------------------------------------- /po/fr/rbot-chucknorris.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-chucknorris.po -------------------------------------------------------------------------------- /po/fr/rbot-debugger.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-debugger.po -------------------------------------------------------------------------------- /po/fr/rbot-deepthoughts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-deepthoughts.po -------------------------------------------------------------------------------- /po/fr/rbot-delicious.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-delicious.po -------------------------------------------------------------------------------- /po/fr/rbot-dice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-dice.po -------------------------------------------------------------------------------- /po/fr/rbot-dict.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-dict.po -------------------------------------------------------------------------------- /po/fr/rbot-digg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-digg.po -------------------------------------------------------------------------------- /po/fr/rbot-eightball.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-eightball.po -------------------------------------------------------------------------------- /po/fr/rbot-excuse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-excuse.po -------------------------------------------------------------------------------- /po/fr/rbot-fish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-fish.po -------------------------------------------------------------------------------- /po/fr/rbot-forecast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-forecast.po -------------------------------------------------------------------------------- /po/fr/rbot-fortune.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-fortune.po -------------------------------------------------------------------------------- /po/fr/rbot-freshmeat.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/freshmeat.rb:23 2 | msgid "" 3 | "you must set the configuration value freshmeat.api_token to a valid " 4 | "freshmeat auth token, otherwise I cannot make requests to the site" 5 | msgstr "" 6 | 7 | #: data/rbot/plugins/freshmeat.rb:122 8 | msgid "retrieving freshmeat news from the RSS" 9 | msgstr "" 10 | 11 | #: data/rbot/plugins/freshmeat.rb:126 12 | msgid " because no API token is configured" 13 | msgstr "" 14 | 15 | #: data/rbot/plugins/freshmeat.rb:128 16 | msgid " because the configured API token is wrong" 17 | msgstr "" 18 | 19 | #: data/rbot/plugins/freshmeat.rb:136 20 | msgid "couldn't retrieve freshmeat news feed" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/freshmeat.rb:222 24 | msgid "no news in freshmeat!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/fr/rbot-geoip.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/geoip.rb:194 2 | msgid "%{nick}'s location could not be resolved" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/geoip.rb:196 6 | msgid "%{host} could not be resolved" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/geoip.rb:199 10 | msgid "The owner configured me to use an API that doesn't exist, bug them!" 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/geoip.rb:208 14 | msgid "%{nick} is from %{location}" 15 | msgstr "" 16 | 17 | #: data/rbot/plugins/geoip.rb:210 18 | msgid "%{host} is located in %{location}" 19 | msgstr "" 20 | -------------------------------------------------------------------------------- /po/fr/rbot-googlefight.po: -------------------------------------------------------------------------------- 1 | # French translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-01 23:50+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | 19 | #: data/rbot/plugins/googlefight.rb:36 20 | msgid " -- %{keyword} wins!" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/googlefight.rb:40 24 | msgid " -- no winner here!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/fr/rbot-greet.po: -------------------------------------------------------------------------------- 1 | # French translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-06-30 09:58+0200\n" 10 | "PO-Revision-Date: 2010-06-30 09:58+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | 19 | #: data/rbot/plugins/greet.rb:14 20 | msgid "Greet people on these channels." 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/greet.rb:18 24 | msgid "" 25 | "By default, greetings are fetched from lang files. You can use this to " 26 | "specify custom messages, use %s to represent a nick." 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/greet.rb:22 30 | msgid "Greet with delay so that the greeting seems human-like." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/fr/rbot-grouphug.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/grouphug.rb:23 2 | msgid "" 3 | "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess " 4 | "' for specific one, 'confess ' to share your own " 5 | "confession. Confessions must be at least 10 words." 6 | msgstr "" 7 | 8 | #: data/rbot/plugins/grouphug.rb:30 9 | msgid "Confession must be at least 10 words. You need %{m} more." 10 | msgstr "" 11 | 12 | #: data/rbot/plugins/grouphug.rb:44 13 | msgid "Confession posted: http://beta.grouphug.us/confessions/%{n}" 14 | msgstr "" 15 | 16 | #: data/rbot/plugins/grouphug.rb:46 17 | msgid "I couldn't share your confession." 18 | msgstr "" 19 | -------------------------------------------------------------------------------- /po/fr/rbot-hl2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-hl2.po -------------------------------------------------------------------------------- /po/fr/rbot-host.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/host.rb:4 2 | msgid "Path to the host program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/fr/rbot-imdb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-imdb.po -------------------------------------------------------------------------------- /po/fr/rbot-insult.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-insult.po -------------------------------------------------------------------------------- /po/fr/rbot-iplookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-iplookup.po -------------------------------------------------------------------------------- /po/fr/rbot-keywords.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Yaohan Chen , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2008-06-21 15:07+0100\n" 11 | "Last-Translator: Lagrange Marc \n" 12 | "Language-Team: French\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/keywords.rb:461 20 | msgid "couldn't find keyword %{key}" 21 | msgstr "Impossible de trouver la clé %{key}" 22 | 23 | #: data/rbot/plugins/keywords.rb:510 24 | msgid "failed to export keywords as factoids (%{err})" 25 | msgstr "impossible d'exporter la clé des facts (%{err})" 26 | -------------------------------------------------------------------------------- /po/fr/rbot-lart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-lart.po -------------------------------------------------------------------------------- /po/fr/rbot-lib_spotify.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-lib_spotify.po -------------------------------------------------------------------------------- /po/fr/rbot-linkbot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-linkbot.po -------------------------------------------------------------------------------- /po/fr/rbot-math.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-math.po -------------------------------------------------------------------------------- /po/fr/rbot-modes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-modes.po -------------------------------------------------------------------------------- /po/fr/rbot-note.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-note.po -------------------------------------------------------------------------------- /po/fr/rbot-nslookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-nslookup.po -------------------------------------------------------------------------------- /po/fr/rbot-points.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-points.po -------------------------------------------------------------------------------- /po/fr/rbot-quakeauth.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-quakeauth.po -------------------------------------------------------------------------------- /po/fr/rbot-reaction.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/reaction.rb:341 2 | msgid "Sorry, you're not allowed to change %{act} replies here" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/reaction.rb:349 6 | msgid "Sorry, you're not allowed to add %{act} replies here" 7 | msgstr "" 8 | -------------------------------------------------------------------------------- /po/fr/rbot-remind.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-remind.po -------------------------------------------------------------------------------- /po/fr/rbot-remotectl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-remotectl.po -------------------------------------------------------------------------------- /po/fr/rbot-ri.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-ri.po -------------------------------------------------------------------------------- /po/fr/rbot-roshambo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-roshambo.po -------------------------------------------------------------------------------- /po/fr/rbot-rot13.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-rot13.po -------------------------------------------------------------------------------- /po/fr/rbot-roulette.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-roulette.po -------------------------------------------------------------------------------- /po/fr/rbot-rss.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Yaohan Chen , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2008-06-21 15:38+0100\n" 11 | "Last-Translator: Lagrange Marc \n" 12 | "Language-Team: French\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/rss.rb:811 20 | msgid "You want me to rename %{handle} to itself?" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/rss.rb:932 24 | msgid "no such feed %{handle}" 25 | msgstr "aucun module %{module}" 26 | 27 | #: data/rbot/plugins/rss.rb:1033 28 | msgid "feed %{feed} had %{num} updates, showing the latest %{max}" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/fr/rbot-salut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-salut.po -------------------------------------------------------------------------------- /po/fr/rbot-script.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/script.rb:91 2 | msgid "%{stuff} is not a script I know of" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/fr/rbot-search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-search.po -------------------------------------------------------------------------------- /po/fr/rbot-sed.po: -------------------------------------------------------------------------------- 1 | # French translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-07-02 00:17+0200\n" 10 | "PO-Revision-Date: 2010-07-02 00:17+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 18 | 19 | #: data/rbot/plugins/sed.rb:47 20 | msgid "meant" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/sed.rb:49 24 | msgid "You did something wrong... Try s/you/me/ or tell me \"help sed\"" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/fr/rbot-shortenurls.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-shortenurls.po -------------------------------------------------------------------------------- /po/fr/rbot-slashdot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-slashdot.po -------------------------------------------------------------------------------- /po/fr/rbot-theyfightcrime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-theyfightcrime.po -------------------------------------------------------------------------------- /po/fr/rbot-threat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-threat.po -------------------------------------------------------------------------------- /po/fr/rbot-topic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-topic.po -------------------------------------------------------------------------------- /po/fr/rbot-tube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-tube.po -------------------------------------------------------------------------------- /po/fr/rbot-twitter.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Yaohan Chen , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2008-06-21 16:04+0100\n" 11 | "Last-Translator: Lagrange Marc \n" 12 | "Language-Team: French\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/twitter.rb:200 20 | msgid "" 21 | "My authorization failed! Did you block me? Or is my Twitter Consumer Key/" 22 | "Secret pair incorrect?" 23 | msgstr "" 24 | 25 | #: data/rbot/plugins/twitter.rb:283 26 | msgid "actions will be twitted" 27 | msgstr "actions qui seront twitted" 28 | 29 | #: data/rbot/plugins/twitter.rb:285 30 | msgid "actions will not be twitted" 31 | msgstr "actions qui ne seront pas twitted" 32 | -------------------------------------------------------------------------------- /po/fr/rbot-urban.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-urban.po -------------------------------------------------------------------------------- /po/fr/rbot-url.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-url.po -------------------------------------------------------------------------------- /po/fr/rbot-usermodes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-usermodes.po -------------------------------------------------------------------------------- /po/fr/rbot-wow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-wow.po -------------------------------------------------------------------------------- /po/fr/rbot-wserver.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/fr/rbot-wserver.po -------------------------------------------------------------------------------- /po/it/rbot-autoop.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autoop.rb:79 2 | msgid "Either specify a channel to seed, or ask in public" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/autoop.rb:100 6 | msgid "Nobody to add" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/autoop.rb:157 10 | msgid "Either specify a channel to restore, or ask in public" 11 | msgstr "" 12 | -------------------------------------------------------------------------------- /po/it/rbot-autorejoin.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autorejoin.rb:60 2 | msgid "for kicking me out earlier" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/it/rbot-bans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-bans.po -------------------------------------------------------------------------------- /po/it/rbot-bash.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/bash.rb:71 2 | msgid "bash => print a random quote from bash.org" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/bash.rb:72 6 | msgid "bash quote_id => print that quote id from bash.org" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/bash.rb:73 10 | msgid "bash search => print the first bash.org quote matching " 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/bash.rb:74 14 | msgid "bash latest => print the latest quote from bash.org" 15 | msgstr "" 16 | -------------------------------------------------------------------------------- /po/it/rbot-botsnack.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-botsnack.po -------------------------------------------------------------------------------- /po/it/rbot-cal.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/cal.rb:4 2 | msgid "Path to the cal program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/it/rbot-chanserv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-chanserv.po -------------------------------------------------------------------------------- /po/it/rbot-chucknorris.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-chucknorris.po -------------------------------------------------------------------------------- /po/it/rbot-debugger.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-debugger.po -------------------------------------------------------------------------------- /po/it/rbot-deepthoughts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-deepthoughts.po -------------------------------------------------------------------------------- /po/it/rbot-delicious.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-delicious.po -------------------------------------------------------------------------------- /po/it/rbot-dice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-dice.po -------------------------------------------------------------------------------- /po/it/rbot-dict.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-dict.po -------------------------------------------------------------------------------- /po/it/rbot-digg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-digg.po -------------------------------------------------------------------------------- /po/it/rbot-eightball.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-eightball.po -------------------------------------------------------------------------------- /po/it/rbot-excuse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-excuse.po -------------------------------------------------------------------------------- /po/it/rbot-fish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-fish.po -------------------------------------------------------------------------------- /po/it/rbot-forecast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-forecast.po -------------------------------------------------------------------------------- /po/it/rbot-fortune.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-fortune.po -------------------------------------------------------------------------------- /po/it/rbot-freshmeat.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/freshmeat.rb:23 2 | msgid "" 3 | "you must set the configuration value freshmeat.api_token to a valid " 4 | "freshmeat auth token, otherwise I cannot make requests to the site" 5 | msgstr "" 6 | 7 | #: data/rbot/plugins/freshmeat.rb:122 8 | msgid "retrieving freshmeat news from the RSS" 9 | msgstr "" 10 | 11 | #: data/rbot/plugins/freshmeat.rb:126 12 | msgid " because no API token is configured" 13 | msgstr "" 14 | 15 | #: data/rbot/plugins/freshmeat.rb:128 16 | msgid " because the configured API token is wrong" 17 | msgstr "" 18 | 19 | #: data/rbot/plugins/freshmeat.rb:136 20 | msgid "couldn't retrieve freshmeat news feed" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/freshmeat.rb:222 24 | msgid "no news in freshmeat!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/it/rbot-geoip.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/geoip.rb:194 2 | msgid "%{nick}'s location could not be resolved" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/geoip.rb:196 6 | msgid "%{host} could not be resolved" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/geoip.rb:199 10 | msgid "The owner configured me to use an API that doesn't exist, bug them!" 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/geoip.rb:208 14 | msgid "%{nick} is from %{location}" 15 | msgstr "" 16 | 17 | #: data/rbot/plugins/geoip.rb:210 18 | msgid "%{host} is located in %{location}" 19 | msgstr "" 20 | -------------------------------------------------------------------------------- /po/it/rbot-googlefight.po: -------------------------------------------------------------------------------- 1 | # Italian translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-01 23:50+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/googlefight.rb:36 20 | msgid " -- %{keyword} wins!" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/googlefight.rb:40 24 | msgid " -- no winner here!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/it/rbot-greet.po: -------------------------------------------------------------------------------- 1 | # Italian translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-06-30 09:58+0200\n" 10 | "PO-Revision-Date: 2010-06-30 09:58+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/greet.rb:14 20 | msgid "Greet people on these channels." 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/greet.rb:18 24 | msgid "" 25 | "By default, greetings are fetched from lang files. You can use this to " 26 | "specify custom messages, use %s to represent a nick." 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/greet.rb:22 30 | msgid "Greet with delay so that the greeting seems human-like." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/it/rbot-grouphug.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/grouphug.rb:23 2 | msgid "" 3 | "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess " 4 | "' for specific one, 'confess ' to share your own " 5 | "confession. Confessions must be at least 10 words." 6 | msgstr "" 7 | 8 | #: data/rbot/plugins/grouphug.rb:30 9 | msgid "Confession must be at least 10 words. You need %{m} more." 10 | msgstr "" 11 | 12 | #: data/rbot/plugins/grouphug.rb:44 13 | msgid "Confession posted: http://beta.grouphug.us/confessions/%{n}" 14 | msgstr "" 15 | 16 | #: data/rbot/plugins/grouphug.rb:46 17 | msgid "I couldn't share your confession." 18 | msgstr "" 19 | -------------------------------------------------------------------------------- /po/it/rbot-hl2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-hl2.po -------------------------------------------------------------------------------- /po/it/rbot-host.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/host.rb:4 2 | msgid "Path to the host program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/it/rbot-imdb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-imdb.po -------------------------------------------------------------------------------- /po/it/rbot-insult.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-insult.po -------------------------------------------------------------------------------- /po/it/rbot-iplookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-iplookup.po -------------------------------------------------------------------------------- /po/it/rbot-keywords.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Giuseppe Bilotta 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2007-08-23 17:49+0100\n" 11 | "Last-Translator: Giuseppe Bilotta \n" 12 | "Language-Team: it\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/keywords.rb:461 20 | msgid "couldn't find keyword %{key}" 21 | msgstr "impossibile trovare il botuser %{name}" 22 | 23 | #: data/rbot/plugins/keywords.rb:510 24 | msgid "failed to export keywords as factoids (%{err})" 25 | msgstr "impossibile esportare gli utenti: %{exception}" 26 | -------------------------------------------------------------------------------- /po/it/rbot-lart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-lart.po -------------------------------------------------------------------------------- /po/it/rbot-lib_spotify.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-lib_spotify.po -------------------------------------------------------------------------------- /po/it/rbot-linkbot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-linkbot.po -------------------------------------------------------------------------------- /po/it/rbot-math.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-math.po -------------------------------------------------------------------------------- /po/it/rbot-modes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-modes.po -------------------------------------------------------------------------------- /po/it/rbot-note.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-note.po -------------------------------------------------------------------------------- /po/it/rbot-nslookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-nslookup.po -------------------------------------------------------------------------------- /po/it/rbot-points.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-points.po -------------------------------------------------------------------------------- /po/it/rbot-quakeauth.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-quakeauth.po -------------------------------------------------------------------------------- /po/it/rbot-reaction.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/reaction.rb:341 2 | msgid "Sorry, you're not allowed to change %{act} replies here" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/reaction.rb:349 6 | msgid "Sorry, you're not allowed to add %{act} replies here" 7 | msgstr "" 8 | -------------------------------------------------------------------------------- /po/it/rbot-remind.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-remind.po -------------------------------------------------------------------------------- /po/it/rbot-remotectl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-remotectl.po -------------------------------------------------------------------------------- /po/it/rbot-ri.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-ri.po -------------------------------------------------------------------------------- /po/it/rbot-roshambo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-roshambo.po -------------------------------------------------------------------------------- /po/it/rbot-rot13.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-rot13.po -------------------------------------------------------------------------------- /po/it/rbot-roulette.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-roulette.po -------------------------------------------------------------------------------- /po/it/rbot-rss.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Giuseppe Bilotta 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2009-03-20 16:26+0100\n" 11 | "Last-Translator: Giuseppe Bilotta \n" 12 | "Language-Team: it\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/rss.rb:811 20 | msgid "You want me to rename %{handle} to itself?" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/rss.rb:932 24 | msgid "no such feed %{handle}" 25 | msgstr "non esiste alcun feed %{handle}" 26 | 27 | #: data/rbot/plugins/rss.rb:1033 28 | msgid "feed %{feed} had %{num} updates, showing the latest %{max}" 29 | msgstr "il feed %{feed} ha %{num} aggiornamenti, mostro gli ultimi %{max}" 30 | -------------------------------------------------------------------------------- /po/it/rbot-salut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-salut.po -------------------------------------------------------------------------------- /po/it/rbot-script.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Giuseppe Bilotta 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-20 16:42+0100\n" 11 | "Last-Translator: Giuseppe Bilotta \n" 12 | "Language-Team: it\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | 18 | #: data/rbot/plugins/script.rb:91 19 | msgid "%{stuff} is not a script I know of" 20 | msgstr "%{stuff} non è uno script che conosco" 21 | -------------------------------------------------------------------------------- /po/it/rbot-search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-search.po -------------------------------------------------------------------------------- /po/it/rbot-sed.po: -------------------------------------------------------------------------------- 1 | # Italian translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-07-02 00:17+0200\n" 10 | "PO-Revision-Date: 2010-07-02 00:17+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: data/rbot/plugins/sed.rb:47 20 | msgid "meant" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/sed.rb:49 24 | msgid "You did something wrong... Try s/you/me/ or tell me \"help sed\"" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/it/rbot-shortenurls.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-shortenurls.po -------------------------------------------------------------------------------- /po/it/rbot-slashdot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-slashdot.po -------------------------------------------------------------------------------- /po/it/rbot-theyfightcrime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-theyfightcrime.po -------------------------------------------------------------------------------- /po/it/rbot-threat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-threat.po -------------------------------------------------------------------------------- /po/it/rbot-topic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-topic.po -------------------------------------------------------------------------------- /po/it/rbot-tube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-tube.po -------------------------------------------------------------------------------- /po/it/rbot-twitter.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Giuseppe Bilotta 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2007-08-23 17:49+0100\n" 11 | "Last-Translator: Giuseppe Bilotta \n" 12 | "Language-Team: it\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/twitter.rb:200 20 | msgid "" 21 | "My authorization failed! Did you block me? Or is my Twitter Consumer Key/" 22 | "Secret pair incorrect?" 23 | msgstr "" 24 | 25 | #: data/rbot/plugins/twitter.rb:283 26 | msgid "actions will be twitted" 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/twitter.rb:285 30 | msgid "actions will not be twitted" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/it/rbot-urban.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-urban.po -------------------------------------------------------------------------------- /po/it/rbot-url.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-url.po -------------------------------------------------------------------------------- /po/it/rbot-usermodes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-usermodes.po -------------------------------------------------------------------------------- /po/it/rbot-wow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-wow.po -------------------------------------------------------------------------------- /po/it/rbot-wserver.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/it/rbot-wserver.po -------------------------------------------------------------------------------- /po/ja/rbot-autoop.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autoop.rb:79 2 | msgid "Either specify a channel to seed, or ask in public" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/autoop.rb:100 6 | msgid "Nobody to add" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/autoop.rb:157 10 | msgid "Either specify a channel to restore, or ask in public" 11 | msgstr "" 12 | -------------------------------------------------------------------------------- /po/ja/rbot-autorejoin.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autorejoin.rb:60 2 | msgid "for kicking me out earlier" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/ja/rbot-bans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-bans.po -------------------------------------------------------------------------------- /po/ja/rbot-bash.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/bash.rb:71 2 | msgid "bash => print a random quote from bash.org" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/bash.rb:72 6 | msgid "bash quote_id => print that quote id from bash.org" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/bash.rb:73 10 | msgid "bash search => print the first bash.org quote matching " 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/bash.rb:74 14 | msgid "bash latest => print the latest quote from bash.org" 15 | msgstr "" 16 | -------------------------------------------------------------------------------- /po/ja/rbot-botsnack.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-botsnack.po -------------------------------------------------------------------------------- /po/ja/rbot-cal.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/cal.rb:4 2 | msgid "Path to the cal program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/ja/rbot-chanserv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-chanserv.po -------------------------------------------------------------------------------- /po/ja/rbot-chucknorris.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-chucknorris.po -------------------------------------------------------------------------------- /po/ja/rbot-debugger.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-debugger.po -------------------------------------------------------------------------------- /po/ja/rbot-deepthoughts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-deepthoughts.po -------------------------------------------------------------------------------- /po/ja/rbot-delicious.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-delicious.po -------------------------------------------------------------------------------- /po/ja/rbot-dice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-dice.po -------------------------------------------------------------------------------- /po/ja/rbot-dict.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-dict.po -------------------------------------------------------------------------------- /po/ja/rbot-digg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-digg.po -------------------------------------------------------------------------------- /po/ja/rbot-eightball.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-eightball.po -------------------------------------------------------------------------------- /po/ja/rbot-excuse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-excuse.po -------------------------------------------------------------------------------- /po/ja/rbot-figlet.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2007-07-09 01:36-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: Japanese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/figlet.rb:11 20 | msgid "Path to the figlet program" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/figlet.rb:16 24 | msgid "figlet font to use" 25 | msgstr "" 26 | 27 | #: data/rbot/plugins/figlet.rb:22 28 | msgid "Path to the toilet program" 29 | msgstr "" 30 | 31 | #: data/rbot/plugins/figlet.rb:27 32 | msgid "toilet font to use" 33 | msgstr "" 34 | 35 | #: data/rbot/plugins/figlet.rb:33 36 | msgid "toilet filters to use (e.g. gay, metal)" 37 | msgstr "" 38 | -------------------------------------------------------------------------------- /po/ja/rbot-fish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-fish.po -------------------------------------------------------------------------------- /po/ja/rbot-forecast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-forecast.po -------------------------------------------------------------------------------- /po/ja/rbot-fortune.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-fortune.po -------------------------------------------------------------------------------- /po/ja/rbot-freshmeat.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/freshmeat.rb:23 2 | msgid "" 3 | "you must set the configuration value freshmeat.api_token to a valid " 4 | "freshmeat auth token, otherwise I cannot make requests to the site" 5 | msgstr "" 6 | 7 | #: data/rbot/plugins/freshmeat.rb:122 8 | msgid "retrieving freshmeat news from the RSS" 9 | msgstr "" 10 | 11 | #: data/rbot/plugins/freshmeat.rb:126 12 | msgid " because no API token is configured" 13 | msgstr "" 14 | 15 | #: data/rbot/plugins/freshmeat.rb:128 16 | msgid " because the configured API token is wrong" 17 | msgstr "" 18 | 19 | #: data/rbot/plugins/freshmeat.rb:136 20 | msgid "couldn't retrieve freshmeat news feed" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/freshmeat.rb:222 24 | msgid "no news in freshmeat!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/ja/rbot-geoip.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/geoip.rb:194 2 | msgid "%{nick}'s location could not be resolved" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/geoip.rb:196 6 | msgid "%{host} could not be resolved" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/geoip.rb:199 10 | msgid "The owner configured me to use an API that doesn't exist, bug them!" 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/geoip.rb:208 14 | msgid "%{nick} is from %{location}" 15 | msgstr "" 16 | 17 | #: data/rbot/plugins/geoip.rb:210 18 | msgid "%{host} is located in %{location}" 19 | msgstr "" 20 | -------------------------------------------------------------------------------- /po/ja/rbot-googlefight.po: -------------------------------------------------------------------------------- 1 | # Japanese translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-01 23:50+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/googlefight.rb:36 20 | msgid " -- %{keyword} wins!" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/googlefight.rb:40 24 | msgid " -- no winner here!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/ja/rbot-greet.po: -------------------------------------------------------------------------------- 1 | # Japanese translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-06-30 09:58+0200\n" 10 | "PO-Revision-Date: 2010-06-30 09:58+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/greet.rb:14 20 | msgid "Greet people on these channels." 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/greet.rb:18 24 | msgid "" 25 | "By default, greetings are fetched from lang files. You can use this to " 26 | "specify custom messages, use %s to represent a nick." 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/greet.rb:22 30 | msgid "Greet with delay so that the greeting seems human-like." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/ja/rbot-grouphug.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/grouphug.rb:23 2 | msgid "" 3 | "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess " 4 | "' for specific one, 'confess ' to share your own " 5 | "confession. Confessions must be at least 10 words." 6 | msgstr "" 7 | 8 | #: data/rbot/plugins/grouphug.rb:30 9 | msgid "Confession must be at least 10 words. You need %{m} more." 10 | msgstr "" 11 | 12 | #: data/rbot/plugins/grouphug.rb:44 13 | msgid "Confession posted: http://beta.grouphug.us/confessions/%{n}" 14 | msgstr "" 15 | 16 | #: data/rbot/plugins/grouphug.rb:46 17 | msgid "I couldn't share your confession." 18 | msgstr "" 19 | -------------------------------------------------------------------------------- /po/ja/rbot-hl2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-hl2.po -------------------------------------------------------------------------------- /po/ja/rbot-host.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/host.rb:4 2 | msgid "Path to the host program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/ja/rbot-imdb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-imdb.po -------------------------------------------------------------------------------- /po/ja/rbot-insult.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-insult.po -------------------------------------------------------------------------------- /po/ja/rbot-iplookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-iplookup.po -------------------------------------------------------------------------------- /po/ja/rbot-keywords.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2007-07-09 01:36-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: Japanese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/keywords.rb:461 20 | msgid "couldn't find keyword %{key}" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/keywords.rb:510 24 | msgid "failed to export keywords as factoids (%{err})" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/ja/rbot-lart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-lart.po -------------------------------------------------------------------------------- /po/ja/rbot-lib_spotify.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-lib_spotify.po -------------------------------------------------------------------------------- /po/ja/rbot-linkbot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-linkbot.po -------------------------------------------------------------------------------- /po/ja/rbot-math.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-math.po -------------------------------------------------------------------------------- /po/ja/rbot-modes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-modes.po -------------------------------------------------------------------------------- /po/ja/rbot-note.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-note.po -------------------------------------------------------------------------------- /po/ja/rbot-nslookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-nslookup.po -------------------------------------------------------------------------------- /po/ja/rbot-points.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-points.po -------------------------------------------------------------------------------- /po/ja/rbot-quakeauth.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-quakeauth.po -------------------------------------------------------------------------------- /po/ja/rbot-reaction.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/reaction.rb:341 2 | msgid "Sorry, you're not allowed to change %{act} replies here" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/reaction.rb:349 6 | msgid "Sorry, you're not allowed to add %{act} replies here" 7 | msgstr "" 8 | -------------------------------------------------------------------------------- /po/ja/rbot-remind.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-remind.po -------------------------------------------------------------------------------- /po/ja/rbot-remotectl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-remotectl.po -------------------------------------------------------------------------------- /po/ja/rbot-ri.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-ri.po -------------------------------------------------------------------------------- /po/ja/rbot-roshambo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-roshambo.po -------------------------------------------------------------------------------- /po/ja/rbot-rot13.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-rot13.po -------------------------------------------------------------------------------- /po/ja/rbot-roulette.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-roulette.po -------------------------------------------------------------------------------- /po/ja/rbot-rss.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2007-07-09 01:36-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: Japanese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/rss.rb:811 20 | msgid "You want me to rename %{handle} to itself?" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/rss.rb:932 24 | msgid "no such feed %{handle}" 25 | msgstr "" 26 | 27 | #: data/rbot/plugins/rss.rb:1033 28 | msgid "feed %{feed} had %{num} updates, showing the latest %{max}" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/ja/rbot-salut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-salut.po -------------------------------------------------------------------------------- /po/ja/rbot-script.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/script.rb:91 2 | msgid "%{stuff} is not a script I know of" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/ja/rbot-search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-search.po -------------------------------------------------------------------------------- /po/ja/rbot-sed.po: -------------------------------------------------------------------------------- 1 | # Japanese translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-07-02 00:17+0200\n" 10 | "PO-Revision-Date: 2010-07-02 00:17+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/sed.rb:47 20 | msgid "meant" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/sed.rb:49 24 | msgid "You did something wrong... Try s/you/me/ or tell me \"help sed\"" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/ja/rbot-shortenurls.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-shortenurls.po -------------------------------------------------------------------------------- /po/ja/rbot-slashdot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-slashdot.po -------------------------------------------------------------------------------- /po/ja/rbot-theyfightcrime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-theyfightcrime.po -------------------------------------------------------------------------------- /po/ja/rbot-threat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-threat.po -------------------------------------------------------------------------------- /po/ja/rbot-topic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-topic.po -------------------------------------------------------------------------------- /po/ja/rbot-tube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-tube.po -------------------------------------------------------------------------------- /po/ja/rbot-twitter.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2007-07-09 01:36-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: Japanese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/twitter.rb:200 20 | msgid "" 21 | "My authorization failed! Did you block me? Or is my Twitter Consumer Key/" 22 | "Secret pair incorrect?" 23 | msgstr "" 24 | 25 | #: data/rbot/plugins/twitter.rb:283 26 | msgid "actions will be twitted" 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/twitter.rb:285 30 | msgid "actions will not be twitted" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/ja/rbot-urban.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-urban.po -------------------------------------------------------------------------------- /po/ja/rbot-url.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-url.po -------------------------------------------------------------------------------- /po/ja/rbot-usermodes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-usermodes.po -------------------------------------------------------------------------------- /po/ja/rbot-wow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-wow.po -------------------------------------------------------------------------------- /po/ja/rbot-wserver.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/ja/rbot-wserver.po -------------------------------------------------------------------------------- /po/rbot-autoop.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2010-07-02 00:17+0200\n" 11 | "PO-Revision-Date: 2010-07-02 00:17+0200\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/autoop.rb:79 20 | msgid "Either specify a channel to seed, or ask in public" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/autoop.rb:100 24 | msgid "Nobody to add" 25 | msgstr "" 26 | 27 | #: data/rbot/plugins/autoop.rb:157 28 | msgid "Either specify a channel to restore, or ask in public" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/rbot-autorejoin.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 11 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/autorejoin.rb:60 20 | msgid "for kicking me out earlier" 21 | msgstr "" 22 | -------------------------------------------------------------------------------- /po/rbot-bans.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-bans.pot -------------------------------------------------------------------------------- /po/rbot-botsnack.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-botsnack.pot -------------------------------------------------------------------------------- /po/rbot-cal.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 11 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/cal.rb:4 20 | msgid "Path to the cal program" 21 | msgstr "" 22 | -------------------------------------------------------------------------------- /po/rbot-chanserv.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-chanserv.pot -------------------------------------------------------------------------------- /po/rbot-chucknorris.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-chucknorris.pot -------------------------------------------------------------------------------- /po/rbot-debugger.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-debugger.pot -------------------------------------------------------------------------------- /po/rbot-deepthoughts.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-deepthoughts.pot -------------------------------------------------------------------------------- /po/rbot-delicious.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-delicious.pot -------------------------------------------------------------------------------- /po/rbot-dice.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-dice.pot -------------------------------------------------------------------------------- /po/rbot-dict.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-dict.pot -------------------------------------------------------------------------------- /po/rbot-digg.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-digg.pot -------------------------------------------------------------------------------- /po/rbot-eightball.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-eightball.pot -------------------------------------------------------------------------------- /po/rbot-excuse.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-excuse.pot -------------------------------------------------------------------------------- /po/rbot-fish.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-fish.pot -------------------------------------------------------------------------------- /po/rbot-forecast.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-forecast.pot -------------------------------------------------------------------------------- /po/rbot-fortune.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-fortune.pot -------------------------------------------------------------------------------- /po/rbot-googlefight.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 11 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/googlefight.rb:36 20 | msgid " -- %{keyword} wins!" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/googlefight.rb:40 24 | msgid " -- no winner here!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/rbot-greet.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2010-06-30 09:58+0200\n" 11 | "PO-Revision-Date: 2010-06-30 09:58+0200\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/greet.rb:14 20 | msgid "Greet people on these channels." 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/greet.rb:18 24 | msgid "" 25 | "By default, greetings are fetched from lang files. You can use this to " 26 | "specify custom messages, use %s to represent a nick." 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/greet.rb:22 30 | msgid "Greet with delay so that the greeting seems human-like." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/rbot-hl2.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-hl2.pot -------------------------------------------------------------------------------- /po/rbot-host.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 11 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/host.rb:4 20 | msgid "Path to the host program" 21 | msgstr "" 22 | -------------------------------------------------------------------------------- /po/rbot-imdb.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-imdb.pot -------------------------------------------------------------------------------- /po/rbot-insult.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-insult.pot -------------------------------------------------------------------------------- /po/rbot-iplookup.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-iplookup.pot -------------------------------------------------------------------------------- /po/rbot-keywords.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 11 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/keywords.rb:461 20 | msgid "couldn't find keyword %{key}" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/keywords.rb:510 24 | msgid "failed to export keywords as factoids (%{err})" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/rbot-lart.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-lart.pot -------------------------------------------------------------------------------- /po/rbot-lib_spotify.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-lib_spotify.pot -------------------------------------------------------------------------------- /po/rbot-linkbot.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-linkbot.pot -------------------------------------------------------------------------------- /po/rbot-math.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-math.pot -------------------------------------------------------------------------------- /po/rbot-modes.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-modes.pot -------------------------------------------------------------------------------- /po/rbot-note.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-note.pot -------------------------------------------------------------------------------- /po/rbot-nslookup.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-nslookup.pot -------------------------------------------------------------------------------- /po/rbot-points.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-points.pot -------------------------------------------------------------------------------- /po/rbot-quakeauth.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-quakeauth.pot -------------------------------------------------------------------------------- /po/rbot-reaction.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2010-06-30 09:58+0200\n" 11 | "PO-Revision-Date: 2010-06-30 09:58+0200\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/reaction.rb:341 20 | msgid "Sorry, you're not allowed to change %{act} replies here" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/reaction.rb:349 24 | msgid "Sorry, you're not allowed to add %{act} replies here" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/rbot-remind.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-remind.pot -------------------------------------------------------------------------------- /po/rbot-remotectl.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-remotectl.pot -------------------------------------------------------------------------------- /po/rbot-ri.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-ri.pot -------------------------------------------------------------------------------- /po/rbot-roshambo.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-roshambo.pot -------------------------------------------------------------------------------- /po/rbot-rot13.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-rot13.pot -------------------------------------------------------------------------------- /po/rbot-roulette.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-roulette.pot -------------------------------------------------------------------------------- /po/rbot-rss.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 11 | "PO-Revision-Date: 2011-06-03 12:39+0200\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/rss.rb:811 20 | msgid "You want me to rename %{handle} to itself?" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/rss.rb:932 24 | msgid "no such feed %{handle}" 25 | msgstr "" 26 | 27 | #: data/rbot/plugins/rss.rb:1033 28 | msgid "feed %{feed} had %{num} updates, showing the latest %{max}" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/rbot-salut.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-salut.pot -------------------------------------------------------------------------------- /po/rbot-script.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 11 | "PO-Revision-Date: 2009-03-20 15:57+0100\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/script.rb:91 20 | msgid "%{stuff} is not a script I know of" 21 | msgstr "" 22 | -------------------------------------------------------------------------------- /po/rbot-search.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-search.pot -------------------------------------------------------------------------------- /po/rbot-sed.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2010-07-02 00:17+0200\n" 11 | "PO-Revision-Date: 2010-07-02 00:17+0200\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/sed.rb:47 20 | msgid "meant" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/sed.rb:49 24 | msgid "You did something wrong... Try s/you/me/ or tell me \"help sed\"" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/rbot-shortenurls.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-shortenurls.pot -------------------------------------------------------------------------------- /po/rbot-slashdot.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-slashdot.pot -------------------------------------------------------------------------------- /po/rbot-theyfightcrime.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-theyfightcrime.pot -------------------------------------------------------------------------------- /po/rbot-threat.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-threat.pot -------------------------------------------------------------------------------- /po/rbot-topic.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-topic.pot -------------------------------------------------------------------------------- /po/rbot-tube.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-tube.pot -------------------------------------------------------------------------------- /po/rbot-twitter.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: rbot\n" 10 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 11 | "PO-Revision-Date: 2011-06-03 12:39+0200\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/twitter.rb:200 20 | msgid "" 21 | "My authorization failed! Did you block me? Or is my Twitter Consumer Key/" 22 | "Secret pair incorrect?" 23 | msgstr "" 24 | 25 | #: data/rbot/plugins/twitter.rb:283 26 | msgid "actions will be twitted" 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/twitter.rb:285 30 | msgid "actions will not be twitted" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/rbot-urban.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-urban.pot -------------------------------------------------------------------------------- /po/rbot-url.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-url.pot -------------------------------------------------------------------------------- /po/rbot-usermodes.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-usermodes.pot -------------------------------------------------------------------------------- /po/rbot-wow.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-wow.pot -------------------------------------------------------------------------------- /po/rbot-wserver.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/rbot-wserver.pot -------------------------------------------------------------------------------- /po/zh_CN/rbot-autoop.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autoop.rb:79 2 | msgid "Either specify a channel to seed, or ask in public" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/autoop.rb:100 6 | msgid "Nobody to add" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/autoop.rb:157 10 | msgid "Either specify a channel to restore, or ask in public" 11 | msgstr "" 12 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-autorejoin.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autorejoin.rb:60 2 | msgid "for kicking me out earlier" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-bans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-bans.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-bash.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/bash.rb:71 2 | msgid "bash => print a random quote from bash.org" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/bash.rb:72 6 | msgid "bash quote_id => print that quote id from bash.org" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/bash.rb:73 10 | msgid "bash search => print the first bash.org quote matching " 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/bash.rb:74 14 | msgid "bash latest => print the latest quote from bash.org" 15 | msgstr "" 16 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-botsnack.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-botsnack.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-cal.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/cal.rb:4 2 | msgid "Path to the cal program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-chanserv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-chanserv.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-chucknorris.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-chucknorris.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-debugger.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-debugger.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-deepthoughts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-deepthoughts.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-delicious.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-delicious.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-dice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-dice.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-dict.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-dict.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-digg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-digg.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-eightball.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-eightball.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-excuse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-excuse.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-fish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-fish.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-forecast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-forecast.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-fortune.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-fortune.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-freshmeat.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/freshmeat.rb:23 2 | msgid "" 3 | "you must set the configuration value freshmeat.api_token to a valid " 4 | "freshmeat auth token, otherwise I cannot make requests to the site" 5 | msgstr "" 6 | 7 | #: data/rbot/plugins/freshmeat.rb:122 8 | msgid "retrieving freshmeat news from the RSS" 9 | msgstr "" 10 | 11 | #: data/rbot/plugins/freshmeat.rb:126 12 | msgid " because no API token is configured" 13 | msgstr "" 14 | 15 | #: data/rbot/plugins/freshmeat.rb:128 16 | msgid " because the configured API token is wrong" 17 | msgstr "" 18 | 19 | #: data/rbot/plugins/freshmeat.rb:136 20 | msgid "couldn't retrieve freshmeat news feed" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/freshmeat.rb:222 24 | msgid "no news in freshmeat!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-geoip.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/geoip.rb:194 2 | msgid "%{nick}'s location could not be resolved" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/geoip.rb:196 6 | msgid "%{host} could not be resolved" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/geoip.rb:199 10 | msgid "The owner configured me to use an API that doesn't exist, bug them!" 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/geoip.rb:208 14 | msgid "%{nick} is from %{location}" 15 | msgstr "" 16 | 17 | #: data/rbot/plugins/geoip.rb:210 18 | msgid "%{host} is located in %{location}" 19 | msgstr "" 20 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-googlefight.po: -------------------------------------------------------------------------------- 1 | # Chinese translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-01 23:50+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/googlefight.rb:36 20 | msgid " -- %{keyword} wins!" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/googlefight.rb:40 24 | msgid " -- no winner here!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-greet.po: -------------------------------------------------------------------------------- 1 | # Chinese translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-06-30 09:58+0200\n" 10 | "PO-Revision-Date: 2010-06-30 09:58+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/greet.rb:14 20 | msgid "Greet people on these channels." 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/greet.rb:18 24 | msgid "" 25 | "By default, greetings are fetched from lang files. You can use this to " 26 | "specify custom messages, use %s to represent a nick." 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/greet.rb:22 30 | msgid "Greet with delay so that the greeting seems human-like." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-grouphug.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/grouphug.rb:23 2 | msgid "" 3 | "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess " 4 | "' for specific one, 'confess ' to share your own " 5 | "confession. Confessions must be at least 10 words." 6 | msgstr "" 7 | 8 | #: data/rbot/plugins/grouphug.rb:30 9 | msgid "Confession must be at least 10 words. You need %{m} more." 10 | msgstr "" 11 | 12 | #: data/rbot/plugins/grouphug.rb:44 13 | msgid "Confession posted: http://beta.grouphug.us/confessions/%{n}" 14 | msgstr "" 15 | 16 | #: data/rbot/plugins/grouphug.rb:46 17 | msgid "I couldn't share your confession." 18 | msgstr "" 19 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-hl2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-hl2.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-host.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/host.rb:4 2 | msgid "Path to the host program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-imdb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-imdb.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-insult.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-insult.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-iplookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-iplookup.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-keywords.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2007-07-09 01:39-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: Chinese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/keywords.rb:461 20 | msgid "couldn't find keyword %{key}" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/keywords.rb:510 24 | msgid "failed to export keywords as factoids (%{err})" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-lart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-lart.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-lib_spotify.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-lib_spotify.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-linkbot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-linkbot.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-math.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-math.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-modes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-modes.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-note.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-note.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-nslookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-nslookup.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-points.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-points.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-quakeauth.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-quakeauth.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-reaction.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/reaction.rb:341 2 | msgid "Sorry, you're not allowed to change %{act} replies here" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/reaction.rb:349 6 | msgid "Sorry, you're not allowed to add %{act} replies here" 7 | msgstr "" 8 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-remind.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-remind.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-remotectl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-remotectl.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-ri.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-ri.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-roshambo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-roshambo.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-rot13.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-rot13.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-roulette.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-roulette.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-rss.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2007-07-09 01:39-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: Chinese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/rss.rb:811 20 | msgid "You want me to rename %{handle} to itself?" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/rss.rb:932 24 | msgid "no such feed %{handle}" 25 | msgstr "" 26 | 27 | #: data/rbot/plugins/rss.rb:1033 28 | msgid "feed %{feed} had %{num} updates, showing the latest %{max}" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-salut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-salut.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-script.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/script.rb:91 2 | msgid "%{stuff} is not a script I know of" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-search.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-sed.po: -------------------------------------------------------------------------------- 1 | # Chinese translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-07-02 00:17+0200\n" 10 | "PO-Revision-Date: 2010-07-02 00:17+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/sed.rb:47 20 | msgid "meant" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/sed.rb:49 24 | msgid "You did something wrong... Try s/you/me/ or tell me \"help sed\"" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-shortenurls.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-shortenurls.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-slashdot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-slashdot.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-theyfightcrime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-theyfightcrime.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-threat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-threat.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-topic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-topic.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-tube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-tube.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-twitter.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2007-07-09 01:39-0400\n" 11 | "Last-Translator: Yaohan Chen \n" 12 | "Language-Team: Chinese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/twitter.rb:200 20 | msgid "" 21 | "My authorization failed! Did you block me? Or is my Twitter Consumer Key/" 22 | "Secret pair incorrect?" 23 | msgstr "" 24 | 25 | #: data/rbot/plugins/twitter.rb:283 26 | msgid "actions will be twitted" 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/twitter.rb:285 30 | msgid "actions will not be twitted" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/zh_CN/rbot-urban.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-urban.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-url.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-url.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-usermodes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-usermodes.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-wow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-wow.po -------------------------------------------------------------------------------- /po/zh_CN/rbot-wserver.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_CN/rbot-wserver.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-autoop.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autoop.rb:79 2 | msgid "Either specify a channel to seed, or ask in public" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/autoop.rb:100 6 | msgid "Nobody to add" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/autoop.rb:157 10 | msgid "Either specify a channel to restore, or ask in public" 11 | msgstr "" 12 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-autorejoin.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/autorejoin.rb:60 2 | msgid "for kicking me out earlier" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-bans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-bans.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-bash.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/bash.rb:71 2 | msgid "bash => print a random quote from bash.org" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/bash.rb:72 6 | msgid "bash quote_id => print that quote id from bash.org" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/bash.rb:73 10 | msgid "bash search => print the first bash.org quote matching " 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/bash.rb:74 14 | msgid "bash latest => print the latest quote from bash.org" 15 | msgstr "" 16 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-botsnack.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-botsnack.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-cal.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/cal.rb:4 2 | msgid "Path to the cal program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-chanserv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-chanserv.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-chucknorris.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-chucknorris.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-debugger.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-debugger.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-deepthoughts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-deepthoughts.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-delicious.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-delicious.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-dice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-dice.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-dict.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-dict.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-digg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-digg.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-eightball.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-eightball.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-excuse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-excuse.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-fish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-fish.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-forecast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-forecast.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-fortune.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-fortune.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-freshmeat.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/freshmeat.rb:23 2 | msgid "" 3 | "you must set the configuration value freshmeat.api_token to a valid " 4 | "freshmeat auth token, otherwise I cannot make requests to the site" 5 | msgstr "" 6 | 7 | #: data/rbot/plugins/freshmeat.rb:122 8 | msgid "retrieving freshmeat news from the RSS" 9 | msgstr "" 10 | 11 | #: data/rbot/plugins/freshmeat.rb:126 12 | msgid " because no API token is configured" 13 | msgstr "" 14 | 15 | #: data/rbot/plugins/freshmeat.rb:128 16 | msgid " because the configured API token is wrong" 17 | msgstr "" 18 | 19 | #: data/rbot/plugins/freshmeat.rb:136 20 | msgid "couldn't retrieve freshmeat news feed" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/freshmeat.rb:222 24 | msgid "no news in freshmeat!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-geoip.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/geoip.rb:194 2 | msgid "%{nick}'s location could not be resolved" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/geoip.rb:196 6 | msgid "%{host} could not be resolved" 7 | msgstr "" 8 | 9 | #: data/rbot/plugins/geoip.rb:199 10 | msgid "The owner configured me to use an API that doesn't exist, bug them!" 11 | msgstr "" 12 | 13 | #: data/rbot/plugins/geoip.rb:208 14 | msgid "%{nick} is from %{location}" 15 | msgstr "" 16 | 17 | #: data/rbot/plugins/geoip.rb:210 18 | msgid "%{host} is located in %{location}" 19 | msgstr "" 20 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-googlefight.po: -------------------------------------------------------------------------------- 1 | # Chinese translations for PACKAGE package. 2 | # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2009-03-01 23:50+0100\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/googlefight.rb:36 20 | msgid " -- %{keyword} wins!" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/googlefight.rb:40 24 | msgid " -- no winner here!" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-greet.po: -------------------------------------------------------------------------------- 1 | # Chinese translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-06-30 09:58+0200\n" 10 | "PO-Revision-Date: 2010-06-30 09:58+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/greet.rb:14 20 | msgid "Greet people on these channels." 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/greet.rb:18 24 | msgid "" 25 | "By default, greetings are fetched from lang files. You can use this to " 26 | "specify custom messages, use %s to represent a nick." 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/greet.rb:22 30 | msgid "Greet with delay so that the greeting seems human-like." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-grouphug.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/grouphug.rb:23 2 | msgid "" 3 | "Grouphug plugin. Confess! Usage: 'confess' for random confession, 'confess " 4 | "' for specific one, 'confess ' to share your own " 5 | "confession. Confessions must be at least 10 words." 6 | msgstr "" 7 | 8 | #: data/rbot/plugins/grouphug.rb:30 9 | msgid "Confession must be at least 10 words. You need %{m} more." 10 | msgstr "" 11 | 12 | #: data/rbot/plugins/grouphug.rb:44 13 | msgid "Confession posted: http://beta.grouphug.us/confessions/%{n}" 14 | msgstr "" 15 | 16 | #: data/rbot/plugins/grouphug.rb:46 17 | msgid "I couldn't share your confession." 18 | msgstr "" 19 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-hl2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-hl2.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-host.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/host.rb:4 2 | msgid "Path to the host program" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-imdb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-imdb.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-insult.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-insult.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-iplookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-iplookup.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-keywords.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2009-03-20 15:57+0100\n" 10 | "PO-Revision-Date: 2007-07-09 01:24-0400\n" 11 | "Last-Translator: Liang-Bin Hsueh \n" 12 | "Language-Team: Chinese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/keywords.rb:461 20 | msgid "couldn't find keyword %{key}" 21 | msgstr "無法找到使用者 ${name}" 22 | 23 | #: data/rbot/plugins/keywords.rb:510 24 | msgid "failed to export keywords as factoids (%{err})" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-lart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-lart.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-lib_spotify.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-lib_spotify.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-linkbot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-linkbot.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-math.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-math.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-modes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-modes.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-note.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-note.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-nslookup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-nslookup.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-points.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-points.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-quakeauth.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-quakeauth.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-reaction.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/reaction.rb:341 2 | msgid "Sorry, you're not allowed to change %{act} replies here" 3 | msgstr "" 4 | 5 | #: data/rbot/plugins/reaction.rb:349 6 | msgid "Sorry, you're not allowed to add %{act} replies here" 7 | msgstr "" 8 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-remind.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-remind.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-remotectl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-remotectl.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-ri.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-ri.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-roshambo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-roshambo.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-rot13.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-rot13.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-roulette.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-roulette.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-rss.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2007-07-09 01:24-0400\n" 11 | "Last-Translator: Liang-Bin Hsueh \n" 12 | "Language-Team: Chinese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/rss.rb:811 20 | msgid "You want me to rename %{handle} to itself?" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/rss.rb:932 24 | msgid "no such feed %{handle}" 25 | msgstr "沒有 %{module} 模組" 26 | 27 | #: data/rbot/plugins/rss.rb:1033 28 | msgid "feed %{feed} had %{num} updates, showing the latest %{max}" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-salut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-salut.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-script.po: -------------------------------------------------------------------------------- 1 | #: data/rbot/plugins/script.rb:91 2 | msgid "%{stuff} is not a script I know of" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-search.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-sed.po: -------------------------------------------------------------------------------- 1 | # Chinese translations for PACKAGE package. 2 | # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # Automatically generated, 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2010-07-02 00:17+0200\n" 10 | "PO-Revision-Date: 2010-07-02 00:17+0200\n" 11 | "Last-Translator: Automatically generated\n" 12 | "Language-Team: none\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18 | 19 | #: data/rbot/plugins/sed.rb:47 20 | msgid "meant" 21 | msgstr "" 22 | 23 | #: data/rbot/plugins/sed.rb:49 24 | msgid "You did something wrong... Try s/you/me/ or tell me \"help sed\"" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-shortenurls.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-shortenurls.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-slashdot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-slashdot.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-theyfightcrime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-theyfightcrime.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-threat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-threat.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-topic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-topic.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-tube.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-tube.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-twitter.po: -------------------------------------------------------------------------------- 1 | # Gettext template file for rbot 2 | # Copyright (C) 2007 Tom Gilbert 3 | # This file is distributed under the same license as the rbot package. 4 | # Tom Gilbert , 2007. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: rbot\n" 9 | "POT-Creation-Date: 2011-06-03 12:39+0200\n" 10 | "PO-Revision-Date: 2007-07-09 01:24-0400\n" 11 | "Last-Translator: Liang-Bin Hsueh \n" 12 | "Language-Team: Chinese\n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=1; plural=0;\n" 18 | 19 | #: data/rbot/plugins/twitter.rb:200 20 | msgid "" 21 | "My authorization failed! Did you block me? Or is my Twitter Consumer Key/" 22 | "Secret pair incorrect?" 23 | msgstr "" 24 | 25 | #: data/rbot/plugins/twitter.rb:283 26 | msgid "actions will be twitted" 27 | msgstr "" 28 | 29 | #: data/rbot/plugins/twitter.rb:285 30 | msgid "actions will not be twitted" 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /po/zh_TW/rbot-urban.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-urban.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-url.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-url.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-usermodes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-usermodes.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-wow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-wow.po -------------------------------------------------------------------------------- /po/zh_TW/rbot-wserver.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rbot/rbot/01d3876d08e5121032a34fc4c2802289780cc09c/po/zh_TW/rbot-wserver.po -------------------------------------------------------------------------------- /release-checklist: -------------------------------------------------------------------------------- 1 | Pre-release checklist: 2 | * Update .po files (rake updatepo). Remember to add any new po(t) files. 3 | 4 | Release checklist: 5 | * prepare a changelog from git shortlog 6 | * tag the release with (./tag-release ). The script takes care of everything, including building the package 7 | * git push, with tags 8 | * upload packages to website's download folder 9 | * update milestones and versions on the website 10 | * prepare announcement on the website (use the changelog prepared before) 11 | * change the website front page 12 | * update the IRC topic 13 | * [jsn] upload the gem (gem push rbot-.gem) 14 | * [jsn] update release info on rubyforge (needs release notes and changelog, take from announcement) 15 | * [jsn] update release info on freshmeat (needs changes summary, see above) 16 | * write a journal entry on ohloh.net about #rbot being released 17 | -------------------------------------------------------------------------------- /tasks/doc.rake: -------------------------------------------------------------------------------- 1 | desc "Generate RDoc" 2 | task :doc => ['doc:generate'] 3 | 4 | namespace :doc do 5 | project_root = File.expand_path(File.join(File.dirname(__FILE__), '..')) 6 | doc_destination = File.join(project_root, 'doc') 7 | 8 | begin 9 | require 'yard' 10 | require 'yard/rake/yardoc_task' 11 | 12 | YARD::Rake::YardocTask.new(:generate) do |yt| 13 | yt.files = Dir.glob(File.join(project_root, 'lib', '**', '*.rb')) 14 | # + 15 | # [ File.join(project_root, 'README.md') ] 16 | yt.options = ['--output-dir', doc_destination, '--readme', 'README.md'] 17 | end 18 | rescue LoadError 19 | desc "Generate YARD Documentation" 20 | task :generate do 21 | abort "Please install the YARD gem to generate rdoc." 22 | end 23 | end 24 | 25 | desc "Remove generated documentation" 26 | task :clean do 27 | rm_r doc_dir if File.exist?(doc_destination) 28 | end 29 | 30 | end 31 | 32 | -------------------------------------------------------------------------------- /tasks/test.rake: -------------------------------------------------------------------------------- 1 | require "rake/testtask.rb" 2 | require 'rake' 3 | 4 | Rake::TestTask.new do |t| 5 | t.libs << "test" 6 | t.test_files = FileList['test/test_*.rb'] + FileList['test/plugins/test_*.rb'] 7 | t.verbose = true 8 | end 9 | -------------------------------------------------------------------------------- /test/plugins/test_rot13.rb: -------------------------------------------------------------------------------- 1 | $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib') 2 | $:.unshift File.join(File.dirname(__FILE__), '..', '..') 3 | 4 | require 'test/unit' 5 | require 'test/mock' 6 | 7 | require 'rbot/ircbot' 8 | require 'rbot/registry' 9 | require 'rbot/plugins' 10 | 11 | 12 | class PluginTest < Test::Unit::TestCase 13 | def setup 14 | manager = Irc::Bot::Plugins.manager 15 | manager.bot_associate(MockBot.new) 16 | manager.load_botmodule_file('./data/rbot/plugins/rot13.rb') 17 | @plugin = manager.get_plugin('rot') 18 | end 19 | 20 | def test_rot13 21 | assert_not_nil(@plugin) 22 | assert_equal(@plugin.help(nil), "rot13 => encode to rot13 or back") 23 | m = MockMessage.new 24 | @plugin.rot13(m, {string: 'Hello World'}) 25 | assert_equal(m.replies.first, 'Uryyb Jbeyq') 26 | end 27 | end 28 | --------------------------------------------------------------------------------