twitools/strings.py

103 lines
4.4 KiB
Python
Raw Normal View History

auth = '''To get authenticated with Twitter, please visit this URL and sign in:
* %s
You will receive a six-digit PIN. Please send it to me like this:
* /verify 123456'''
authimp = '''I can't currently start a new authentication process for you as you are either already authenticated or an authentication process has been started.
Please unauthenticate using /unauth first if you are sure you want to re-authenticate.'''
2017-02-08 14:19:01 +00:00
noauth = '''You are not authenticated. Please use /auth to sign in with Twitter.'''
2017-02-08 11:26:25 +00:00
start = '''Hey there!
I'm @%s, everybody's favorite Twitter bot on Telegram!
For me to help you, you will first have to authenticate with Twitter:
* /auth
After authentication, you will be able to tweet from your account. Just drop me a note!
Additionally, you will be able to use the following commands:
2017-02-08 14:16:23 +00:00
* /toggletweet - Turn automatic tweeting of messages on/off. Useful in groups.
* /tweet TEXT - Explicitly tweet TEXT even if automatic tweeting is off (/toggletweet).
2017-02-08 12:06:17 +00:00
* /unauth - Revoke your authenticaton and stop using %s.
2017-02-08 11:26:25 +00:00
Have fun!'''
2017-02-08 12:06:17 +00:00
2017-02-08 14:14:03 +00:00
toggleTweet = '''Automatic tweeting is now %s.'''
2017-02-08 12:06:17 +00:00
unauth = '''You're leaving already? :(
I hope you had a good time with me. If there is anything you would like to tell me or my developers, please drop us a note at:
* %s
Your data has been deleted. Of course, you can always just re-authenticate using /auth.
It was great having you here. So long, and thanks for all the /fish!'''
unknownCommand = '''Sorry, I didn't understand that command.'''
verify = '''Thanks for authenticating. You can now use all of my features!'''
verifyfail = '''Oops, something went wrong during the authentication. Please try again:
* /auth'''
verifyimp = '''There is not currently an authentication process running for you. You may already be logged in, or you have not yet sent me an /auth command.'''
twoFail = '''Well, something went wrong. Try again later.'''
twoAuthFail = '''Could not authenticate you for some reason. Please try again later. If this problem persists, please try reauthenticating using /unauth and /auth.'''
toggleTweetOn = "on"
toggleTweetOff = "off"
fishThanks = '''Yummy! Thanks!'''
selfSpam = '''Don't tell me you just tried to report yourself for spam. Seriously?'''
accountSuspended = '''I'm afraid your account is suspended. I can't currently help you.'''
rateLimit = '''Whoa, buddy! Slow it down! You ran into a rate limit. Please try again later.'''
badToken = '''Oops. Something appears to be wrong with your credentials. Please try reauthenticating using /unauth and /auth.'''
overload = '''So, I've good good news and bad news. The bad news is, I was unable to process your request. The good news is, it isn't our fault. Seems like Twitter is experiencing higher load than usual. Please try again later.'''
twitterError = '''So, I've good good news and bad news. The bad news is, I was unable to process your request. The good news is, it isn't our fault. Seems like Twitter is having some technical difficulties. Please try again later.'''
unknownTweet = '''Well, it seems that this tweet doesn't exist any more. It was probably deleted. Sorry about that.'''
followLimit = '''Twitter doesn't allow you to follow more accounts. You may want to unfollow somebody else first or try to get more followers yourself. (Yeah, I know.)'''
tweetLimit = '''Twitter doesn't allow you to post any new tweets right now because you ran into some kind of limit. Unfortunately, I can't really tell you when you'll be able to tweet again either.'''
dupTweet = '''Didn't you just tweet that? If you're sure that you want to tweet this again, please wait a few minutes and try again.'''
automatedTweet = '''Twitter thinks you're a robot. I'm pretty sure that you're a human being, but they won't listen to me. Anyway, I can't process your request at this time. Sorry about that.'''
selfMute = '''Why would you want to mute yourself? Your tweets are great!'''
notMuted = '''It's great that you want to unmute this account. But you actually haven't muted them in the first place...'''
multipleGIFs = '''I don't understand it either, but Twitter doesn't allow uploading multiple images if one of them is an animated GIF... (It's /ˈɡɪf/, not /ˈɪf/. Just saying.)'''
accountLocked = '''Your account was locked by Twitter for security reasons. Please log in at the Twitter website (https://twitter.com/) and follow the instructions there.'''
longTweet = '''Sorry, but this tweet is too long.'''