The keystroke editor now works properly

This commit is contained in:
2015-02-26 10:09:13 -06:00
parent e7852e5e91
commit b7193d16ee
8 changed files with 190 additions and 134 deletions

View File

@@ -5,21 +5,23 @@ actions = {
"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"),
"compose": _(u"New tweet"),
"reply": _(u"Reply to a tweet"),
"retweet": _(u"Retweet"),
"dm": _(u"Send direct message"),
"fav": _(u"Mark as favourite"),
"unfav": _(u"Remove from favourites"),
"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"),
"action": _(u"Open the actions dialogue"),
"details": _(u"See user details"),
"view": _(u"Show tweet"),
"close": _(u"Quit"),
"view_item": _(u"Show tweet"),
"exit": _(u"Quit"),
"open_timeline": _(u"Open user timeline"),
"delete_buffer": _(u"Remove buffer"),
"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%"),
@@ -30,7 +32,7 @@ actions = {
"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_list": _(u"Empty the buffer removing all the elements"),
"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"),
@@ -41,5 +43,8 @@ actions = {
"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 more items for the current buffer"),
"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"),
}