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