NeoMutt  2024-12-12-14-g7b49f7
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
opcodes.h
Go to the documentation of this file.
1
25#ifndef MUTT_OPCODES_H
26#define MUTT_OPCODES_H
27
28#include "config.h"
29#include "mutt/lib.h"
30
31const char *opcodes_get_description(int op);
32const char *opcodes_get_name (int op);
33
34#define OP_REPAINT -4
35#define OP_PARTIAL_KEY -3
36#define OP_TIMEOUT -2
37#define OP_ABORT -1
38
39// clang-format off
40#define OPS_ATTACHMENT(_fmt) \
41 /* L10N: Help screen description for OP_ATTACHMENT_ATTACH_FILE */ \
42 /* Compose Dialog: <op_attachment_attach_file> */ \
43 _fmt(OP_ATTACHMENT_ATTACH_FILE, N_("attach files to this message")) \
44 /* L10N: Help screen description for OP_ATTACHMENT_ATTACH_MESSAGE */ \
45 /* Compose Dialog: <op_attachment_attach_message> */ \
46 _fmt(OP_ATTACHMENT_ATTACH_MESSAGE, N_("attach messages to this message")) \
47 /* L10N: Help screen description for OP_ATTACHMENT_ATTACH_NEWS_MESSAGE */ \
48 /* Compose Dialog: <op_attachment_attach_message> */ \
49 _fmt(OP_ATTACHMENT_ATTACH_NEWS_MESSAGE, N_("attach news articles to this message")) \
50 /* L10N: Help screen description for OP_ATTACHMENT_COLLAPSE */ \
51 /* Attach Dialog: <op_attachment_collapse> */ \
52 _fmt(OP_ATTACHMENT_COLLAPSE, N_("toggle display of subparts")) \
53 /* L10N: Help screen description for OP_ATTACHMENT_DELETE */ \
54 /* Attach Dialog: <op_attachment_delete> */ \
55 _fmt(OP_ATTACHMENT_DELETE, N_("delete the current entry")) \
56 /* L10N: Help screen description for OP_ATTACHMENT_DETACH */ \
57 /* Compose Dialog: <op_attachment_detach> */ \
58 _fmt(OP_ATTACHMENT_DETACH, N_("delete the current entry")) \
59 /* L10N: Help screen description for OP_ATTACHMENT_EDIT_CONTENT_ID */ \
60 /* Compose Dialog: <op_attachment_edit_content_id> */ \
61 _fmt(OP_ATTACHMENT_EDIT_CONTENT_ID, N_("edit the 'Content-ID' of the attachment")) \
62 /* L10N: Help screen description for OP_ATTACHMENT_EDIT_DESCRIPTION */ \
63 /* Compose Dialog: <op_attachment_edit_description> */ \
64 _fmt(OP_ATTACHMENT_EDIT_DESCRIPTION, N_("edit attachment description")) \
65 /* L10N: Help screen description for OP_ATTACHMENT_EDIT_ENCODING */ \
66 /* Compose Dialog: <op_attachment_edit_encoding> */ \
67 _fmt(OP_ATTACHMENT_EDIT_ENCODING, N_("edit attachment transfer-encoding")) \
68 /* L10N: Help screen description for OP_ATTACHMENT_EDIT_LANGUAGE */ \
69 /* Compose Dialog: <op_attachment_edit_language> */ \
70 _fmt(OP_ATTACHMENT_EDIT_LANGUAGE, N_("edit the 'Content-Language' of the attachment")) \
71 /* L10N: Help screen description for OP_ATTACHMENT_EDIT_MIME */ \
72 /* Compose Dialog: <op_attachment_edit_mime> */ \
73 _fmt(OP_ATTACHMENT_EDIT_MIME, N_("edit attachment using mailcap entry")) \
74 /* L10N: Help screen description for OP_ATTACHMENT_EDIT_TYPE */ \
75 /* Attach Dialog: <op_attachment_edit_type> */ \
76 /* Compose Dialog: <op_attachment_edit_type> */ \
77 /* Index: <op_attachment_edit_type> */ \
78 _fmt(OP_ATTACHMENT_EDIT_TYPE, N_("edit attachment content type")) \
79 /* L10N: Help screen description for OP_ATTACHMENT_FILTER */ \
80 /* Compose Dialog: <op_attachment_filter> */ \
81 _fmt(OP_ATTACHMENT_FILTER, N_("filter attachment through a shell command")) \
82 /* L10N: Help screen description for OP_ATTACHMENT_GET_ATTACHMENT */ \
83 /* Compose Dialog: <op_attachment_get_attachment> */ \
84 _fmt(OP_ATTACHMENT_GET_ATTACHMENT, N_("get a temporary copy of an attachment")) \
85 /* L10N: Help screen description for OP_ATTACHMENT_GROUP_ALTS */ \
86 /* Compose Dialog: <op_attachment_group_alts> */ \
87 _fmt(OP_ATTACHMENT_GROUP_ALTS, N_("group tagged attachments as 'multipart/alternative'")) \
88 /* L10N: Help screen description for OP_ATTACHMENT_GROUP_LINGUAL */ \
89 /* Compose Dialog: <op_attachment_group_lingual> */ \
90 _fmt(OP_ATTACHMENT_GROUP_LINGUAL, N_("group tagged attachments as 'multipart/multilingual'")) \
91 /* L10N: Help screen description for OP_ATTACHMENT_GROUP_RELATED */ \
92 /* Compose Dialog: <op_attachment_group_related> */ \
93 _fmt(OP_ATTACHMENT_GROUP_RELATED, N_("group tagged attachments as 'multipart/related'")) \
94 /* L10N: Help screen description for OP_ATTACHMENT_MOVE_DOWN */ \
95 /* Compose Dialog: <op_attachment_move_down> */ \
96 _fmt(OP_ATTACHMENT_MOVE_DOWN, N_("move an attachment down in the attachment list")) \
97 /* L10N: Help screen description for OP_ATTACHMENT_MOVE_UP */ \
98 /* Compose Dialog: <op_attachment_move_up> */ \
99 _fmt(OP_ATTACHMENT_MOVE_UP, N_("move an attachment up in the attachment list")) \
100 /* L10N: Help screen description for OP_ATTACHMENT_NEW_MIME */ \
101 /* Compose Dialog: <op_attachment_new_mime> */ \
102 _fmt(OP_ATTACHMENT_NEW_MIME, N_("compose new attachment using mailcap entry")) \
103 /* L10N: Help screen description for OP_ATTACHMENT_PIPE */ \
104 _fmt(OP_ATTACHMENT_PIPE, N_("pipe message/attachment to a shell command")) \
105 /* L10N: Help screen description for OP_ATTACHMENT_PRINT */ \
106 /* Attach Dialog: <op_attachment_print> */ \
107 /* Compose Dialog: <op_attachment_print> */ \
108 _fmt(OP_ATTACHMENT_PRINT, N_("print the current entry")) \
109 /* L10N: Help screen description for OP_ATTACHMENT_RENAME_ATTACHMENT */ \
110 /* Compose Dialog: <op_attachment_rename_attachment> */ \
111 _fmt(OP_ATTACHMENT_RENAME_ATTACHMENT, N_("send attachment with a different name")) \
112 /* L10N: Help screen description for OP_ATTACHMENT_SAVE */ \
113 /* Attach Dialog: <op_attachment_save> */ \
114 /* Compose Dialog: <op_attachment_save> */ \
115 _fmt(OP_ATTACHMENT_SAVE, N_("save message/attachment to a mailbox/file")) \
116 /* L10N: Help screen description for OP_ATTACHMENT_TOGGLE_DISPOSITION */ \
117 /* Compose Dialog: <op_attachment_toggle_disposition> */ \
118 _fmt(OP_ATTACHMENT_TOGGLE_DISPOSITION, N_("toggle disposition between inline/attachment")) \
119 /* L10N: Help screen description for OP_ATTACHMENT_TOGGLE_RECODE */ \
120 /* Compose Dialog: <op_attachment_toggle_recode> */ \
121 _fmt(OP_ATTACHMENT_TOGGLE_RECODE, N_("toggle recoding of this attachment")) \
122 /* L10N: Help screen description for OP_ATTACHMENT_TOGGLE_UNLINK */ \
123 /* Compose Dialog: <op_attachment_toggle_unlink> */ \
124 _fmt(OP_ATTACHMENT_TOGGLE_UNLINK, N_("toggle whether to delete file after sending it")) \
125 /* L10N: Help screen description for OP_ATTACHMENT_UNDELETE */ \
126 /* Attach Dialog: <op_attachment_undelete> */ \
127 _fmt(OP_ATTACHMENT_UNDELETE, N_("undelete the current entry")) \
128 /* L10N: Help screen description for OP_ATTACHMENT_UNGROUP */ \
129 /* Compose Dialog: <op_attachment_ungroup> */ \
130 _fmt(OP_ATTACHMENT_UNGROUP, N_("ungroup 'multipart' attachment")) \
131 /* L10N: Help screen description for OP_ATTACHMENT_UPDATE_ENCODING */ \
132 /* Compose Dialog: <op_attachment_update_encoding> */ \
133 _fmt(OP_ATTACHMENT_UPDATE_ENCODING, N_("update an attachment's encoding info")) \
134 /* L10N: Help screen description for OP_ATTACHMENT_VIEW */ \
135 /* Attach Dialog: <op_attachment_view> */ \
136 /* Compose Dialog: <op_display_headers> */ \
137 _fmt(OP_ATTACHMENT_VIEW, N_("view attachment using mailcap entry if necessary")) \
138 /* L10N: Help screen description for OP_ATTACHMENT_VIEW_MAILCAP */ \
139 /* Attach Dialog: <op_attachment_view_mailcap> */ \
140 /* Compose Dialog: <op_display_headers> */ \
141 _fmt(OP_ATTACHMENT_VIEW_MAILCAP, N_("force viewing of attachment using mailcap")) \
142 /* L10N: Help screen description for OP_ATTACHMENT_VIEW_PAGER */ \
143 /* Attach Dialog: <op_attachment_view_pager> */ \
144 /* Compose Dialog: <op_display_headers> */ \
145 _fmt(OP_ATTACHMENT_VIEW_PAGER, N_("view attachment in pager using copiousoutput mailcap")) \
146 /* L10N: Help screen description for OP_ATTACHMENT_VIEW_TEXT */ \
147 /* Attach Dialog: <op_attachment_view_text> */ \
148 /* Compose Dialog: <op_display_headers> */ \
149 _fmt(OP_ATTACHMENT_VIEW_TEXT, N_("view attachment as text")) \
150 /* L10N: Help screen description for OP_PREVIEW_PAGE_DOWN */ \
151 /* Compose Dialog: <op_preview_page_down> */ \
152 _fmt(OP_PREVIEW_PAGE_DOWN, N_("show the next page of the message")) \
153 /* L10N: Help screen description for OP_PREVIEW_PAGE_UP */ \
154 /* Compose Dialog: <op_preview_page_up> */ \
155 _fmt(OP_PREVIEW_PAGE_UP, N_("show the previous page of the message")) \
156
157#ifdef USE_AUTOCRYPT
158#define OPS_AUTOCRYPT(_fmt) \
159 /* L10N: Help screen description for OP_AUTOCRYPT_ACCT_MENU */ \
160 /* Index: <op_autocrypt_acct_menu> */ \
161 _fmt(OP_AUTOCRYPT_ACCT_MENU, N_("manage autocrypt accounts")) \
162 /* L10N: Help screen description for OP_AUTOCRYPT_CREATE_ACCT */ \
163 /* Autocrypt Dialog: <op_autocrypt_create_acct> */ \
164 _fmt(OP_AUTOCRYPT_CREATE_ACCT, N_("create a new autocrypt account")) \
165 /* L10N: Help screen description for OP_AUTOCRYPT_DELETE_ACCT */ \
166 /* Autocrypt Dialog: <op_autocrypt_delete_acct> */ \
167 _fmt(OP_AUTOCRYPT_DELETE_ACCT, N_("delete the current account")) \
168 /* L10N: Help screen description for OP_AUTOCRYPT_TOGGLE_ACTIVE */ \
169 /* Autocrypt Dialog: <op_autocrypt_toggle_active> */ \
170 _fmt(OP_AUTOCRYPT_TOGGLE_ACTIVE, N_("toggle the current account active/inactive")) \
171 /* L10N: Help screen description for OP_AUTOCRYPT_TOGGLE_PREFER */ \
172 /* Autocrypt Dialog: <op_autocrypt_toggle_prefer> */ \
173 _fmt(OP_AUTOCRYPT_TOGGLE_PREFER, N_("toggle the current account prefer-encrypt flag")) \
174 /* L10N: Help screen description for OP_COMPOSE_AUTOCRYPT_MENU */ \
175 /* Envelope Window: <op_compose_autocrypt_menu> */ \
176 _fmt(OP_COMPOSE_AUTOCRYPT_MENU, N_("show autocrypt compose menu options"))
177#else
178#define OPS_AUTOCRYPT(_)
179#endif
180
181#define OPS_CORE(_fmt) \
182 /* L10N: Help screen description for OP_ALIAS_DIALOG */ \
183 /* Index: <op_alias_dialog> */ \
184 _fmt(OP_ALIAS_DIALOG, N_("open the aliases dialog")) \
185 /* L10N: Help screen description for OP_BOTTOM_PAGE */ \
186 /* Menu: <menu_movement> */ \
187 _fmt(OP_BOTTOM_PAGE, N_("move to the bottom of the page")) \
188 /* L10N: Help screen description for OP_BOUNCE_MESSAGE */ \
189 /* Attach Dialog: <op_bounce_message> */ \
190 /* Index: <op_bounce_message> */ \
191 _fmt(OP_BOUNCE_MESSAGE, N_("remail a message to another user")) \
192 /* L10N: Help screen description for OP_BROWSER_GOTO_FOLDER */ \
193 /* Browser: <op_toggle_mailboxes> */ \
194 _fmt(OP_BROWSER_GOTO_FOLDER, N_("swap the current folder position with $folder if it exists")) \
195 /* L10N: Help screen description for OP_BROWSER_NEW_FILE */ \
196 /* Browser: <op_browser_new_file> */ \
197 _fmt(OP_BROWSER_NEW_FILE, N_("select a new file in this directory")) \
198 /* L10N: Help screen description for OP_BROWSER_SUBSCRIBE */ \
199 /* Browser: <op_browser_subscribe> */ \
200 _fmt(OP_BROWSER_SUBSCRIBE, N_("subscribe to current mbox (IMAP/NNTP only)")) \
201 /* L10N: Help screen description for OP_BROWSER_TELL */ \
202 /* Browser: <op_browser_tell> */ \
203 _fmt(OP_BROWSER_TELL, N_("display the currently selected file's name")) \
204 /* L10N: Help screen description for OP_BROWSER_TOGGLE_LSUB */ \
205 /* Browser: <op_browser_toggle_lsub> */ \
206 _fmt(OP_BROWSER_TOGGLE_LSUB, N_("toggle view all/subscribed mailboxes (IMAP only)")) \
207 /* L10N: Help screen description for OP_BROWSER_UNSUBSCRIBE */ \
208 /* Browser: <op_browser_subscribe> */ \
209 _fmt(OP_BROWSER_UNSUBSCRIBE, N_("unsubscribe from current mbox (IMAP/NNTP only)")) \
210 /* L10N: Help screen description for OP_BROWSER_VIEW_FILE */ \
211 /* Browser: <op_browser_view_file> */ \
212 _fmt(OP_BROWSER_VIEW_FILE, N_("view file")) \
213 /* L10N: Help screen description for OP_CATCHUP */ \
214 /* Browser: <op_catchup> */ \
215 /* Index: <op_catchup> */ \
216 _fmt(OP_CATCHUP, N_("mark all articles in newsgroup as read")) \
217 /* L10N: Help screen description for OP_CHANGE_DIRECTORY */ \
218 /* Browser: <op_change_directory> */ \
219 _fmt(OP_CHANGE_DIRECTORY, N_("change directories")) \
220 /* L10N: Help screen description for OP_CHECK_NEW */ \
221 /* Browser: <op_toggle_mailboxes> */ \
222 _fmt(OP_CHECK_NEW, N_("check mailboxes for new mail")) \
223 /* L10N: Help screen description for OP_CHECK_STATS */ \
224 /* Global: <op_check_stats> */ \
225 _fmt(OP_CHECK_STATS, N_("calculate message statistics for all mailboxes")) \
226 /* L10N: Help screen description for OP_COMPOSE_EDIT_FILE */ \
227 /* Compose Dialog: <op_compose_edit_file> */ \
228 _fmt(OP_COMPOSE_EDIT_FILE, N_("edit the file to be attached")) \
229 /* L10N: Help screen description for OP_COMPOSE_EDIT_MESSAGE */ \
230 /* Compose Dialog: <op_compose_edit_message> */ \
231 _fmt(OP_COMPOSE_EDIT_MESSAGE, N_("edit the message")) \
232 /* L10N: Help screen description for OP_COMPOSE_ISPELL */ \
233 /* Compose Dialog: <op_compose_ispell> */ \
234 _fmt(OP_COMPOSE_ISPELL, N_("run ispell on the message")) \
235 /* L10N: Help screen description for OP_COMPOSE_POSTPONE_MESSAGE */ \
236 /* Compose Dialog: <op_compose_postpone_message> */ \
237 _fmt(OP_COMPOSE_POSTPONE_MESSAGE, N_("save this message to send later")) \
238 /* L10N: Help screen description for OP_COMPOSE_RENAME_FILE */ \
239 /* Compose Dialog: <op_compose_rename_file> */ \
240 _fmt(OP_COMPOSE_RENAME_FILE, N_("rename/move an attached file")) \
241 /* L10N: Help screen description for OP_COMPOSE_SEND_MESSAGE */ \
242 /* Compose Dialog: <op_compose_send_message> */ \
243 _fmt(OP_COMPOSE_SEND_MESSAGE, N_("send the message")) \
244 /* L10N: Help screen description for OP_COMPOSE_TO_SENDER */ \
245 /* Attach Dialog: <op_compose_to_sender> */ \
246 /* Index: <op_compose_to_sender> */ \
247 _fmt(OP_COMPOSE_TO_SENDER, N_("compose new message to the current message sender")) \
248 /* L10N: Help screen description for OP_COMPOSE_WRITE_MESSAGE */ \
249 /* Compose Dialog: <op_compose_write_message> */ \
250 _fmt(OP_COMPOSE_WRITE_MESSAGE, N_("write the message to a folder")) \
251 /* L10N: Help screen description for OP_COPY_MESSAGE */ \
252 /* Index: <op_save> */ \
253 _fmt(OP_COPY_MESSAGE, N_("copy a message to a file/mailbox")) \
254 /* L10N: Help screen description for OP_CREATE_ALIAS */ \
255 /* Alias Dialog: <op_create_alias> */ \
256 /* Index: <op_create_alias> */ \
257 _fmt(OP_CREATE_ALIAS, N_("create an alias from a message sender")) \
258 /* L10N: Help screen description for OP_CREATE_MAILBOX */ \
259 /* Browser: <op_create_mailbox> */ \
260 _fmt(OP_CREATE_MAILBOX, N_("create a new mailbox (IMAP only)")) \
261 /* L10N: Help screen description for OP_CURRENT_BOTTOM */ \
262 /* Menu: <menu_movement> */ \
263 _fmt(OP_CURRENT_BOTTOM, N_("move entry to bottom of screen")) \
264 /* L10N: Help screen description for OP_CURRENT_MIDDLE */ \
265 /* Menu: <menu_movement> */ \
266 _fmt(OP_CURRENT_MIDDLE, N_("move entry to middle of screen")) \
267 /* L10N: Help screen description for OP_CURRENT_TOP */ \
268 /* Menu: <menu_movement> */ \
269 _fmt(OP_CURRENT_TOP, N_("move entry to top of screen")) \
270 /* L10N: Help screen description for OP_DECODE_COPY */ \
271 /* Index: <op_save> */ \
272 _fmt(OP_DECODE_COPY, N_("make decoded (text/plain) copy")) \
273 /* L10N: Help screen description for OP_DECODE_SAVE */ \
274 /* Index: <op_save> */ \
275 _fmt(OP_DECODE_SAVE, N_("make decoded copy (text/plain) and delete")) \
276 /* L10N: Help screen description for OP_DELETE */ \
277 /* Alias Dialog: <op_delete> */ \
278 /* Index: <op_delete> */ \
279 /* Postponed Dialog: <op_delete> */ \
280 _fmt(OP_DELETE, N_("delete the current entry")) \
281 /* L10N: Help screen description for OP_DELETE_MAILBOX */ \
282 /* Browser: <op_delete_mailbox> */ \
283 _fmt(OP_DELETE_MAILBOX, N_("delete the current mailbox (IMAP only)")) \
284 /* L10N: Help screen description for OP_DELETE_SUBTHREAD */ \
285 /* Index: <op_delete_thread> */ \
286 _fmt(OP_DELETE_SUBTHREAD, N_("delete all messages in subthread")) \
287 /* L10N: Help screen description for OP_DELETE_THREAD */ \
288 /* Index: <op_delete_thread> */ \
289 _fmt(OP_DELETE_THREAD, N_("delete all messages in thread")) \
290 /* L10N: Help screen description for OP_DESCEND_DIRECTORY */ \
291 /* Browser: <op_generic_select_entry> */ \
292 _fmt(OP_DESCEND_DIRECTORY, N_("descend into a directory")) \
293 /* L10N: Help screen description for OP_DISPLAY_ADDRESS */ \
294 /* Index: <op_display_address> */ \
295 _fmt(OP_DISPLAY_ADDRESS, N_("display full address of sender")) \
296 /* L10N: Help screen description for OP_DISPLAY_HEADERS */ \
297 /* Attach Dialog: <op_attachment_view> */ \
298 /* Compose Dialog: <op_display_headers> */ \
299 /* Index: <op_display_message> */ \
300 _fmt(OP_DISPLAY_HEADERS, N_("display message and toggle header weeding")) \
301 /* L10N: Help screen description for OP_DISPLAY_MESSAGE */ \
302 /* Index: <op_display_message> */ \
303 _fmt(OP_DISPLAY_MESSAGE, N_("display a message")) \
304 /* L10N: Help screen description for OP_EDITOR_BACKSPACE */ \
305 /* Text Entry: <op_editor_backspace> */ \
306 _fmt(OP_EDITOR_BACKSPACE, N_("delete the char in front of the cursor")) \
307 /* L10N: Help screen description for OP_EDITOR_BACKWARD_CHAR */ \
308 /* Text Entry: <op_editor_backward_char> */ \
309 _fmt(OP_EDITOR_BACKWARD_CHAR, N_("move the cursor one character to the left")) \
310 /* L10N: Help screen description for OP_EDITOR_BACKWARD_WORD */ \
311 /* Text Entry: <op_editor_backward_word> */ \
312 _fmt(OP_EDITOR_BACKWARD_WORD, N_("move the cursor to the beginning of the word")) \
313 /* L10N: Help screen description for OP_EDITOR_BOL */ \
314 /* Text Entry: <op_editor_bol> */ \
315 _fmt(OP_EDITOR_BOL, N_("jump to the beginning of the line")) \
316 /* L10N: Help screen description for OP_EDITOR_CAPITALIZE_WORD */ \
317 /* Text Entry: <op_editor_capitalize_word> */ \
318 _fmt(OP_EDITOR_CAPITALIZE_WORD, N_("capitalize the word")) \
319 /* L10N: Help screen description for OP_EDITOR_COMPLETE */ \
320 /* Text Entry: <op_editor_complete> */ \
321 _fmt(OP_EDITOR_COMPLETE, N_("complete filename or alias")) \
322 /* L10N: Help screen description for OP_EDITOR_COMPLETE_QUERY */ \
323 /* Text Entry: <op_editor_complete> */ \
324 _fmt(OP_EDITOR_COMPLETE_QUERY, N_("complete address with query")) \
325 /* L10N: Help screen description for OP_EDITOR_DELETE_CHAR */ \
326 /* Text Entry: <op_editor_delete_char> */ \
327 _fmt(OP_EDITOR_DELETE_CHAR, N_("delete the char under the cursor")) \
328 /* L10N: Help screen description for OP_EDITOR_DOWNCASE_WORD */ \
329 /* Text Entry: <op_editor_capitalize_word> */ \
330 _fmt(OP_EDITOR_DOWNCASE_WORD, N_("convert the word to lower case")) \
331 /* L10N: Help screen description for OP_EDITOR_EOL */ \
332 /* Text Entry: <op_editor_eol> */ \
333 _fmt(OP_EDITOR_EOL, N_("jump to the end of the line")) \
334 /* L10N: Help screen description for OP_EDITOR_FORWARD_CHAR */ \
335 /* Text Entry: <op_editor_forward_char> */ \
336 _fmt(OP_EDITOR_FORWARD_CHAR, N_("move the cursor one character to the right")) \
337 /* L10N: Help screen description for OP_EDITOR_FORWARD_WORD */ \
338 /* Text Entry: <op_editor_forward_word> */ \
339 _fmt(OP_EDITOR_FORWARD_WORD, N_("move the cursor to the end of the word")) \
340 /* L10N: Help screen description for OP_EDITOR_HISTORY_DOWN */ \
341 /* Text Entry: <op_editor_history_down> */ \
342 _fmt(OP_EDITOR_HISTORY_DOWN, N_("scroll down through the history list")) \
343 /* L10N: Help screen description for OP_EDITOR_HISTORY_SEARCH */ \
344 /* Text Entry: <op_editor_history_search> */ \
345 _fmt(OP_EDITOR_HISTORY_SEARCH, N_("search through the history list")) \
346 /* L10N: Help screen description for OP_EDITOR_HISTORY_UP */ \
347 /* Text Entry: <op_editor_history_up> */ \
348 _fmt(OP_EDITOR_HISTORY_UP, N_("scroll up through the history list")) \
349 /* L10N: Help screen description for OP_EDITOR_KILL_EOL */ \
350 /* Text Entry: <op_editor_kill_eol> */ \
351 _fmt(OP_EDITOR_KILL_EOL, N_("delete chars from cursor to end of line")) \
352 /* L10N: Help screen description for OP_EDITOR_KILL_EOW */ \
353 /* Text Entry: <op_editor_kill_eow> */ \
354 _fmt(OP_EDITOR_KILL_EOW, N_("delete chars from the cursor to the end of the word")) \
355 /* L10N: Help screen description for OP_EDITOR_KILL_LINE */ \
356 /* Text Entry: <op_editor_kill_line> */ \
357 _fmt(OP_EDITOR_KILL_LINE, N_("delete chars from cursor to beginning the line")) \
358 /* L10N: Help screen description for OP_EDITOR_KILL_WHOLE_LINE */ \
359 /* Text Entry: <op_editor_kill_whole_line> */ \
360 _fmt(OP_EDITOR_KILL_WHOLE_LINE, N_("delete all chars on the line")) \
361 /* L10N: Help screen description for OP_EDITOR_KILL_WORD */ \
362 /* Text Entry: <op_editor_kill_word> */ \
363 _fmt(OP_EDITOR_KILL_WORD, N_("delete the word in front of the cursor")) \
364 /* L10N: Help screen description for OP_EDITOR_MAILBOX_CYCLE */ \
365 /* Text Entry: <op_editor_complete> */ \
366 _fmt(OP_EDITOR_MAILBOX_CYCLE, N_("cycle among incoming mailboxes")) \
367 /* L10N: Help screen description for OP_EDITOR_QUOTE_CHAR */ \
368 /* Text Entry: <op_editor_quote_char> */ \
369 _fmt(OP_EDITOR_QUOTE_CHAR, N_("quote the next typed key")) \
370 /* L10N: Help screen description for OP_EDITOR_TRANSPOSE_CHARS */ \
371 /* Text Entry: <op_editor_transpose_chars> */ \
372 _fmt(OP_EDITOR_TRANSPOSE_CHARS, N_("transpose character under cursor with previous")) \
373 /* L10N: Help screen description for OP_EDITOR_UPCASE_WORD */ \
374 /* Text Entry: <op_editor_capitalize_word> */ \
375 _fmt(OP_EDITOR_UPCASE_WORD, N_("convert the word to upper case")) \
376 /* L10N: Help screen description for OP_EDIT_LABEL */ \
377 /* Index: <op_edit_label> */ \
378 _fmt(OP_EDIT_LABEL, N_("add, change, or delete a message's label")) \
379 /* L10N: Help screen description for OP_EDIT_OR_VIEW_RAW_MESSAGE */ \
380 /* Index: <op_edit_raw_message> */ \
381 _fmt(OP_EDIT_OR_VIEW_RAW_MESSAGE, N_("edit the raw message if the mailbox is not read-only, otherwise view it")) \
382 /* L10N: Help screen description for OP_EDIT_RAW_MESSAGE */ \
383 /* Index: <op_edit_raw_message> */ \
384 _fmt(OP_EDIT_RAW_MESSAGE, N_("edit the raw message (edit and edit-raw-message are synonyms)")) \
385 /* L10N: Help screen description for OP_END_COND */ \
386 /* Index: <op_end_cond> */ \
387 _fmt(OP_END_COND, N_("end of conditional execution (noop)")) \
388 /* L10N: Help screen description for OP_ENTER_COMMAND */ \
389 /* Global: <op_enter_command> */ \
390 _fmt(OP_ENTER_COMMAND, N_("enter a neomuttrc command")) \
391 /* L10N: Help screen description for OP_ENTER_MASK */ \
392 /* Browser: <op_enter_mask> */ \
393 _fmt(OP_ENTER_MASK, N_("enter a file mask")) \
394 /* L10N: Help screen description for OP_EXIT */ \
395 /* Alias Dialog: <op_exit> */ \
396 /* Attach Dialog: <op_exit> */ \
397 /* Autocrypt Dialog: <op_exit> */ \
398 /* Browser: <op_exit> */ \
399 /* Compose Dialog: <op_exit> */ \
400 /* GPGME Key Selection Dialog: <op_exit> */ \
401 /* Index: <op_exit> */ \
402 /* Pager: <op_exit> */ \
403 /* PGP Key Selection Dialog: <op_exit> */ \
404 /* Postponed Dialog: <op_exit> */ \
405 /* Smime Key Selection Dialog: <op_exit> */ \
406 _fmt(OP_EXIT, N_("exit this menu")) \
407 /* L10N: Help screen description for OP_FIRST_ENTRY */ \
408 /* Menu: <menu_movement> */ \
409 _fmt(OP_FIRST_ENTRY, N_("move to the first entry")) \
410 /* L10N: Help screen description for OP_FLAG_MESSAGE */ \
411 /* Index: <op_flag_message> */ \
412 _fmt(OP_FLAG_MESSAGE, N_("toggle a message's 'important' flag")) \
413 /* L10N: Help screen description for OP_FOLLOWUP */ \
414 /* Attach Dialog: <op_followup> */ \
415 /* Index: <op_post> */ \
416 _fmt(OP_FOLLOWUP, N_("followup to newsgroup")) \
417 /* L10N: Help screen description for OP_FORWARD_MESSAGE */ \
418 /* Attach Dialog: <op_forward_message> */ \
419 /* Index: <op_forward_message> */ \
420 _fmt(OP_FORWARD_MESSAGE, N_("forward a message with comments")) \
421 /* L10N: Help screen description for OP_FORWARD_TO_GROUP */ \
422 /* Attach Dialog: <op_forward_to_group> */ \
423 /* Index: <op_post> */ \
424 _fmt(OP_FORWARD_TO_GROUP, N_("forward to newsgroup")) \
425 /* L10N: Help screen description for OP_GENERIC_SELECT_ENTRY */ \
426 /* Alias Dialog: <op_generic_select_entry> */ \
427 /* Browser: <op_generic_select_entry> */ \
428 /* GPGME Key Selection Dialog: <op_generic_select_entry> */ \
429 /* History Dialog: <op_generic_select_entry> */ \
430 /* Pattern Dialog: <op_generic_select_entry> */ \
431 /* PGP Key Selection Dialog: <op_generic_select_entry> */ \
432 /* Postponed Dialog: <op_generic_select_entry> */ \
433 /* Smime Key Selection Dialog: <op_generic_select_entry> */ \
434 _fmt(OP_GENERIC_SELECT_ENTRY, N_("select the current entry")) \
435 /* L10N: Help screen description for OP_GET_CHILDREN */ \
436 /* Index: <op_get_children> */ \
437 _fmt(OP_GET_CHILDREN, N_("get all children of the current message")) \
438 /* L10N: Help screen description for OP_GET_MESSAGE */ \
439 /* Index: <op_get_message> */ \
440 _fmt(OP_GET_MESSAGE, N_("get message with Message-Id")) \
441 /* L10N: Help screen description for OP_GET_PARENT */ \
442 /* Index: <op_get_message> */ \
443 _fmt(OP_GET_PARENT, N_("get parent of the current message")) \
444 /* L10N: Help screen description for OP_GOTO_PARENT */ \
445 /* Browser: <op_change_directory> */ \
446 _fmt(OP_GOTO_PARENT, N_("go to parent directory")) \
447 /* L10N: Help screen description for OP_GROUP_CHAT_REPLY */ \
448 /* Index: <op_group_reply> */ \
449 /* Attach Dialog: <op_reply> */ \
450 _fmt(OP_GROUP_CHAT_REPLY, N_("reply to all recipients preserving To/Cc")) \
451 /* L10N: Help screen description for OP_GROUP_REPLY */ \
452 /* Index: <op_group_reply> */ \
453 /* Attach Dialog: <op_reply> */ \
454 _fmt(OP_GROUP_REPLY, N_("reply to all recipients")) \
455 /* L10N: Help screen description for OP_HALF_DOWN */ \
456 /* Menu: <menu_movement> */ \
457 /* Pager: <op_pager_half_down> */ \
458 _fmt(OP_HALF_DOWN, N_("scroll down 1/2 page")) \
459 /* L10N: Help screen description for OP_HALF_UP */ \
460 /* Menu: <menu_movement> */ \
461 /* Pager: <op_pager_half_up> */ \
462 _fmt(OP_HALF_UP, N_("scroll up 1/2 page")) \
463 /* L10N: Help screen description for OP_HELP */ \
464 /* Text Entry: <op_help> */ \
465 /* Menu: <op_help> */ \
466 /* Pager: <op_help> */ \
467 _fmt(OP_HELP, N_("this screen")) \
468 /* L10N: Help screen description for OP_JUMP */ \
469 /* Index: <op_jump> */ \
470 /* Menu: <op_jump> */ \
471 _fmt(OP_JUMP, N_("jump to an index number")) \
472 _fmt(OP_JUMP_1, N_("jump to an index number")) \
473 _fmt(OP_JUMP_2, N_("jump to an index number")) \
474 _fmt(OP_JUMP_3, N_("jump to an index number")) \
475 _fmt(OP_JUMP_4, N_("jump to an index number")) \
476 _fmt(OP_JUMP_5, N_("jump to an index number")) \
477 _fmt(OP_JUMP_6, N_("jump to an index number")) \
478 _fmt(OP_JUMP_7, N_("jump to an index number")) \
479 _fmt(OP_JUMP_8, N_("jump to an index number")) \
480 _fmt(OP_JUMP_9, N_("jump to an index number")) \
481 /* L10N: Help screen description for OP_LAST_ENTRY */ \
482 /* Menu: <menu_movement> */ \
483 _fmt(OP_LAST_ENTRY, N_("move to the last entry")) \
484 /* L10N: Help screen description for OP_LIMIT_CURRENT_THREAD */ \
485 /* Index: <op_main_limit> */ \
486 _fmt(OP_LIMIT_CURRENT_THREAD, N_("limit view to current thread")) \
487 /* L10N: Help screen description for OP_LIST_REPLY */ \
488 /* Index: <op_list_reply> */ \
489 /* Attach Dialog: <op_reply> */ \
490 _fmt(OP_LIST_REPLY, N_("reply to specified mailing list")) \
491 /* L10N: Help screen description for OP_LIST_SUBSCRIBE */ \
492 /* Attach Dialog: <op_list_subscribe> */ \
493 /* Index: <op_list_subscribe> */ \
494 _fmt(OP_LIST_SUBSCRIBE, N_("subscribe to a mailing list")) \
495 /* L10N: Help screen description for OP_LIST_UNSUBSCRIBE */ \
496 /* Attach Dialog: <op_list_unsubscribe> */ \
497 /* Index: <op_list_unsubscribe> */ \
498 _fmt(OP_LIST_UNSUBSCRIBE, N_("unsubscribe from a mailing list")) \
499 /* L10N: Help screen description for OP_LOAD_ACTIVE */ \
500 /* Browser: <op_load_active> */ \
501 _fmt(OP_LOAD_ACTIVE, N_("load list of all newsgroups from NNTP server")) \
502 /* L10N: Help screen description for OP_MACRO */ \
503 _fmt(OP_MACRO, N_("execute a macro")) \
504 /* L10N: Help screen description for OP_MAIL */ \
505 /* Alias Dialog: <op_generic_select_entry> */ \
506 /* Index: <op_mail> */ \
507 _fmt(OP_MAIL, N_("compose a new mail message")) \
508 /* L10N: Help screen description for OP_MAILBOX_LIST */ \
509 /* Browser: <op_mailbox_list> */ \
510 /* Index: <op_mailbox_list> */ \
511 _fmt(OP_MAILBOX_LIST, N_("list mailboxes with new mail")) \
512 /* L10N: Help screen description for OP_MAIN_BREAK_THREAD */ \
513 /* Index: <op_main_break_thread> */ \
514 _fmt(OP_MAIN_BREAK_THREAD, N_("break the thread in two")) \
515 /* L10N: Help screen description for OP_MAIN_CHANGE_FOLDER */ \
516 /* Index: <op_main_change_folder> */ \
517 _fmt(OP_MAIN_CHANGE_FOLDER, N_("open a different folder")) \
518 /* L10N: Help screen description for OP_MAIN_CHANGE_FOLDER_READONLY */ \
519 /* Index: <op_main_change_folder> */ \
520 _fmt(OP_MAIN_CHANGE_FOLDER_READONLY, N_("open a different folder in read only mode")) \
521 /* L10N: Help screen description for OP_MAIN_CHANGE_GROUP */ \
522 /* Index: <op_main_change_group> */ \
523 _fmt(OP_MAIN_CHANGE_GROUP, N_("open a different newsgroup")) \
524 /* L10N: Help screen description for OP_MAIN_CHANGE_GROUP_READONLY */ \
525 /* Index: <op_main_change_group> */ \
526 _fmt(OP_MAIN_CHANGE_GROUP_READONLY, N_("open a different newsgroup in read only mode")) \
527 /* L10N: Help screen description for OP_MAIN_CLEAR_FLAG */ \
528 /* Index: <op_main_set_flag> */ \
529 _fmt(OP_MAIN_CLEAR_FLAG, N_("clear a status flag from a message")) \
530 /* L10N: Help screen description for OP_MAIN_COLLAPSE_ALL */ \
531 /* Index: <op_main_collapse_all> */ \
532 _fmt(OP_MAIN_COLLAPSE_ALL, N_("collapse/uncollapse all threads")) \
533 /* L10N: Help screen description for OP_MAIN_COLLAPSE_THREAD */ \
534 /* Index: <op_main_collapse_thread> */ \
535 _fmt(OP_MAIN_COLLAPSE_THREAD, N_("collapse/uncollapse current thread")) \
536 /* L10N: Help screen description for OP_MAIN_DELETE_PATTERN */ \
537 /* Index: <op_main_delete_pattern> */ \
538 _fmt(OP_MAIN_DELETE_PATTERN, N_("delete non-hidden messages matching a pattern")) \
539 /* L10N: Help screen description for OP_MAIN_FETCH_MAIL */ \
540 /* Index: <op_main_fetch_mail> */ \
541 _fmt(OP_MAIN_FETCH_MAIL, N_("retrieve mail from POP server")) \
542 /* L10N: Help screen description for OP_MAIN_IMAP_FETCH */ \
543 /* Index: <op_main_imap_fetch> */ \
544 _fmt(OP_MAIN_IMAP_FETCH, N_("force retrieval of mail from IMAP server")) \
545 /* L10N: Help screen description for OP_MAIN_IMAP_LOGOUT_ALL */ \
546 /* Index: <op_main_imap_logout_all> */ \
547 _fmt(OP_MAIN_IMAP_LOGOUT_ALL, N_("logout from all IMAP servers")) \
548 /* L10N: Help screen description for OP_MAIN_LIMIT */ \
549 /* Alias Dialog: <op_main_limit> */ \
550 /* Index: <op_main_limit> */ \
551 _fmt(OP_MAIN_LIMIT, N_("show only messages matching a pattern")) \
552 /* L10N: Help screen description for OP_MAIN_LINK_THREADS */ \
553 /* Index: <op_main_link_threads> */ \
554 _fmt(OP_MAIN_LINK_THREADS, N_("link tagged message to the current one")) \
555 /* L10N: Help screen description for OP_MAIN_MODIFY_TAGS */ \
556 /* Index: <op_main_modify_tags> */ \
557 _fmt(OP_MAIN_MODIFY_TAGS, N_("modify (notmuch/imap) tags")) \
558 /* L10N: Help screen description for OP_MAIN_MODIFY_TAGS_THEN_HIDE */ \
559 /* Index: <op_main_modify_tags> */ \
560 _fmt(OP_MAIN_MODIFY_TAGS_THEN_HIDE, N_("modify (notmuch/imap) tags and then hide message")) \
561 /* L10N: Help screen description for OP_MAIN_NEXT_NEW */ \
562 /* Index: <op_main_next_new> */ \
563 _fmt(OP_MAIN_NEXT_NEW, N_("jump to the next new message")) \
564 /* L10N: Help screen description for OP_MAIN_NEXT_NEW_THEN_UNREAD */ \
565 /* Index: <op_main_next_new> */ \
566 _fmt(OP_MAIN_NEXT_NEW_THEN_UNREAD, N_("jump to the next new or unread message")) \
567 /* L10N: Help screen description for OP_MAIN_NEXT_SUBTHREAD */ \
568 /* Index: <op_main_next_thread> */ \
569 _fmt(OP_MAIN_NEXT_SUBTHREAD, N_("jump to the next subthread")) \
570 /* L10N: Help screen description for OP_MAIN_NEXT_THREAD */ \
571 /* Index: <op_main_next_thread> */ \
572 _fmt(OP_MAIN_NEXT_THREAD, N_("jump to the next thread")) \
573 /* L10N: Help screen description for OP_MAIN_NEXT_UNDELETED */ \
574 /* Index: <op_main_next_undeleted> */ \
575 _fmt(OP_MAIN_NEXT_UNDELETED, N_("move to the next undeleted message")) \
576 /* L10N: Help screen description for OP_MAIN_NEXT_UNREAD */ \
577 /* Index: <op_main_next_new> */ \
578 _fmt(OP_MAIN_NEXT_UNREAD, N_("jump to the next unread message")) \
579 /* L10N: Help screen description for OP_MAIN_NEXT_UNREAD_MAILBOX */ \
580 /* Index: <op_main_next_unread_mailbox> */ \
581 _fmt(OP_MAIN_NEXT_UNREAD_MAILBOX, N_("open next mailbox with new mail")) \
582 /* L10N: Help screen description for OP_MAIN_PARENT_MESSAGE */ \
583 /* Index: <op_main_root_message> */ \
584 _fmt(OP_MAIN_PARENT_MESSAGE, N_("jump to parent message in thread")) \
585 /* L10N: Help screen description for OP_MAIN_PREV_NEW */ \
586 /* Index: <op_main_next_new> */ \
587 _fmt(OP_MAIN_PREV_NEW, N_("jump to the previous new message")) \
588 /* L10N: Help screen description for OP_MAIN_PREV_NEW_THEN_UNREAD */ \
589 /* Index: <op_main_next_new> */ \
590 _fmt(OP_MAIN_PREV_NEW_THEN_UNREAD, N_("jump to the previous new or unread message")) \
591 /* L10N: Help screen description for OP_MAIN_PREV_SUBTHREAD */ \
592 /* Index: <op_main_next_thread> */ \
593 _fmt(OP_MAIN_PREV_SUBTHREAD, N_("jump to previous subthread")) \
594 /* L10N: Help screen description for OP_MAIN_PREV_THREAD */ \
595 /* Index: <op_main_next_thread> */ \
596 _fmt(OP_MAIN_PREV_THREAD, N_("jump to previous thread")) \
597 /* L10N: Help screen description for OP_MAIN_PREV_UNDELETED */ \
598 /* Index: <op_main_prev_undeleted> */ \
599 _fmt(OP_MAIN_PREV_UNDELETED, N_("move to the previous undeleted message")) \
600 /* L10N: Help screen description for OP_MAIN_PREV_UNREAD */ \
601 /* Index: <op_main_next_new> */ \
602 _fmt(OP_MAIN_PREV_UNREAD, N_("jump to the previous unread message")) \
603 /* L10N: Help screen description for OP_MAIN_QUASI_DELETE */ \
604 /* Index: <op_main_quasi_delete> */ \
605 _fmt(OP_MAIN_QUASI_DELETE, N_("delete from NeoMutt, don't touch on disk")) \
606 /* L10N: Help screen description for OP_MAIN_READ_SUBTHREAD */ \
607 /* Index: <op_main_read_thread> */ \
608 _fmt(OP_MAIN_READ_SUBTHREAD, N_("mark the current subthread as read")) \
609 /* L10N: Help screen description for OP_MAIN_READ_THREAD */ \
610 /* Index: <op_main_read_thread> */ \
611 _fmt(OP_MAIN_READ_THREAD, N_("mark the current thread as read")) \
612 /* L10N: Help screen description for OP_MAIN_ROOT_MESSAGE */ \
613 /* Index: <op_main_root_message> */ \
614 _fmt(OP_MAIN_ROOT_MESSAGE, N_("jump to root message in thread")) \
615 /* L10N: Help screen description for OP_MAIN_SET_FLAG */ \
616 /* Index: <op_main_set_flag> */ \
617 _fmt(OP_MAIN_SET_FLAG, N_("set a status flag on a message")) \
618 /* L10N: Help screen description for OP_MAIN_SHOW_LIMIT */ \
619 /* Index: <op_main_show_limit> */ \
620 _fmt(OP_MAIN_SHOW_LIMIT, N_("show currently active limit pattern")) \
621 /* L10N: Help screen description for OP_MAIN_SYNC_FOLDER */ \
622 /* Index: <op_main_sync_folder> */ \
623 _fmt(OP_MAIN_SYNC_FOLDER, N_("save changes to mailbox")) \
624 /* L10N: Help screen description for OP_MAIN_TAG_PATTERN */ \
625 /* Index: <op_main_tag_pattern> */ \
626 _fmt(OP_MAIN_TAG_PATTERN, N_("tag non-hidden messages matching a pattern")) \
627 /* L10N: Help screen description for OP_MAIN_UNDELETE_PATTERN */ \
628 /* Index: <op_main_undelete_pattern> */ \
629 _fmt(OP_MAIN_UNDELETE_PATTERN, N_("undelete non-hidden messages matching a pattern")) \
630 /* L10N: Help screen description for OP_MAIN_UNTAG_PATTERN */ \
631 /* Index: <op_main_untag_pattern> */ \
632 _fmt(OP_MAIN_UNTAG_PATTERN, N_("untag non-hidden messages matching a pattern")) \
633 /* L10N: Help screen description for OP_MARK_MSG */ \
634 /* Index: <op_mark_msg> */ \
635 _fmt(OP_MARK_MSG, N_("create a hotkey macro for the current message")) \
636 /* L10N: Help screen description for OP_MIDDLE_PAGE */ \
637 /* Menu: <menu_movement> */ \
638 _fmt(OP_MIDDLE_PAGE, N_("move to the middle of the page")) \
639 /* L10N: Help screen description for OP_NEXT_ENTRY */ \
640 /* Menu: <menu_movement> */ \
641 /* Index: <op_next_entry> */ \
642 _fmt(OP_NEXT_ENTRY, N_("move to the next entry")) \
643 /* L10N: Help screen description for OP_NEXT_LINE */ \
644 /* Menu: <menu_movement> */ \
645 /* Pager: <op_pager_next_line> */ \
646 _fmt(OP_NEXT_LINE, N_("scroll down one line")) \
647 /* L10N: Help screen description for OP_NEXT_PAGE */ \
648 /* Menu: <menu_movement> */ \
649 /* Pager: <op_pager_next_page> */ \
650 _fmt(OP_NEXT_PAGE, N_("move to the next page")) \
651 /* L10N: Help screen description for OP_PAGER_BOTTOM */ \
652 /* Pager: <op_pager_bottom> */ \
653 _fmt(OP_PAGER_BOTTOM, N_("jump to the bottom of the message")) \
654 /* L10N: Help screen description for OP_PAGER_HIDE_QUOTED */ \
655 /* Pager: <op_pager_hide_quoted> */ \
656 _fmt(OP_PAGER_HIDE_QUOTED, N_("toggle display of quoted text")) \
657 /* L10N: Help screen description for OP_PAGER_SKIP_HEADERS */ \
658 /* Pager: <op_pager_skip_headers> */ \
659 _fmt(OP_PAGER_SKIP_HEADERS, N_("jump to first line after headers")) \
660 /* L10N: Help screen description for OP_PAGER_SKIP_QUOTED */ \
661 /* Pager: <op_pager_skip_quoted> */ \
662 _fmt(OP_PAGER_SKIP_QUOTED, N_("skip beyond quoted text")) \
663 /* L10N: Help screen description for OP_PAGER_TOP */ \
664 /* Pager: <op_pager_top> */ \
665 _fmt(OP_PAGER_TOP, N_("jump to the top of the message")) \
666 /* L10N: Help screen description for OP_PIPE */ \
667 /* Compose Dialog: <op_attachment_filter> */ \
668 /* Attach Dialog: <op_attachment_pipe> */ \
669 /* Index: <op_pipe> */ \
670 _fmt(OP_PIPE, N_("pipe message/attachment to a shell command")) \
671 /* L10N: Help screen description for OP_POST */ \
672 /* Index: <op_post> */ \
673 _fmt(OP_POST, N_("post message to newsgroup")) \
674 /* L10N: Help screen description for OP_PREV_ENTRY */ \
675 /* Menu: <menu_movement> */ \
676 /* Index: <op_prev_entry> */ \
677 _fmt(OP_PREV_ENTRY, N_("move to the previous entry")) \
678 /* L10N: Help screen description for OP_PREV_LINE */ \
679 /* Menu: <menu_movement> */ \
680 /* Pager: <op_pager_prev_line> */ \
681 _fmt(OP_PREV_LINE, N_("scroll up one line")) \
682 /* L10N: Help screen description for OP_PREV_PAGE */ \
683 /* Menu: <menu_movement> */ \
684 /* Pager: <op_pager_prev_page> */ \
685 _fmt(OP_PREV_PAGE, N_("move to the previous page")) \
686 /* L10N: Help screen description for OP_PRINT */ \
687 /* Index: <op_print> */ \
688 _fmt(OP_PRINT, N_("print the current entry")) \
689 /* L10N: Help screen description for OP_PURGE_MESSAGE */ \
690 /* Index: <op_delete> */ \
691 _fmt(OP_PURGE_MESSAGE, N_("delete the current entry, bypassing the trash folder")) \
692 /* L10N: Help screen description for OP_PURGE_THREAD */ \
693 /* Index: <op_delete_thread> */ \
694 _fmt(OP_PURGE_THREAD, N_("delete the current thread, bypassing the trash folder")) \
695 /* L10N: Help screen description for OP_QUERY */ \
696 /* Alias Dialog: <op_query> */ \
697 /* Index: <op_query> */ \
698 _fmt(OP_QUERY, N_("query external program for addresses")) \
699 /* L10N: Help screen description for OP_QUERY_APPEND */ \
700 /* Alias Dialog: <op_query> */ \
701 _fmt(OP_QUERY_APPEND, N_("append new query results to current results")) \
702 /* L10N: Help screen description for OP_QUIT */ \
703 /* History Dialog: <op_quit> */ \
704 /* Index: <op_quit> */ \
705 /* Pattern Dialog: <op_quit> */ \
706 _fmt(OP_QUIT, N_("save changes to mailbox and quit")) \
707 /* L10N: Help screen description for OP_RECALL_MESSAGE */ \
708 /* Index: <op_recall_message> */ \
709 _fmt(OP_RECALL_MESSAGE, N_("recall a postponed message")) \
710 /* L10N: Help screen description for OP_RECONSTRUCT_THREAD */ \
711 /* Index: <op_get_children> */ \
712 _fmt(OP_RECONSTRUCT_THREAD, N_("reconstruct thread containing current message")) \
713 /* L10N: Help screen description for OP_REDRAW */ \
714 /* Text Entry: <op_redraw> */ \
715 /* Global: <op_redraw> */ \
716 _fmt(OP_REDRAW, N_("clear and redraw the screen")) \
717 /* L10N: Help screen description for OP_REFORMAT_WINCH */ \
718 _fmt(OP_REFORMAT_WINCH, N_("{internal}")) \
719 /* L10N: Help screen description for OP_RENAME_MAILBOX */ \
720 /* Browser: <op_rename_mailbox> */ \
721 _fmt(OP_RENAME_MAILBOX, N_("rename the current mailbox (IMAP only)")) \
722 /* L10N: Help screen description for OP_REPLY */ \
723 /* Attach Dialog: <op_reply> */ \
724 /* Index: <op_reply> */ \
725 _fmt(OP_REPLY, N_("reply to a message")) \
726 /* L10N: Help screen description for OP_RESEND */ \
727 /* Attach Dialog: <op_resend> */ \
728 /* Index: <op_resend> */ \
729 _fmt(OP_RESEND, N_("use the current message as a template for a new one")) \
730 /* L10N: Help screen description for OP_SAVE */ \
731 /* Index: <op_save> */ \
732 /* Pager: <op_save> */ \
733 _fmt(OP_SAVE, N_("save message/attachment to a mailbox/file")) \
734 /* L10N: Help screen description for OP_SEARCH */ \
735 /* Menu: <menu_search> */ \
736 /* Pager: <op_pager_search> */ \
737 /* Alias Dialog: <op_search> */ \
738 /* Index: <op_search> */ \
739 /* Postponed Dialog: <op_search> */ \
740 _fmt(OP_SEARCH, N_("search for a regular expression")) \
741 /* L10N: Help screen description for OP_SEARCH_NEXT */ \
742 /* Menu: <menu_search> */ \
743 /* Pager: <op_pager_search_next> */ \
744 /* Alias Dialog: <op_search> */ \
745 /* Index: <op_search> */ \
746 /* Postponed Dialog: <op_search> */ \
747 _fmt(OP_SEARCH_NEXT, N_("search for next match")) \
748 /* L10N: Help screen description for OP_SEARCH_OPPOSITE */ \
749 /* Menu: <menu_search> */ \
750 /* Pager: <op_pager_search_next> */ \
751 /* Alias Dialog: <op_search> */ \
752 /* Index: <op_search> */ \
753 /* Postponed Dialog: <op_search> */ \
754 _fmt(OP_SEARCH_OPPOSITE, N_("search for next match in opposite direction")) \
755 /* L10N: Help screen description for OP_SEARCH_REVERSE */ \
756 /* Menu: <menu_search> */ \
757 /* Pager: <op_pager_search> */ \
758 /* Alias Dialog: <op_search> */ \
759 /* Index: <op_search> */ \
760 /* Postponed Dialog: <op_search> */ \
761 _fmt(OP_SEARCH_REVERSE, N_("search backwards for a regular expression")) \
762 /* L10N: Help screen description for OP_SEARCH_TOGGLE */ \
763 /* Pager: <op_search_toggle> */ \
764 _fmt(OP_SEARCH_TOGGLE, N_("toggle search pattern coloring")) \
765 /* L10N: Help screen description for OP_SHELL_ESCAPE */ \
766 /* Global: <op_shell_escape> */ \
767 _fmt(OP_SHELL_ESCAPE, N_("invoke a command in a subshell")) \
768 /* L10N: Help screen description for OP_SHOW_LOG_MESSAGES */ \
769 /* Global: <op_show_log_messages> */ \
770 _fmt(OP_SHOW_LOG_MESSAGES, N_("show log (and debug) messages")) \
771 /* L10N: Help screen description for OP_SORT */ \
772 /* Alias Dialog: <op_sort> */ \
773 /* Browser: <op_sort> */ \
774 /* Index: <op_sort> */ \
775 _fmt(OP_SORT, N_("sort messages")) \
776 /* L10N: Help screen description for OP_SORT_REVERSE */ \
777 /* Alias Dialog: <op_sort> */ \
778 /* Browser: <op_sort> */ \
779 /* Index: <op_sort> */ \
780 _fmt(OP_SORT_REVERSE, N_("sort messages in reverse order")) \
781 /* L10N: Help screen description for OP_SUBSCRIBE_PATTERN */ \
782 /* Browser: <op_subscribe_pattern> */ \
783 _fmt(OP_SUBSCRIBE_PATTERN, N_("subscribe to newsgroups matching a pattern")) \
784 /* L10N: Help screen description for OP_TAG */ \
785 /* Index: <op_tag> */ \
786 _fmt(OP_TAG, N_("tag the current entry")) \
787 /* L10N: Help screen description for OP_TAG_PREFIX */ \
788 _fmt(OP_TAG_PREFIX, N_("apply next function to tagged messages")) \
789 /* L10N: Help screen description for OP_TAG_PREFIX_COND */ \
790 _fmt(OP_TAG_PREFIX_COND, N_("apply next function ONLY to tagged messages")) \
791 /* L10N: Help screen description for OP_TAG_SUBTHREAD */ \
792 /* Index: <op_tag_thread> */ \
793 _fmt(OP_TAG_SUBTHREAD, N_("tag the current subthread")) \
794 /* L10N: Help screen description for OP_TAG_THREAD */ \
795 /* Index: <op_tag_thread> */ \
796 _fmt(OP_TAG_THREAD, N_("tag the current thread")) \
797 /* L10N: Help screen description for OP_TOGGLE_MAILBOXES */ \
798 /* Browser: <op_toggle_mailboxes> */ \
799 _fmt(OP_TOGGLE_MAILBOXES, N_("toggle whether to browse mailboxes or all files")) \
800 /* L10N: Help screen description for OP_TOGGLE_NEW */ \
801 /* Index: <op_toggle_new> */ \
802 _fmt(OP_TOGGLE_NEW, N_("toggle a message's 'new' flag")) \
803 /* L10N: Help screen description for OP_TOGGLE_READ */ \
804 /* Index: <op_main_limit> */ \
805 _fmt(OP_TOGGLE_READ, N_("toggle view of read messages")) \
806 /* L10N: Help screen description for OP_TOGGLE_WRITE */ \
807 /* Index: <op_toggle_write> */ \
808 _fmt(OP_TOGGLE_WRITE, N_("toggle whether the mailbox will be rewritten")) \
809 /* L10N: Help screen description for OP_TOP_PAGE */ \
810 /* Menu: <menu_movement> */ \
811 _fmt(OP_TOP_PAGE, N_("move to the top of the page")) \
812 /* L10N: Help screen description for OP_UNCATCHUP */ \
813 /* Browser: <op_catchup> */ \
814 _fmt(OP_UNCATCHUP, N_("mark all articles in newsgroup as unread")) \
815 /* L10N: Help screen description for OP_UNDELETE */ \
816 /* Alias Dialog: <op_delete> */ \
817 /* Postponed Dialog: <op_delete> */ \
818 /* Index: <op_undelete> */ \
819 _fmt(OP_UNDELETE, N_("undelete the current entry")) \
820 /* L10N: Help screen description for OP_UNDELETE_SUBTHREAD */ \
821 /* Index: <op_undelete_thread> */ \
822 _fmt(OP_UNDELETE_SUBTHREAD, N_("undelete all messages in subthread")) \
823 /* L10N: Help screen description for OP_UNDELETE_THREAD */ \
824 /* Index: <op_undelete_thread> */ \
825 _fmt(OP_UNDELETE_THREAD, N_("undelete all messages in thread")) \
826 /* L10N: Help screen description for OP_UNSUBSCRIBE_PATTERN */ \
827 /* Browser: <op_subscribe_pattern> */ \
828 _fmt(OP_UNSUBSCRIBE_PATTERN, N_("unsubscribe from newsgroups matching a pattern")) \
829 /* L10N: Help screen description for OP_VERSION */ \
830 /* Global: <op_version> */ \
831 _fmt(OP_VERSION, N_("show the NeoMutt version number and date")) \
832 /* L10N: Help screen description for OP_VIEW_ATTACHMENTS */ \
833 /* Index: <op_view_attachments> */ \
834 /* Pager: <op_view_attachments> */ \
835 _fmt(OP_VIEW_ATTACHMENTS, N_("show MIME attachments")) \
836 /* L10N: Help screen description for OP_VIEW_RAW_MESSAGE */ \
837 /* Index: <op_edit_raw_message> */ \
838 _fmt(OP_VIEW_RAW_MESSAGE, N_("show the raw message")) \
839 /* L10N: Help screen description for OP_WHAT_KEY */ \
840 /* Global: <op_what_key> */ \
841 _fmt(OP_WHAT_KEY, N_("display the keycode for a key press")) \
842
843#define OPS_CRYPT(_fmt) \
844 /* L10N: Help screen description for OP_DECRYPT_COPY */ \
845 /* Index: <op_save> */ \
846 _fmt(OP_DECRYPT_COPY, N_("make decrypted copy")) \
847 /* L10N: Help screen description for OP_DECRYPT_SAVE */ \
848 /* Index: <op_save> */ \
849 _fmt(OP_DECRYPT_SAVE, N_("make decrypted copy and delete")) \
850 /* L10N: Help screen description for OP_EXTRACT_KEYS */ \
851 /* Attach Dialog: <op_extract_keys> */ \
852 /* Index: <op_extract_keys> */ \
853 _fmt(OP_EXTRACT_KEYS, N_("extract supported public keys")) \
854 /* L10N: Help screen description for OP_FORGET_PASSPHRASE */ \
855 /* Attach Dialog: <op_forget_passphrase> */ \
856 /* Compose Dialog: <op_forget_passphrase> */ \
857 /* Index: <op_forget_passphrase> */ \
858 _fmt(OP_FORGET_PASSPHRASE, N_("wipe passphrases from memory")) \
859
860#define OPS_ENVELOPE(_fmt) \
861 /* L10N: Help screen description for OP_ENVELOPE_EDIT_BCC */ \
862 /* Envelope Window: <op_envelope_edit_bcc> */ \
863 _fmt(OP_ENVELOPE_EDIT_BCC, N_("edit the BCC list")) \
864 /* L10N: Help screen description for OP_ENVELOPE_EDIT_CC */ \
865 /* Envelope Window: <op_envelope_edit_cc> */ \
866 _fmt(OP_ENVELOPE_EDIT_CC, N_("edit the CC list")) \
867 /* L10N: Help screen description for OP_ENVELOPE_EDIT_FCC */ \
868 /* Envelope Window: <op_envelope_edit_fcc> */ \
869 _fmt(OP_ENVELOPE_EDIT_FCC, N_("enter a file to save a copy of this message in")) \
870 /* L10N: Help screen description for OP_ENVELOPE_EDIT_FOLLOWUP_TO */ \
871 /* Envelope Window: <op_envelope_edit_followup_to> */ \
872 _fmt(OP_ENVELOPE_EDIT_FOLLOWUP_TO, N_("edit the Followup-To field")) \
873 /* L10N: Help screen description for OP_ENVELOPE_EDIT_FROM */ \
874 /* Envelope Window: <op_envelope_edit_from> */ \
875 _fmt(OP_ENVELOPE_EDIT_FROM, N_("edit the from field")) \
876 /* L10N: Help screen description for OP_ENVELOPE_EDIT_HEADERS */ \
877 /* Compose Dialog: <op_envelope_edit_headers> */ \
878 _fmt(OP_ENVELOPE_EDIT_HEADERS, N_("edit the message with headers")) \
879 /* L10N: Help screen description for OP_ENVELOPE_EDIT_NEWSGROUPS */ \
880 /* Envelope Window: <op_envelope_edit_newsgroups> */ \
881 _fmt(OP_ENVELOPE_EDIT_NEWSGROUPS, N_("edit the newsgroups list")) \
882 /* L10N: Help screen description for OP_ENVELOPE_EDIT_REPLY_TO */ \
883 /* Envelope Window: <op_envelope_edit_reply_to> */ \
884 _fmt(OP_ENVELOPE_EDIT_REPLY_TO, N_("edit the Reply-To field")) \
885 /* L10N: Help screen description for OP_ENVELOPE_EDIT_SUBJECT */ \
886 /* Envelope Window: <op_envelope_edit_subject> */ \
887 _fmt(OP_ENVELOPE_EDIT_SUBJECT, N_("edit the subject of this message")) \
888 /* L10N: Help screen description for OP_ENVELOPE_EDIT_TO */ \
889 /* Envelope Window: <op_envelope_edit_to> */ \
890 _fmt(OP_ENVELOPE_EDIT_TO, N_("edit the TO list")) \
891 /* L10N: Help screen description for OP_ENVELOPE_EDIT_X_COMMENT_TO */ \
892 /* Envelope Window: <op_envelope_edit_x_comment_to> */ \
893 _fmt(OP_ENVELOPE_EDIT_X_COMMENT_TO, N_("edit the X-Comment-To field")) \
894
895#ifdef USE_NOTMUCH
896#define OPS_NOTMUCH(_fmt) \
897 /* L10N: Help screen description for OP_MAIN_CHANGE_VFOLDER */ \
898 /* Index: <op_main_change_folder> */ \
899 _fmt(OP_MAIN_CHANGE_VFOLDER, N_("open a different virtual folder")) \
900 /* L10N: Help screen description for OP_MAIN_ENTIRE_THREAD */ \
901 /* Index: <op_main_entire_thread> */ \
902 _fmt(OP_MAIN_ENTIRE_THREAD, N_("read entire thread of the current message")) \
903 /* L10N: Help screen description for OP_MAIN_VFOLDER_FROM_QUERY */ \
904 /* Index: <op_main_vfolder_from_query> */ \
905 _fmt(OP_MAIN_VFOLDER_FROM_QUERY, N_("generate virtual folder from query")) \
906 /* L10N: Help screen description for OP_MAIN_VFOLDER_FROM_QUERY_READONLY */ \
907 /* Index: <op_main_vfolder_from_query> */ \
908 _fmt(OP_MAIN_VFOLDER_FROM_QUERY_READONLY, N_("generate a read-only virtual folder from query")) \
909 /* L10N: Help screen description for OP_MAIN_WINDOWED_VFOLDER_BACKWARD */ \
910 /* Index: <op_main_windowed_vfolder> */ \
911 _fmt(OP_MAIN_WINDOWED_VFOLDER_BACKWARD, N_("shifts virtual folder time window backwards")) \
912 /* L10N: Help screen description for OP_MAIN_WINDOWED_VFOLDER_FORWARD */ \
913 /* Index: <op_main_windowed_vfolder> */ \
914 _fmt(OP_MAIN_WINDOWED_VFOLDER_FORWARD, N_("shifts virtual folder time window forwards")) \
915 /* L10N: Help screen description for OP_MAIN_WINDOWED_VFOLDER_RESET */ \
916 /* Index: <op_main_windowed_vfolder> */ \
917 _fmt(OP_MAIN_WINDOWED_VFOLDER_RESET, N_("resets virtual folder time window to the present"))
918#else
919#define OPS_NOTMUCH(_)
920#endif
921
922#define OPS_PGP(_fmt) \
923 /* L10N: Help screen description for OP_ATTACHMENT_ATTACH_KEY */ \
924 /* Compose Dialog: <op_attachment_attach_key> */ \
925 _fmt(OP_ATTACHMENT_ATTACH_KEY, N_("attach a PGP public key")) \
926 /* L10N: Help screen description for OP_CHECK_TRADITIONAL */ \
927 /* Attach Dialog: <op_check_traditional> */ \
928 /* Index: <op_check_traditional> */ \
929 _fmt(OP_CHECK_TRADITIONAL, N_("check for classic PGP")) \
930 /* L10N: Help screen description for OP_COMPOSE_PGP_MENU */ \
931 /* Envelope Window: <op_compose_pgp_menu> */ \
932 _fmt(OP_COMPOSE_PGP_MENU, N_("show PGP options")) \
933 /* L10N: Help screen description for OP_MAIL_KEY */ \
934 /* Index: <op_mail_key> */ \
935 _fmt(OP_MAIL_KEY, N_("mail a PGP public key")) \
936 /* L10N: Help screen description for OP_VERIFY_KEY */ \
937 /* GPGME Key Selection Dialog: <op_verify_key> */ \
938 /* PGP Key Selection Dialog: <op_verify_key> */ \
939 _fmt(OP_VERIFY_KEY, N_("verify a PGP public key")) \
940 /* L10N: Help screen description for OP_VIEW_ID */ \
941 /* GPGME Key Selection Dialog: <op_view_id> */ \
942 /* PGP Key Selection Dialog: <op_view_id> */ \
943 _fmt(OP_VIEW_ID, N_("view the key's user id")) \
944
945#define OPS_SIDEBAR(_fmt) \
946 /* L10N: Help screen description for OP_SIDEBAR_FIRST */ \
947 /* Sidebar: <op_sidebar_first> */ \
948 _fmt(OP_SIDEBAR_FIRST, N_("move the highlight to the first mailbox")) \
949 /* L10N: Help screen description for OP_SIDEBAR_LAST */ \
950 /* Sidebar: <op_sidebar_last> */ \
951 _fmt(OP_SIDEBAR_LAST, N_("move the highlight to the last mailbox")) \
952 /* L10N: Help screen description for OP_SIDEBAR_NEXT */ \
953 /* Sidebar: <op_sidebar_next> */ \
954 _fmt(OP_SIDEBAR_NEXT, N_("move the highlight to next mailbox")) \
955 /* L10N: Help screen description for OP_SIDEBAR_NEXT_NEW */ \
956 /* Sidebar: <op_sidebar_next_new> */ \
957 _fmt(OP_SIDEBAR_NEXT_NEW, N_("move the highlight to next mailbox with new mail")) \
958 /* L10N: Help screen description for OP_SIDEBAR_OPEN */ \
959 /* Sidebar: <op_sidebar_open> */ \
960 _fmt(OP_SIDEBAR_OPEN, N_("open highlighted mailbox")) \
961 /* L10N: Help screen description for OP_SIDEBAR_PAGE_DOWN */ \
962 /* Sidebar: <op_sidebar_page_down> */ \
963 _fmt(OP_SIDEBAR_PAGE_DOWN, N_("scroll the sidebar down 1 page")) \
964 /* L10N: Help screen description for OP_SIDEBAR_PAGE_UP */ \
965 /* Sidebar: <op_sidebar_page_up> */ \
966 _fmt(OP_SIDEBAR_PAGE_UP, N_("scroll the sidebar up 1 page")) \
967 /* L10N: Help screen description for OP_SIDEBAR_PREV */ \
968 /* Sidebar: <op_sidebar_prev> */ \
969 _fmt(OP_SIDEBAR_PREV, N_("move the highlight to previous mailbox")) \
970 /* L10N: Help screen description for OP_SIDEBAR_PREV_NEW */ \
971 /* Sidebar: <op_sidebar_prev_new> */ \
972 _fmt(OP_SIDEBAR_PREV_NEW, N_("move the highlight to previous mailbox with new mail")) \
973 /* L10N: Help screen description for OP_SIDEBAR_TOGGLE_VIRTUAL */ \
974 /* Sidebar: <op_sidebar_toggle_virtual> */ \
975 _fmt(OP_SIDEBAR_TOGGLE_VIRTUAL, N_("toggle between mailboxes and virtual mailboxes")) \
976 /* L10N: Help screen description for OP_SIDEBAR_TOGGLE_VISIBLE */ \
977 /* Sidebar: <op_sidebar_toggle_visible> */ \
978 _fmt(OP_SIDEBAR_TOGGLE_VISIBLE, N_("make the sidebar (in)visible")) \
979
980#define OPS_SMIME(_fmt) \
981 /* L10N: Help screen description for OP_COMPOSE_SMIME_MENU */ \
982 /* Envelope Window: <op_compose_smime_menu> */ \
983 _fmt(OP_COMPOSE_SMIME_MENU, N_("show S/MIME options")) \
984
985#define OPS(_fmt) \
986 _fmt(OP_NULL, N_("null operation")) \
987 OPS_ATTACHMENT(_fmt) \
988 OPS_AUTOCRYPT(_fmt) \
989 OPS_CORE(_fmt) \
990 OPS_CRYPT(_fmt) \
991 OPS_ENVELOPE(_fmt) \
992 OPS_NOTMUCH(_fmt) \
993 OPS_PGP(_fmt) \
994 OPS_SIDEBAR(_fmt) \
995 OPS_SMIME(_fmt) \
996
1003#define DEFINE_OPS(opcode, help_string) opcode,
1005#undef DEFINE_OPS
1007};
1008// clang-format on
1009
1010#endif /* MUTT_OPCODES_H */
Convenience wrapper for the library headers.
#define DEFINE_OPS(opcode, help_string)
Definition: opcodes.h:1003
const char * opcodes_get_description(int op)
Get the description of an opcode.
Definition: opcodes.c:70
#define OPS(_fmt)
Definition: opcodes.h:985
const char * opcodes_get_name(int op)
Get the name of an opcode.
Definition: opcodes.c:48
MuttOps
All NeoMutt Opcodes.
Definition: opcodes.h:1002
@ OP_MAX
Definition: opcodes.h:1006