# encoding: utf-8 module TokiCLI class Status def self.get_all "Toki_CLI is crawling your Toki App.net channel to get your data.\nIt could take a while, please be patient.\n\n" end def self.canceled "\n\nCanceled.\n\n" end def self.error(e) "\n\nStopped. Error: \n#{e}\n\n" end def self.no_channel "\n\nCan't find your Toki App.net channel, sorry.\n\n" end def self.paste_token "\nPlease paste your App.net token:\n\n" end def self.no_token "\nOops, I didn't get the token. Please try again.\n" end def self.no_db "\nOops, I can't find the Toki database. Please install Toki.app by http://app.net/keita.\n" end def self.done "\nDone.\n" end def self.specify_name "\nPlease specify the name of the app (or part of it).\n\n" end def self.specify_day "\nPlease specify the date with this format: 2014-04-19\n\n" end def self.specify_range "\nPlease specify the range with this format: 2014-04-17 2014-04-19\n\n" end def self.run_auth "\nPlease run `toki auth` first.\n\n" end end end