2014-10-27 16:29:04 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
actions = {
|
2015-04-19 18:11:23 -05:00
|
|
|
"up": _(u"Go up in the current buffer"),
|
|
|
|
"down": _(u"Go down in the current buffer"),
|
|
|
|
"left": _(u"Go to the previous buffer"),
|
|
|
|
"right": _(u"Go to the next buffer"),
|
2015-05-01 10:16:41 -05:00
|
|
|
"next_account": _(u"Focus the next session"),
|
|
|
|
"previous_account": _(u"Focus the previous session"),
|
2015-04-19 18:11:23 -05:00
|
|
|
"show_hide": _(u"Show or hide the GUI"),
|
2015-02-26 10:09:13 -06:00
|
|
|
"post_tweet": _(u"New tweet"),
|
2015-04-19 18:11:23 -05:00
|
|
|
"post_reply": _(u"Reply"),
|
2015-02-26 10:09:13 -06:00
|
|
|
"post_retweet": _(u"Retweet"),
|
|
|
|
"send_dm": _(u"Send direct message"),
|
2015-11-03 10:07:06 -06:00
|
|
|
"add_to_favourites": _(u"Like a tweet"),
|
|
|
|
"remove_from_favourites": _(u"Unlike a tweet"),
|
2015-04-19 18:11:23 -05:00
|
|
|
"follow": _(u"Open the user actions dialogue"),
|
2015-03-08 14:18:29 -06:00
|
|
|
"user_details": _(u"See user details"),
|
2015-02-26 10:09:13 -06:00
|
|
|
"view_item": _(u"Show tweet"),
|
|
|
|
"exit": _(u"Quit"),
|
2014-10-27 16:29:04 -06:00
|
|
|
"open_timeline": _(u"Open user timeline"),
|
2015-05-01 10:16:41 -05:00
|
|
|
"remove_buffer": _(u"Destroy buffer"),
|
2015-05-12 09:14:26 -05:00
|
|
|
"interact": _(u"Interact with the currently focused tweet."),
|
2015-06-15 04:56:36 -05:00
|
|
|
"url": _(u"Open URL"),
|
2014-10-27 16:29:04 -06:00
|
|
|
"volume_up": _(u"Increase volume by 5%"),
|
|
|
|
"volume_down": _(u"Decrease volume by 5%"),
|
2015-05-01 10:16:41 -05:00
|
|
|
"go_home": _(u"Jump to the first element of a buffer"),
|
|
|
|
"go_end": _(u"Jump to the last element of the current buffer"),
|
|
|
|
"go_page_up": _(u"Jump 20 elements up in the current buffer"),
|
|
|
|
"go_page_down": _(u"Jump 20 elements down in the current buffer"),
|
2014-10-27 16:29:04 -06:00
|
|
|
"update_profile": _(u"Edit profile"),
|
2015-05-01 10:16:41 -05:00
|
|
|
"delete": _(u"Delete a tweet or direct message"),
|
2015-04-19 18:11:23 -05:00
|
|
|
"clear_buffer": _(u"Empty the current buffer"),
|
|
|
|
"repeat_item": _(u"Repeat last item"),
|
2014-10-27 16:29:04 -06:00
|
|
|
"copy_to_clipboard": _(u"Copy to clipboard"),
|
|
|
|
"add_to_list": _(u"Add to list"),
|
|
|
|
"remove_from_list": _(u"Remove from list"),
|
2015-04-05 16:39:55 -05:00
|
|
|
"toggle_buffer_mute": _(u"Mute/unmute the active buffer"),
|
2015-05-01 11:54:27 -05:00
|
|
|
"toggle_session_mute": _(u"Mute/unmute the current session"),
|
2015-04-05 16:39:55 -05:00
|
|
|
"toggle_autoread": _(u"toggle the automatic reading of incoming tweets in the active buffer"),
|
2014-10-27 16:29:04 -06:00
|
|
|
"search": _(u"Search on twitter"),
|
2015-06-24 14:53:51 -05:00
|
|
|
"find": _(u"Find a string in the currently focused buffer"),
|
2015-04-05 16:39:55 -05:00
|
|
|
"edit_keystrokes": _(u"Show the keystroke editor"),
|
2014-10-27 16:29:04 -06:00
|
|
|
"view_user_lists": _(u"Show lists for a specified user"),
|
2015-05-01 10:16:41 -05:00
|
|
|
"get_more_items": _(u"load previous items"),
|
2015-04-19 18:11:23 -05:00
|
|
|
"reverse_geocode": _(u"Get geolocation"),
|
|
|
|
"view_reverse_geocode": _(u"Display the tweet's geolocation in a dialog"),
|
|
|
|
"get_trending_topics": _(u"Create a trending topics buffer"),
|
|
|
|
"open_conversation": _(u"View conversation"),
|
2015-11-03 09:02:19 -06:00
|
|
|
"check_for_updates": _(u"Check and download updates"),
|
|
|
|
"lists_manager": _(u"Opens the list manager, which allows you to create, edit, delete and open lists in buffers."),
|
|
|
|
"configuration": _(u"Opens the global settings dialogue"),
|
|
|
|
"accountConfiguration": _(u"Opens the account settings dialogue"),
|
2015-12-16 20:16:18 -06:00
|
|
|
"audio": _(u"Try to play an audio file"),
|
2015-12-26 09:02:08 -06:00
|
|
|
"update_buffer": _(u"Updates the buffer and retrieves possible lost items there."),
|
2017-01-03 08:30:58 -06:00
|
|
|
"ocr_image": _(u"Extracts the text from a picture and displays the result in a dialog."),
|
2014-10-27 16:29:04 -06:00
|
|
|
}
|