twblue/src/keystrokeEditor/constants.py

50 lines
2.3 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
actions = {
"up": _(u"Go up up on the current list"),
"down": _(u"Go down up on the current list"),
"left": _(u"Go to the previous tab"),
"right": _(u"Go to the next tab"),
"next_account": _(u"Changes to the next account"),
"previous_account": _(u"Changes to the previous account"),
"conversation_up": _(u"Move up one tweet in the conversation"),
"conversation_down": _(u"Move down one tweet in the conversation"),
"show_hide": _(u"Show the graphical interface"),
"post_tweet": _(u"New tweet"),
"post_reply": _(u"Reply to a tweet"),
"post_retweet": _(u"Retweet"),
"send_dm": _(u"Send direct message"),
"add_to_favourites": _(u"Mark as favourite"),
"remove_from_favourites": _(u"Remove from favourites"),
"follow": _(u"Open the actions dialogue"),
"user_details": _(u"See user details"),
"view_item": _(u"Show tweet"),
"exit": _(u"Quit"),
"open_timeline": _(u"Open user timeline"),
"remove_buffer": _(u"Remove buffer"),
"url": _(u"Open URL on the current tweet, or further information for a friend or follower"),
"audio": _(u"Attempt to play audio"),
"volume_up": _(u"Increase volume by 5%"),
"volume_down": _(u"Decrease volume by 5%"),
"go_home": _(u"Go to the first element on the list"),
"go_end": _(u"Go to the last element on the list"),
"go_page_up": _(u"Move 20 elements up on the current list"),
"go_page_down": _(u"Move 20 elements down on the current list"),
"update_profile": _(u"Edit profile"),
"delete": _(u"Remove a tweet or direct message"),
"clear_buffer": _(u"Empty the buffer removing all the elements"),
"repeat_item": _(u"Listen the current message"),
"copy_to_clipboard": _(u"Copy to clipboard"),
"add_to_list": _(u"Add to list"),
"remove_from_list": _(u"Remove from list"),
"toggle_buffer_mute": _(u"Mutes/unmutes the active buffer"),
"toggle_session_mute": _(u"Globally mute/unmute the current account in TWBlue"),
"toggle_autoread": _(u"toggles the automatic reading of incoming tweets in the active buffer"),
"search": _(u"Search on twitter"),
"edit_keystrokes": _(u"Shows the keystroke editor"),
"view_user_lists": _(u"Show lists for a specified user"),
"get_more_items": _(u"loads previous items to any buffer"),
"reverse_geocode": _(u"Get location of any tweet"),
"view_reverse_geocode": _(u"Displays the tweet's location in a dialog"),
"get_trending_topics": _(u"Creates a buffer for displaying trends for a desired place"),
}