1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/* This file is used to generate keymap_defs.h and the manual.
*
* The Mutt parser scripts scan lines that start with 'OP_'
* So please ensure multi-line comments have leading whitespace,
* or at least don't start with OP_.
*
* Gettext also scans this file for translation strings, so
* help strings should be surrounded by N_("....")
* and have a translator comment line above them.
*
* All OPS* files (but not keymap_defs.h) should be listed
* in po/POTFILES.in.
*/
/* L10N: Help screen description for OP_SIDEBAR_FIRST
index menu: <sidebar-first>
pager menu: <sidebar-first>
*/
OP_SIDEBAR_FIRST N_("move the highlight to the first mailbox")
/* L10N: Help screen description for OP_SIDEBAR_LAST
index menu: <sidebar-last>
pager menu: <sidebar-last>
*/
OP_SIDEBAR_LAST N_("move the highlight to the last mailbox")
/* L10N: Help screen description for OP_SIDEBAR_NEXT
index menu: <sidebar-next>
pager menu: <sidebar-next>
*/
OP_SIDEBAR_NEXT N_("move the highlight to next mailbox")
/* L10N: Help screen description for OP_SIDEBAR_NEXT_NEW
index menu: <sidebar-next-new>
pager menu: <sidebar-next-new>
*/
OP_SIDEBAR_NEXT_NEW N_("move the highlight to next mailbox with new mail")
/* L10N: Help screen description for OP_SIDEBAR_OPEN
index menu: <sidebar-open>
pager menu: <sidebar-open>
*/
OP_SIDEBAR_OPEN N_("open highlighted mailbox")
/* L10N: Help screen description for OP_SIDEBAR_PAGE_DOWN
index menu: <sidebar-page-down>
pager menu: <sidebar-page-down>
*/
OP_SIDEBAR_PAGE_DOWN N_("scroll the sidebar down 1 page")
/* L10N: Help screen description for OP_SIDEBAR_PAGE_UP
index menu: <sidebar-page-up>
pager menu: <sidebar-page-up>
*/
OP_SIDEBAR_PAGE_UP N_("scroll the sidebar up 1 page")
/* L10N: Help screen description for OP_SIDEBAR_PREV
index menu: <sidebar-prev>
pager menu: <sidebar-prev>
*/
OP_SIDEBAR_PREV N_("move the highlight to previous mailbox")
/* L10N: Help screen description for OP_SIDEBAR_PREV_NEW
index menu: <sidebar-prev-new>
pager menu: <sidebar-prev-new>
*/
OP_SIDEBAR_PREV_NEW N_("move the highlight to previous mailbox with new mail")
/* L10N: Help screen description for OP_SIDEBAR_TOGGLE_VISIBLE
index menu: <sidebar-toggle-visible>
pager menu: <sidebar-toggle-visible>
*/
OP_SIDEBAR_TOGGLE_VISIBLE N_("make the sidebar (in)visible")
|