2014-10-27 16:29:04 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
actions = {
|
2021-06-16 16:18:41 -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"),
|
|
|
|
"next_account": _(u"Focus the next session"),
|
|
|
|
"previous_account": _(u"Focus the previous session"),
|
|
|
|
"show_hide": _(u"Show or hide the GUI"),
|
2022-12-20 13:02:27 -06:00
|
|
|
"post_tweet": _("Make a new post"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"post_reply": _(u"Reply"),
|
2022-12-20 13:02:27 -06:00
|
|
|
"post_retweet": _(u"Boost"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"send_dm": _(u"Send direct message"),
|
2022-12-20 13:02:27 -06:00
|
|
|
"add_to_favourites": _("Add post to favorites"),
|
|
|
|
"remove_from_favourites": _(u"Remove post from favorites"),
|
|
|
|
"toggle_like": _("Add/remove post from favorites"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"follow": _(u"Open the user actions dialogue"),
|
2022-12-20 13:02:27 -06:00
|
|
|
# "user_details": _(u"See user details"),
|
|
|
|
"view_item": _(u"Show post"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"exit": _(u"Quit"),
|
|
|
|
"open_timeline": _(u"Open user timeline"),
|
|
|
|
"remove_buffer": _(u"Destroy buffer"),
|
2022-12-20 13:02:27 -06:00
|
|
|
"interact": _(u"Interact with the currently focused post."),
|
2021-06-16 16:18:41 -05:00
|
|
|
"url": _(u"Open URL"),
|
2022-12-20 13:02:27 -06:00
|
|
|
"open_in_browser": _(u"View in browser"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"volume_up": _(u"Increase volume by 5%"),
|
|
|
|
"volume_down": _(u"Decrease volume by 5%"),
|
|
|
|
"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"),
|
2022-12-20 13:02:27 -06:00
|
|
|
# "update_profile": _(u"Edit profile"),
|
|
|
|
"delete": _("Delete post"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"clear_buffer": _(u"Empty the current buffer"),
|
|
|
|
"repeat_item": _(u"Repeat last item"),
|
|
|
|
"copy_to_clipboard": _(u"Copy to clipboard"),
|
2022-12-20 13:02:27 -06:00
|
|
|
# "add_to_list": _(u"Add to list"),
|
|
|
|
# "remove_from_list": _(u"Remove from list"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"toggle_buffer_mute": _(u"Mute/unmute the active buffer"),
|
|
|
|
"toggle_session_mute": _(u"Mute/unmute the current session"),
|
|
|
|
"toggle_autoread": _(u"toggle the automatic reading of incoming tweets in the active buffer"),
|
2022-12-20 13:02:27 -06:00
|
|
|
"search": _(u"Search on instance"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"find": _(u"Find a string in the currently focused buffer"),
|
|
|
|
"edit_keystrokes": _(u"Show the keystroke editor"),
|
2022-12-20 13:02:27 -06:00
|
|
|
# "view_user_lists": _(u"Show lists for a specified user"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"get_more_items": _(u"load previous items"),
|
2022-12-20 13:02:27 -06:00
|
|
|
# "get_trending_topics": _(u"Create a trending topics buffer"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"open_conversation": _(u"View conversation"),
|
|
|
|
"check_for_updates": _(u"Check and download updates"),
|
|
|
|
"configuration": _(u"Opens the global settings dialogue"),
|
2022-12-20 13:02:27 -06:00
|
|
|
# "list_manager": _(u"Opens the list manager"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"accountConfiguration": _(u"Opens the account settings dialogue"),
|
2022-12-20 13:02:27 -06:00
|
|
|
"audio": _(u"Try to play a media file"),
|
2021-06-16 16:18:41 -05:00
|
|
|
"update_buffer": _(u"Updates the buffer and retrieves possible lost items there."),
|
2022-12-20 13:02:27 -06:00
|
|
|
# "ocr_image": _(u"Extracts the text from a picture and displays the result in a dialog."),
|
|
|
|
# "add_alias": _("Adds an alias to an user"),
|
|
|
|
}
|